Skip to content
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.

Commit

Permalink
Fix functional tests (#364)
Browse files Browse the repository at this point in the history
The functional tests downloaded an old version of the NuGet client that didn't support `PackageReference`.
  • Loading branch information
loic-sharma authored Oct 9, 2018
1 parent 2ab0c43 commit d8cb87d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Scripts/DownloadLatestNuGetExeRelease.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$sourceNugetExe = "https://nuget.org/nuget.exe"
$sourceNugetExe = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe"
$targetNugetExe = ".\nuget.exe"

Invoke-WebRequest $sourceNugetExe -OutFile $targetNugetExe
2 changes: 1 addition & 1 deletion tests/Scripts/RunBasicSearchFunctionalCoreTests.bat
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set solutionPath="BasicSearchTests.FunctionalTests.sln"
set exitCode=0

REM Required Tools
set msbuild="%PROGRAMFILES(X86)%\MsBuild\14.0\Bin\msbuild"
set msbuild="%PROGRAMFILES(X86)%\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\msbuild"
set xunit=".\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe"
set nuget="nuget.exe"

Expand Down

0 comments on commit d8cb87d

Please sign in to comment.