Raviteja
Raviteja

Reputation: 1

pre build script path and pre build script arguments

Where can I set pre-build script path and pre-build script arguments for build process template in TFS 2012? I found these options in TFS 2013 as shown in the image:

enter image description here

Upvotes: 0

Views: 1228

Answers (1)

Michael Baker
Michael Baker

Reputation: 3434

You have two options for for TFS 2012.

  1. You will need to add a new activity to your workflow to call a pre-build script or

  2. Set your build process to build a MSBuild project file (not a solution). This project file will be your custom build entry point and you can add your pre-build work in this project. Once the pre-build work is done you can start the solution build.

Upvotes: 0

Related Questions