I’m using the “visual studio (.sln)” builder in teamcity 6.0, I would like to compile both the “debug” and “release” configuration targets. can I do it using a single builder so I dont repeat myself?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In teamcity build steps try this.
In both build steps use the same solution. It’s a crap but there isn’t any better.
buildstep0
runner type : msbuild
Command line parameters: /p:Configuration=Debug
buildstep1
runner type : msbuild
Command line parameters: /p:Configuration=Release