只需要像下面那样添加一个零
[assembly: AssemblyVersion("2.03.406.2")]
2.3.406.2 的结果
这不是我想要的。
这可能不可能吗?
只需要像下面那样添加一个零
[assembly: AssemblyVersion("2.03.406.2")]
2.3.406.2 的结果
这不是我想要的。
这可能不可能吗?
每个组件版本的部分都被存储为16位整数,所以不,这是不可能的。
你或许可以阅读 AssemblyFileVersionAttribute。
AssemblyFileVersionAttribute[] attributes = (AssemblyFileVersionAttribute[])typeof(Program)
.Assembly.GetCustomAttributes(typeof(AssemblyFileVersionAttribute), false);
Console.WriteLine(attributes[0].Version);
每个数字代表一个特定的数字值,主版本、次版本、构建号和修订号。
这不仅仅是一个任意的字符串。