如何使用msbuild设置版权版本?
我正在使用 Jenkins 启动 msbuild 来构建一个项目。 我正在使用 Microsift (R) 构建引擎版本 2.0.50727.1433。
我有一个 AssemblyInfo.cs 文件,其中似乎包含以下参数: 程序集标题 装配公司 组装产品 装配版权 汇编版本 AssemblyFileVersion
该产品运行良好并且版本设置正确。 我什至获得了版权值,它只是不是 AssemblyInfo.cs 文件中指定的值。
这应该设置在其他地方吗?
I am using Jenkins to kick off msbuild to build a project.
I am using Microsift (R) Build Engine Version 2.0.50727.1433.
I have an AssemblyInfo.cs file that appears to contain the following parameters:
AssemblyTitle
AssemblyCompany
AssemblyProduct
AssemblyCopyright
AssemblyVersion
AssemblyFileVersion
The product runs just fine and the version gets set correctly.
I even get a copyright value, it's just not the value specified in the AssemblyInfo.cs file.
Should this be set somewhere else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
version.rc 文件包含我正在寻找的信息。
version.rc file contains the information I was looking for.