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