There is a great article on using MSBuild with GO here. Without using MSBuild you may also build Visual Studio projects using the IDE.
Put this command in a bat file. You could put this directly in the pipeline definition, but a bat file makes parameterization and reuse easier. For example you might want to pass the full path of the sln and the build type as arguments.
"C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe" mysolution.sln /build "Release|Any CPU"And here is the pipeline used to run this build:
<pipeline name="buildmysln">
<materials>
<svn url="https://mysubversionrepo" username="username" password="********" />
</materials>
<stage name="defaultStage">
<jobs>
<job name="defaultJob">
<tasks>
<exec command="C:\src\trunk\ buildmysln.bat" />
</tasks>
</job>
</jobs>
</stage>
</pipeline>
Comments
1 comment
The "great article" is a broken link.
Please sign in to leave a comment.