Set application version

  • Thread starter Thread starter PawelR
  • Start date Start date
Hi Pawel,

Modify the value of the AssemblyVersionAttribute attribute in the
corresponding project's AssemblyInfo file. This file may have a different
name in IDEs other than VS .NET so you might have to consult your IDE's
documentation.

Actually, this file name is not dictated neither by the compiler nor by the
framework - it's just a useful convenient to place all assembly-level
attributes into a single file.
 
Hi,

You can set the version of assemblies by changing this line
[assembly: AssemblyVersion("1.0.*")]

found in assemblyinfo.cs file

Cheers,
 
Back
Top