Link to home
Start Free TrialLog in
Avatar of Parth48
Parth48Flag for India

asked on

how can i give vesion to my C#.net window application ??

i want to know that how can i give vesion to my C#.net window application ??

for ex.

system_config.exe (executable file)

version : 1.0.0.0


now how can i update this version ? what are the procedure for update version of window applivation ??

give me some suggestions ....
Avatar of Todd Gerbert
Todd Gerbert
Flag of United States of America image

If you right-click on your project in Visual Studio and choose Properties, and then click the Assembly Information... button on the Application tab, you can enter an assembly version and a file version.

The assembly version is used by .Net to distinguish between different versions of the same assembly. The file version is what you see when you right-click a file and look at it's properties; the file version is really just for display and doesn't have much significance to anything.

I usually make the two the same on my applications.
ASKER CERTIFIED SOLUTION
Avatar of Asim Nazir
Asim Nazir
Flag of Pakistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you want any of the numbers to automatically increment with each build then you can set the value to "*". That way you don;t have to manually change the version number for each build.