From 0e6ebc06ee8966f72404f27762a862fbaa2e03dd Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Fri, 14 Oct 2016 22:59:55 -0700 Subject: [PATCH] Fix package restore in init.ps1 --- tools/Restore-NuGetPackages.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Restore-NuGetPackages.ps1 b/tools/Restore-NuGetPackages.ps1 index cbde23210..7b22fab0c 100644 --- a/tools/Restore-NuGetPackages.ps1 +++ b/tools/Restore-NuGetPackages.ps1 @@ -17,5 +17,5 @@ Param( $nugetPath = & "$PSScriptRoot\Get-NuGetTool.ps1" Write-Host "Restoring NuGet packages for $Path" -ForegroundColor Yellow -& $nugetPath restore $Path -MSBuildVersion 14.0 -Verbosity $Verbosity +& $nugetPath restore $Path -MSBuildVersion 14.0 -Verbosity $Verbosity -ConfigFile "$PSScriptRoot\..\src\nuget.config" if ($lastexitcode -ne 0) { throw }