Skip to content

Commit

Permalink
Do both a dotnet restore and nuget restore for the demo solution
Browse files Browse the repository at this point in the history
  • Loading branch information
rprouse committed Apr 26, 2017
1 parent c1a2fc8 commit 983dceb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,14 @@ Task("NuGetRestore")
PackagesDirectory = PROJECT_DIR + "packages"
});

Information("Restoring NuGet Packages for the Demo Solution");
DotNetCoreRestore(DEMO_SOLUTION);
Information("Restoring NuGet Packages for the Demo .NET Core Project");
DotNetCoreRestore(PROJECT_DIR + "demo/NUnit3CoreTestDemo/NUnit3CoreTestDemo.csproj");

Information("Restoring NuGet Packages for the Demo .NET Project");
NuGetRestore(PROJECT_DIR + "demo/NUnitTestDemo/NUnit3TestDemo.csproj",
new NuGetRestoreSettings {
PackagesDirectory = PROJECT_DIR + "demo/packages"
});
});

//////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 983dceb

Please sign in to comment.