Build number

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

We have 5 developers working on two shared ASP.NET projects. We're using
VS.NET 2003 with Visual Source Safe.

We'd like to track build numbers, but have NEVER touched this before. What
is a super easy way to leverage build numbers and have them autoincrement,
or is this already built in? Either way, is there a programatic way to
access the current build via code? We'd like to keep it simple relative to
our team size.

Thanks in advance!
Mark
 
The super easy way is to use the AssemblyVersion attribute and have it
say something like AssemblyVersion("1.0.*") in the AssemblyInfo.cs

It goes by the date and time for the revision and build numbers. Hope
that helps
 
Back
Top