Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to set application version

Status
Not open for further replies.

developer155

Programmer
Jan 21, 2004
512
US
Hello, can someone help me out with setting a version for my ASP.NET app? I am looking under Properties but cannot find anything

thanks
 
developer155,

file AssemblyInfo.vb
Code:
.
.
.
' 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.*")>
 
so is that a new file i have to create? Or is that somethig that can be added to web.config or global?

thanks
 
Every .NET project has an assembly info file. It should have been created when you created your project.

D
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top