Merge pull request #2208 from hvitved/csharp/codeql/no-bundled-nuget

Approved by p0
This commit is contained in:
semmle-qlci
2019-10-28 13:47:50 +00:00
committed by GitHub

View File

@@ -37,9 +37,9 @@ namespace Semmle.Autobuild
}
var nuget =
builder.CodeQLExtractorCSharpRoot != null ?
builder.Actions.PathCombine(builder.CodeQLExtractorCSharpRoot, "tools", "nuget.exe") :
builder.Actions.PathCombine(builder.SemmlePlatformTools, "csharp", "nuget", "nuget.exe");
builder.SemmlePlatformTools != null ?
builder.Actions.PathCombine(builder.SemmlePlatformTools, "csharp", "nuget", "nuget.exe") :
"nuget";
var ret = BuildScript.Success;