是否可以像使用 dll 那样对 ASP.NET 站点进行版本控制?

发布于 2024-09-03 18:15:31 字数 56 浏览 3 评论 0原文

是否可以像使用类库中的 AssemblyInfo.cs 那样对 ASP.NET 站点进行版本控制?

Is it possible to version a asp.net site like doing so with AssemblyInfo.cs in Class Libraries?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

生生漫 2024-09-10 18:15:31

根据我的 ASP.net 项目中的 AssemblyInfo.cs 中的注释,您可以:

// You can specify all the values or you can default the Revision and Build Numbers 
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

我尝试过,是的,它有效。

[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("1.0.*")]

在 AssemblyFileVersion 上,我在构建时收到警告。

According to the comments in the AssemblyInfo.cs in my ASP.net projects, you can:

// You can specify all the values or you can default the Revision and Build Numbers 
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

I tried it, and yes, it works.

[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("1.0.*")]

On the AssemblyFileVersion I get a warning while building.

無心 2024-09-10 18:15:31

是的。在 VS 中:

  • 右键单击 Web 项目,
  • 转到属性,
  • 然后转到应用程序。
  • 单击程序集信息按钮 - 那里有版本字段。

Yes. In VS:

  • right click web project,
  • go to properties
  • then application.
  • Click assembly information button - there you have the version fields.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文