我目前在我的应用程序的标签中包含我的发布/发布的版本号,但是无法弄清楚如何添加它以便为每个发布自动更新。目前,我只是使用一个简单的文字:
//VERSION LABEL
string version = "1.0.0.15 - BETA";
versionLabel.Text = "v" + version;
有没有办法在每次发布时自动更新版本?
答案 0 :(得分:5)
如何使用汇编版本?根据您是否允许自动向上,这可以节省您一些时间。
var appVersion = Assembly.GetExecutingAssembly().GetName().Version;
versionLabel.Text = String.Format("v{0}", appVersion);
这将基于AssemblyInfo
的版本。
详细说明我的意思,如果你看AssemblyInfo.cs
,你会看到如下内容:
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// 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")]
这基本上是说,如果你让它1.0.*
或1.0.0.*
,那么VS会为每个编译分别修改或修改版本。