Application versioning in VB.NET 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Ok, this is going to sound like a silly one, but:

In VB6 there was the app object, which had things like the application's
version information. I found the equivalent VB.NET object, the Application
object. What I can't find is where in the IDE you get to set the version
number on a build. In VB6 it was off the project properties pages, but I
checked that in VB.NET and I don't see it. Can someone direct me to where it
is?
 
Hi,

It is in the assemblyinfo.vb file.

' 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.*")>



Ken
------------------------
"(e-mail address removed)" <[email protected]>
wrote in message Ok, this is going to sound like a silly one, but:

In VB6 there was the app object, which had things like the application's
version information. I found the equivalent VB.NET object, the Application
object. What I can't find is where in the IDE you get to set the version
number on a build. In VB6 it was off the project properties pages, but I
checked that in VB.NET and I don't see it. Can someone direct me to where it
is?
 

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

Back
Top