I'm using
[assembly: AssemblyVersion("1.0.*")] and I've commented out
[assembly: AssemblyFileVersion("1.0.0.*")] When I run the app with
Console.WriteLine(System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); I get:
1.0.5308.25417 The fourth value (Revision) seems to be pretty random IMO. And build number never changes. I'm a bit confused about these numbers. In a perfect world I'd like the build number to increment everytime I "Release" and manually update major and minor but I dont seem to be able to fix that.
If I instead use:
[assembly: AssemblyVersion("1.0.*")] I get:
1.0.0.25589 Which lets me manually update the build and give a "random" number within the build. Is it possible to let it trigger by the "release"? And how do I reset the build number?
