3 writes to NuGetExePath
Microsoft.NET.TestFramework (3)
TestContext.cs (3)
237
testContext.
NuGetExePath
= Path.Combine(artifactsDir, ".nuget", $"nuget{Constants.ExeSuffix}");
245
testContext.
NuGetExePath
= Path.Combine(testContext.TestExecutionDirectory, ".nuget", $"nuget{Constants.ExeSuffix}");
260
testContext.
NuGetExePath
= Path.Combine(nugetFolder, $"nuget{Constants.ExeSuffix}");
2 references to NuGetExePath
Microsoft.NET.TestFramework (2)
Commands\NuGetExeRestoreCommand.cs (2)
27
if (string.IsNullOrEmpty(TestContext.Current.
NuGetExePath
))
32
var nugetExePath = TestContext.Current.
NuGetExePath
;