TFS Workflow If Statement using Build Configuration
问题 I am working with Visual Studio 2012 paired with TFS 2012. Right now I am building a custom workflow template and need to run an if statement to separate two invokeprocess's. The condition for the if statement needs to operate off of which build configuration I am running, I want it to operate like this C code: if(Configuration == 'Debug') {//run for debug} else if(Configuration == 'Release') {//run for release} My problem is that I can't find any documentation or help as to how one would go