我如何检索“AssemblyCompany”?设置(在 AssemblyInfo.cs 中)?
是否可以在运行时检索该值?
我想将该值保留在一处,并在我的应用程序需要输出我的公司名称时检索它。
Is it possible to retrieve this value at runtime?
I'd like to keep the value in one place, and retrieve it whenever my application needs to output the name of my company.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该可以做到:
如果您确实想将值保留在一个位置并且解决方案中有多个程序集,您可以:
GetEntryAssembly
而不是GetExecutingAssembly
并设置仅在您的入口程序集中使用公司属性,或者更好:更新
根据 @hmemcpy 的建议改进了代码,因此不再需要
[0]
。谢谢!This should do it:
If you really want to keep the value in one place and you have multiple assemblies in your solution, you could either:
GetEntryAssembly
instead ofGetExecutingAssembly
and set the company attribute only on your entry assembly, or better:UPDATE
Improved the code by suggestion of @hmemcpy so it doesn't need
[0]
anymore. Thanks!如果您想要一个很好的通用方法来获取程序集信息数据,请尝试以下操作:
这样您就可以调用
If you want a nice generic method for fetching the assembly Info data try the following:
So you can then call
建立在 Adam Price 非常优雅的方法上 - 马克关于它不适用于版本的正确评论...提出了以下方法 - 一种用于获取当前执行的 AssemblyInfo 属性 - 一种用于获取“调用”程序集的 AssemblyInfo 属性。
将其放在我的博客上 http://lancelarsen.com/reading-values-from- assemblyinfo-cs/
Building on Adam Price's very elegant method -- with the correct comments from Mark about it not working for Version... Came up with the following methods -- one for getting the current executing AssemblyInfo properties -- and one for getting the "calling" assembly's AssemblyInfo properties.
Have it up on my blog at http://lancelarsen.com/reading-values-from-assemblyinfo-cs/