9 references to TestRootPath
Aspire.Templates.Tests (9)
NewUpAndBuildSupportProjectTemplatesTests.cs (1)
25var topLevelDir = Path.Combine(BuildEnvironment.TestRootPath, id + "_root");
tests\Shared\TemplatesTesting\AspireProject.cs (1)
97rootDir = projectDir = Path.Combine(BuildEnvironment.TestRootPath, id);
tests\Shared\TemplatesTesting\BuildEnvironment.cs (7)
203Console.WriteLine($"*** Using path for projects: {TestRootPath}"); 205Directory.CreateDirectory(TestRootPath); 236if (!Directory.Exists(TestRootPath)) 243Directory.Delete(TestRootPath, recursive: true); 249Console.WriteLine($"\tFailed to delete {TestRootPath} . Deleting subdirectories."); 250foreach (var dir in Directory.GetDirectories(TestRootPath)) 266throw new InvalidOperationException($"Error deleting '{TestRootPath}'.", ex);