Auto-Incrementing Build Numbers in Visual Studio.NET
Auto-Incrementing Build Numbers in Visual Studio.NET
1.Open the file AssemblyInfo.vb
2.Change [assembly: AssemblyVersion(“1.0.0.0”)] to [assembly: AssemblyVersion(“1.0.*”)]
3.Remove [assembly: AssemblyFileVersion(“1.0.0.0”)]
4.Rebuild the project and verify that the version is incremented properly by viewing the properties of the newly compiled assembly.
1.Open the file AssemblyInfo.vb
2.Change [assembly: AssemblyVersion(“1.0.0.0”)] to [assembly: AssemblyVersion(“1.0.*”)]
3.Remove [assembly: AssemblyFileVersion(“1.0.0.0”)]
4.Rebuild the project and verify that the version is incremented properly by viewing the properties of the newly compiled assembly.
Comments
Post a Comment