The answer is how it appeared in 2011
You can modify the AssemblyInfo.cs file. This exists for every project. In recent versions of Visual Studio, it can be nested in the "properties" folder of visual studio within the project.
Go to your project, expand it, go to "Properties", expand it, open the file "AssemblyInfo.cs".
You will most likely see this ending:
// Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")]
So you can change the attributes.
Update (February 2011)
Also check:
source share