Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I have developed 1 simple application to generate payslip, Now I have made some modification to that application and now I have to change the Version number from 1.0 to 1.1, How can I do that so that its displayed during Setup running and also in the Control panel.
Please help me
Posted

You can change the assembly version through the AssemblyInfo file.
Go through http://msdn.microsoft.com/en-us/library/ms973869.aspx[^] which explains this in further detail.
 
Share this answer
 
Comments
Espen Harlinn 13-Mar-13 5:41am    
5'ed!
Abhinav S 13-Mar-13 5:47am    
Thank you Espen.
Hi,

You can change the version when you double click on "My Project" , next in "Application" -> "Assembly Information ...".

There you can set all assembly information.

Else you should be able to do with the file "AssemblyInfo.vb"

Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices

' General Information about an assembly is controlled through the following 
' set of attributes. Change these attribute values to modify the information
' associated with an assembly.

' Review the values of the assembly attributes

<assembly: xmlns:assembly="#unknown"> 
<assembly:> 
<assembly:> 
<assembly:> 
<assembly:> 
<assembly:> 

<assembly:>

'The following GUID is for the ID of the typelib if this project is exposed to COM
<assembly:> 

' 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:> 

<assembly:> 
<assembly:> 
</assembly:></assembly:></assembly:></assembly:></assembly:></assembly:></assembly:></assembly:></assembly:></assembly:></assembly:>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900