Hi!
I've read threads here about the Assembly, File and Assembly Informational versions.
I'd like to know where the Publish version fits in. The result of...
string thisAppsVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
...appears to be the AssemblyVersion. Up until now I've been using the publish version with the deployment class:
ApplicationDeployment deployment = ApplicationDeployment.CurrentDeployment;
Version thisAppsVersion = deployment.CurrentVersion;
...but this isn't available unless the app is installed. I like how it has the option to automatically increment the Revision.
Is there a way to get the publish version without being network deployed? Should it be the 'public face' of the app's version?
Example: UI Version (twisted from Publish Version)
Thanks in advance!
Gregg