I set the AssemblyVersion attribute to the following:
[assembly: AssemblyVersion("1.0.0.*")]
Increases in accordance with changes in assembly and time. Now this is: {1.0.0.20042}and if I do not modify the cs files inside the assembly, it does not increase. But if I change the class file in this assembly, the version will not increase only one. If I am not mistaken, then the articles that he increases depend on the time. But I want to set this gain depending on the build number.
Is there a way to find out the build number from this version number or set its value to 1?
source
share