Rake for .NET -


What is the best way to create a NAT solution and run MBUNET test using the rake?

I 'm currently using direct commands like this:

  sh "# {DOT_NET_PATH} msbuild.exe / p: configuration = # {CONFIG } # {SOLUTION} " 

This works but seems a little nonsense. Would you recommend using a gem?

I have just started using which is available at.

Full Docs

Your task is simple to build:

  msbuild do | Msb | Msb.solution = "mysolution.sln" # ... end here other settings?  

Want to execute unit tests?

  desc "NUnit Test Runner Example" Nunit | Nunit | Nunit.path_to_command = "NUnit / nunit-console.exe" nunit.assemblies & lt; & Lt; "Assemblies / Test Solutions. Test.dll" and  

Update: Look for a very comprehensive tutorial.


Comments