Automatically update the AssemblyFileVersion attribute of a .NET Assembly
There is support in .NET for automatically incrementing the AssemblyVersion of a project by using the ".*" notation. e.g.
[assembly: AssemblyVersion("0.1.*")]
Unfortunately the same functionality isn't available for the AssemblyFileVersion. Often times, I don't want to bump the AssemblyVersion … Continue reading