The AssemblyVersionAttribute class is used by the .NET framework to specify the version number of an assembly.
We have the convention of versioning our builds as [major].[minor].[micro].[revision], e.g. 2.1.2.33546. Our build-script automatically updates an …
c# .net svn version-control assemblyversionattributeI am trying to set my AssemblyVersion and AssemblyFileVersion attributes in my project like so: [assembly: AssemblyVersion("3.0.*")] [assembly: AssemblyFileVersion("3.0.*")] but …
.net warnings wildcard assemblyversionattribute