I have a unit test that is built using Moq. It compiles ok in VS2013 using the nuget package install however how can i do the same in bamboo build server? please help
Thanks,
Either make sure your nuget packages are included in you source repo or add nuget.exe as a new executable on your build agents and use a Command task in your build plan to run nuget.exe with the "restore" argument and nuget.exe will restore all your nuget packages. This Command task should run before you run your build task.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.