我在这里阅读了关于程序集、文件和程序集信息版本的线程。
我想知道发布版本适合的位置。结果...
string thisAppsVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
...似乎是 AssemblyVersion。到目前为止,我一直在使用带有部署类的发布版本:
ApplicationDeployment deployment = ApplicationDeployment.CurrentDeployment;
Version thisAppsVersion = deployment.CurrentVersion;
...但除非安装了应用程序,否则这是不可用的。我喜欢它如何选择自动增加修订版。
有没有办法在不进行网络部署的情况下获得发布版本?它应该是应用程序版本的“公众面孔”吗?
提前致谢!
格雷格