如何在部分信任环境中访问我的程序集版本号(无 FileIOPermission)

发布于 2024-07-14 00:18:07 字数 189 浏览 6 评论 0原文

我正在尝试在运行时访问程序集的版本号。

我使用的代码需要 FileIOPermission,但我不想授予该权限(我在 Internet 区域中)

this.GetType().Assembly.GetName().Version;

是否有另一种方法可以访问不需要提升的版本号?

I'm trying to access the Version number of my assembly at runtime.

The code I'm using for that requires a FileIOPermission, which I don't want to grant (I'm in the Internet Zone)

this.GetType().Assembly.GetName().Version;

Is there another way to access the version number which doesn't require elevation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吹梦到西洲 2024-07-21 00:18:07

它不是完全相同的版本号(它是“AssemblyFileVersion”而不是“AssemblyVersion”属性),但您可以使用以下代码行:

System.Windows.Forms.Application.ProductVersion

返回一个字符串。

如果您正在进行自动化构建,那么您必须记住增加这两个数字。

或者

如果您将其作为 ClickOnce 应用程序执行此操作,则可以在以下位置找到版本号:

System.Deployment.Application.ApplicationDeployment.CurrentDeployment.CurrentVersion

希望有帮助

It's not quite the same version number (It's the "AssemblyFileVersion" rather than the "AssemblyVersion" attribute) but you can use the following line of code:

System.Windows.Forms.Application.ProductVersion

That returns a string.

If you're doing automated builds, then you have to remember to increment both numbers.

Alternatively

If you are doing this as a ClickOnce application, the version number is found in:

System.Deployment.Application.ApplicationDeployment.CurrentDeployment.CurrentVersion

Hope that helps

南街九尾狐 2024-07-21 00:18:07

如果您需要没有 FileIOPermission 的 AssemblyVersion,则必须解析 Assembly::FullName。

If you need the AssemblyVersion without FileIOPermission you will have to parse Assembly::FullName.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文