Reputation: 1
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:
Upvotes: 0
Views: 1228
Reputation: 3434
You have two options for for TFS 2012.
You will need to add a new activity to your workflow to call a pre-build script or
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