ASP.Net C#AssemblyInfo版本不起作用

前端之家收集整理的这篇文章主要介绍了ASP.Net C#AssemblyInfo版本不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我正在使用的 help file.它声明它仍适用于4.6版.

然而,当我尝试使用内置计算时,使用以下代码

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

我在星号上遇到语法错误,解决方案无法编译.我不知道发生了什么事.根据帮助文件,它应该工作.

解决方法

你不需要两个*只需一个即可.
[assembly: AssemblyVersion("2015.7.*")]

从你的链接

Examples of valid version strings include:

1

1.1

1.1.*

1.1.1

1.1.1.*

1.1.1.1

删除AssemblyFileVersion.

If the AssemblyFileVersionAttribute is not supplied,the AssemblyVersionAttribute is used for the Win32 file version that is displayed on the Version tab of the Windows file properties dialog.

原文链接:https://www.f2er.com/aspnet/247746.html

猜你在找的asp.Net相关文章