使用 msbuild 从程序集文件获取版本号时出现问题
我正在使用 msbuild 从程序集文件中获取版本信息。但我遇到一个问题,即 $(MaxAssemblyVersion) 值始终为空。这里唯一的区别是我得到了一个包含几个项目的.Net 解决方案。所以我在根文件夹中有一个 GlobalAssemblyInfo.cs,在每个包含的项目中有一个 Assemblyinfo.cs。有人对我的情况有什么建议吗?有什么方法可以使用 GlobalAssemblyinfo.cs 吗?
期待您的回复! 每一条评论都将非常有帮助和适当。
非常感谢,
I'm working on msbuild to get version info from assembly file. But i got a problem that the value $(MaxAssemblyVersion) is always empty. The only difference here is that i got a .Net solution including several projects. So i have a GlobalAssemblyInfo.cs at the root folder and Assemblyinfo.cs inside every included project. Anyone has any suggestion for my situation? Is there any way to work with GlobalAssemblyinfo.cs?
Look forward to your reply!
Every comment will be very helpful and appropriated.
Many thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据构建过程中您需要程序集版本的时间点,您可以使用 GetAssemblyIdentity 任务。
Depending on what point during the build you need the assembly version, you could extract it from your outputs using the GetAssemblyIdentity Task.