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)
20Directory.CreateDirectory(_tempDir); 25if (Directory.Exists(_tempDir)) 27Directory.Delete(_tempDir, recursive: true); 36var manifestPath = Path.Combine(_tempDir, "manifest.json"); 61var manifestPath = Path.Combine(_tempDir, "manifest.json"); 83var manifestPath = Path.Combine(_tempDir, "manifest.json"); 99var appsOutputDir = Path.Combine(_tempDir, "e2e-apps"); 101var manifestPath = Path.Combine(_tempDir, "manifest.json"); 126var appsOutputDir = Path.Combine(_tempDir, "e2e-apps"); 128var manifestPath = Path.Combine(_tempDir, "manifest.json"); 151var manifestPath = Path.Combine(_tempDir, "manifest.json"); 167var appsOutputDir = Path.Combine(_tempDir, "e2e-apps"); 170var manifestPath = Path.Combine(_tempDir, "manifest.json"); 205var manifestPath = Path.Combine(_tempDir, "manifest.json"); 228var manifestPath = Path.Combine(_tempDir, "manifest.json"); 249var manifestPath = Path.Combine(_tempDir, "manifest.json"); 272var dir = Path.Combine(_tempDir, "src", name); 314E2EAppsOutputDir = appsOutputDir ?? Path.Combine(_tempDir, "e2e-apps"),