Skip to content

Commit

Permalink
using nuget.config on pkg restore
Browse files Browse the repository at this point in the history
  • Loading branch information
maksimkim committed Mar 14, 2018
1 parent e1e30c1 commit 875d660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Task("Restore-NuGet-Packages")
.Description("Restores dependencies")
.Does(() =>
{
DotNetCoreRestore();
DotNetCoreRestore(new DotNetCoreRestoreSettings { ConfigFile = ".nuget\\nuget.config" });

int result = StartProcess("dotnet", new ProcessSettings { Arguments = "restore -r win-x64" } );
if (result != 0)
Expand Down

0 comments on commit 875d660

Please sign in to comment.