VS.Net Question

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

Guest

I have an application that I am releasing a beta version of. My question is
regarding should I release the debug version or the release? I guess I am
confused about the differences. Also, how VS.Net controls versions:

1) On release how does the version change?
2) Does it automatically increment versions?

Thanks
 
There's a file in the solution called 'AssemblyInfo.cs'.
You can find the version number here, you have to change the number yourself
Looks like this:
[assembly: AssemblyVersion("1.0.*")]

Jelle
 
Back
Top