Set application version

D

Dmitriy Lapshin [C# / .NET MVP]

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.
 
I

Ignacio Machin

Hi,

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

found in assemblyinfo.cs file

Cheers,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Send fax. 2
HttpWebRequest method POST 3
Sort in dataSet 1
runtime change in web.config 2
WMI for Win98SE 1
Delete row 1
Constant Column in string format 2
String Format 1

Top