ASP.NET 如何在 Web 应用程序上设置版本号?

发布于 2024-09-01 18:31:55 字数 26 浏览 2 评论 0原文

..就像您可以在其他项目类型上一样吗?

..like you can on other project types?

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

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

发布评论

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

评论(3

眼眸里的快感 2024-09-08 18:31:55

取决于它是否是一个已编译的 Web 应用程序,您可以在程序集中设置它。正如您所说的那样,我假设您正在使用 VS 2005。Microsoft

更改了 VS 2005 中的方法,使用网站项目而不是 Web 应用程序项目。请参阅这篇文章了解更多详细信息 http://webproject.scottgu.com/

我建议转换您的解决方案,然后通过 AssemblyInfo.cs 文件进行设置。 http://webproject.scottgu.com/

可能值得检查一下。
对 ASP.NET Web 应用进行版本控制

Depends if its a compiled web application you can set it on the assembly. As you are saying like others I assume you are using VS 2005.

Microsoft changed their approach in VS 2005 to use a Web Site project instead of a Web Application Project. Have a look at this article for further details http://webproject.scottgu.com/

I would recommend converting your solution and then setting it via the AssemblyInfo.cs file. http://webproject.scottgu.com/

Might be worthwhile checking this out.
Versioning an ASP.NET web app

氛圍 2024-09-08 18:31:55

您可以在其中设置 AssemblyVersion 和 AssemblyFileVersion

/YourWebApplication/Properties/AssemblyInfo.cs

You can set the AssemblyVersion and AssemblyFileVersion within

/YourWebApplication/Properties/AssemblyInfo.cs
晚风撩人 2024-09-08 18:31:55

使用:

using System.Reflection;
Assembly.GetExecutingAssembly().GetName().Version;

并将你的 assemblyinfo.cs 设置为

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

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

use:

using System.Reflection;
Assembly.GetExecutingAssembly().GetName().Version;

and set your assemblyinfo.cs as

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

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