什么控制 .csproj 文件中的 ProductVersion 设置?
我们的源代码控制引擎时不时地表明 .csproj 文件中的 ProductVersion
已更改。我们使用的是VS2008 SP1。
查看代码库,我可以看到报告的两个版本:
<ProductVersion>9.0.30729</ProductVersion>
有谁
<ProductVersion>9.0.21022</ProductVersion>
知道 Visual Studio 决定更改此设置的原因和时间,以及这两个版本号所指的内容?
Every now and then our source control engine indicates that the ProductVersion
in a .csproj file has changed. We're using VS2008 SP1.
Looking through the codebase I can see two versions reported:
<ProductVersion>9.0.30729</ProductVersion>
and
<ProductVersion>9.0.21022</ProductVersion>
Does anyone know why and when Visual Studio decides to change this setting, and to what these two version numbers refer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是用于加载 .csproj 的 Visual Studio 版本,因此它知道项目可能包含哪些功能(如果新版本的 VS 更改了 proj 文件的格式)。
当项目加载时它会发生变化 - VS 默默地对项目文件进行较小的“升级”。
查看 VS2005 proj 文件,您会看到 ProjectVersion 设置为 8.0.xxx
That's the version of Visual Studio used to load the .csproj, so it knows what capabilities the project might contain (if new versions of VS change the format of the proj file).
It will change when the project is loaded - VS is silently doing a minor 'upgrade' to the project file.
Look at a VS2005 proj file, you'll see the ProjectVersion is set to 8.0.xxx