什么控制 .csproj 文件中的 ProductVersion 设置?

发布于 2024-08-03 03:57:53 字数 341 浏览 2 评论 0原文

我们的源代码控制引擎时不时地表明 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扛刀软妹 2024-08-10 03:57:53

这是用于加载 .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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文