ASP.NET 如何在 Web 应用程序上设置版本号?
..就像您可以在其他项目类型上一样吗?
..like you can on other project types?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
..就像您可以在其他项目类型上一样吗?
..like you can on other project types?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
取决于它是否是一个已编译的 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
您可以在其中设置 AssemblyVersion 和 AssemblyFileVersion
You can set the AssemblyVersion and AssemblyFileVersion within
使用:
并将你的 assemblyinfo.cs 设置为
use:
and set your assemblyinfo.cs as