1 write to _temporaryDirectory
dotnet.Tests (1)
CommandTests\Tool\Update\ToolUpdateLocalCommandTests.cs (1)
56
_temporaryDirectory
= Path.Combine(_temporaryDirectoryParent, "sub");
11 references to _temporaryDirectory
dotnet.Tests (11)
CommandTests\Tool\Update\ToolUpdateLocalCommandTests.cs (11)
57
_fileSystem.Directory.CreateDirectory(
_temporaryDirectory
);
58
_pathToPlacePackages = Path.Combine(
_temporaryDirectory
, "pathToPlacePackage");
98
new DirectoryPath(Path.Combine(
_temporaryDirectory
, "cache")),
101
_manifestFilePath = Path.Combine(
_temporaryDirectory
, "dotnet-tools.json");
102
_fileSystem.File.WriteAllText(Path.Combine(
_temporaryDirectory
, _manifestFilePath), _jsonContent);
103
_toolManifestFinder = new ToolManifestFinder(new DirectoryPath(
_temporaryDirectory
), _fileSystem,
147
_fileSystem.File.WriteAllText(Path.Combine(
_temporaryDirectory
, "nuget.config"), _nugetConfigWithInvalidSources);
159
_fileSystem.File.Delete(Path.Combine(
_temporaryDirectory
, "nuget.config"));
227
_fileSystem.File.WriteAllText(Path.Combine(
_temporaryDirectory
, _manifestFilePath), _jsonEmptyContent);
247
string explicitManifestFilePath = Path.Combine(
_temporaryDirectory
, "subdirectory", "dotnet-tools.json");
249
_fileSystem.Directory.CreateDirectory(Path.Combine(
_temporaryDirectory
, "subdirectory"));