View Single Post
  #3  
Old 08-13-2014, 08:21 PM
diamxus diamxus is online now
Registered User
 
Join Date: 11-05-2004
Posts: 1
Use NuGet & VS solution

Just in case, someone needs another simple approach, I resolved this issue by doing the following:
• Download nuget.exe from https://nuget.codeplex.com/releases
• Place it somewhere you can reference it, for example, %PROJDIR%
• Create a NuGet step such as the one below:
<step action='NuGet'>
<Command>restore</Command>
<Exe>%PROJDIR%\nuget.exe</Exe>
<PackageId>c:\sourcecode\solutionroot\VS2013Soluti onFileName.sln</PackageId>
<buildfailsteps type='11'>0</buildfailsteps>
<indent type='3'>1</indent>
<name>NuGet</name>
</step>
Reply With Quote