如何在部分信任环境中访问我的程序集版本号(无 FileIOPermission)
我正在尝试在运行时访问程序集的版本号。
我使用的代码需要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它不是完全相同的版本号(它是“AssemblyFileVersion”而不是“AssemblyVersion”属性),但您可以使用以下代码行:
返回一个字符串。
如果您正在进行自动化构建,那么您必须记住增加这两个数字。
或者
如果您将其作为 ClickOnce 应用程序执行此操作,则可以在以下位置找到版本号:
希望有帮助
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:
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:
Hope that helps
如果您需要没有 FileIOPermission 的 AssemblyVersion,则必须解析 Assembly::FullName。
If you need the AssemblyVersion without FileIOPermission you will have to parse Assembly::FullName.