Reputation: 27
In my job I have to create a custom build process, using the Git default template and adding my own activities from a activity library. The process will have to increment the application version and create a Git branch for the version released. I know there is scripts that create branches and I am thinking in create an activity that will run these scripts in a cmd.exe (process called via C#). But, I'm not sure if there is a better way to do this. Is this the better way? I'm using VS 2013 with tfs and Git and it's a web application. Thanks.
Upvotes: 0
Views: 90
Reputation: 23444
I am not sure of the wisdom in creating a branch on build, but I do know for sure not to customize the xaml.
You should instead customize the process with PowerShell scripts. These will be much easyer to write and support. They are also more consistent with the future as xaml builds are going away in the next version of TFS (this year).
Upvotes: 1