Re: Building C# project with msbuild

2012-08-19 Thread bearrito
In a Job you might call COMPILE I'd use the Msbuild plugin to do the compilation. You will just need to point the Msbuild plugin at the .SLN file. In another job you might call UNITTEST I'd use the NUNIT plugin to run the test. You will need to point the NUNIT runner at the assembly containing

Re: Building C# project with msbuild

2012-08-19 Thread Qazwart
Jenkins basically integrates with your version control system to do checkouts, and runs commands. In theory, you can just use batch or shell scripts to do your builds. Jenkins is program language neutral. As long as the correct .Net framework is installed, Jenkins can just run the "msbuild.exe

Re: Building C# project with msbuild

2012-08-17 Thread Slide
Check out the msbuild plugin [1], it does a nice job of wrapping things up for you. There is also an NUnit plugin [2] slide 1 - https://wiki.jenkins-ci.org/display/JENKINS/MSBuild+Plugin 2 - https://wiki.jenkins-ci.org/display/JENKINS/NUnit+Plugin On Fri, Aug 17, 2012 at 3:42 PM, Kenneth wrote

Building C# project with msbuild

2012-08-17 Thread Kenneth
Hi all, I am quete new to Jenkins. I have a simple C# solution with visual studio 2005, i.e. .NET 2.0 a) project executable b) a library used c) a unit test of the library. 1) My question is how do I setup Jenkins up to build the binary files? 2) How can I run the unit tests from Jenkins, they