CC.Net + VS 2008

I am new to CC.Net. I want to integrate my VS 2008 project with CC.Net. I am using VSS. Is MSBuild or NAnt necessary for integration?

Can anyone tell me the easy steps to integrate CC.Net with VSS to build my visual studio 2008 project.

Thanks in advance.

0


source to share


1 answer


Neither MSBuild nor Nant is needed - both are optional helpers.

You can get ccnet to build a VS 2008 project / solution directly if visual studio is installed on the build machine.

Use either a VisualStudio task or an executable task: Tasks



If your code is completely manageable, you can use msbuild to avoid having to install visual studio on your build machine.

You will also need a source control block and a publish block - overall the ccnet documentation is pretty good.

+1


source







All Articles