Build Number Retrieval

  • Thread starter Thread starter Terry
  • Start date Start date
T

Terry

New to C# and the VS IDE so apologies to the old sweats for such a basic
question.

Is there a why to program the retrieval of the build number? I am
looking to add this to an xml file every time I compile.

This also needs to be supported on the Compact Framework.
 
Hi Terry

Follow this steps to automate the build number

1. Create a new macro project
2. Add BuildDvents_BuildDone event from BuildEvents
3. Add code to increment build number..(suppose to be little easy)

Shak.
 
Back
Top