How to auto increment version number of assembly in .NET and Visual Studio using C#
In .NET, version information for an assembly follows following format - [*.*.*.*]. This version format consist of four values: Major Version Minor Version Build Number Revision Above four value can be used to indicate different things depending on how you want them to be understood. When we compile or build our…