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
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
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
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