1 write to _tempDir
Microsoft.AspNetCore.Components.Testing.Tests (1)
GenerateE2EManifestTaskTests.cs (1)
19
_tempDir
= Path.Combine(Path.GetTempPath(), "E2EManifestTests_" + Guid.NewGuid().ToString("N"));
18 references to _tempDir
Microsoft.AspNetCore.Components.Testing.Tests (18)
GenerateE2EManifestTaskTests.cs (18)
20
Directory.CreateDirectory(
_tempDir
);
25
if (Directory.Exists(
_tempDir
))
27
Directory.Delete(
_tempDir
, recursive: true);
36
var manifestPath = Path.Combine(
_tempDir
, "manifest.json");
61
var manifestPath = Path.Combine(
_tempDir
, "manifest.json");
83
var manifestPath = Path.Combine(
_tempDir
, "manifest.json");
99
var appsOutputDir = Path.Combine(
_tempDir
, "e2e-apps");
101
var manifestPath = Path.Combine(
_tempDir
, "manifest.json");
126
var appsOutputDir = Path.Combine(
_tempDir
, "e2e-apps");
128
var manifestPath = Path.Combine(
_tempDir
, "manifest.json");
151
var manifestPath = Path.Combine(
_tempDir
, "manifest.json");
167
var appsOutputDir = Path.Combine(
_tempDir
, "e2e-apps");
170
var manifestPath = Path.Combine(
_tempDir
, "manifest.json");
205
var manifestPath = Path.Combine(
_tempDir
, "manifest.json");
228
var manifestPath = Path.Combine(
_tempDir
, "manifest.json");
249
var manifestPath = Path.Combine(
_tempDir
, "manifest.json");
272
var dir = Path.Combine(
_tempDir
, "src", name);
314
E2EAppsOutputDir = appsOutputDir ?? Path.Combine(
_tempDir
, "e2e-apps"),