Re: Version Incrementation
Mike Andrews <[email protected]> Wed, 23 Jan 2008 13:45:11 -0600
| Newsgroups | gmane.comp.windows.devel.dotnet.winforms |
|---|---|
| Message-ID | <[email protected]> |
This is contained in your AssemblyInfo.cs or AssemblyInfo.VB file:
// Version information for an assembly consists of the following four
values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.0.0.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Place an * in BuildNumber or Revision to have them automatically
incremented.
I believe with VB there's an option on the project properties page to do
this automatically.
On Jan 23, 2008 1:37 PM, Steve Abaffy <[email protected]> wrote:
> I have looked all over but cannot find where to set the version number for
> builds. I would like for each build of the program to increment the build
> number, but after repeatedly rebuilding the application it still shows
> build
> 1.0.0. Where do you set this in VS2005?
>
>
> Thanks
>