9 references to TestRootPath
Aspire.Templates.Tests (9)
NewUpAndBuildSupportProjectTemplatesTests.cs (1)
22var 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)
196Console.WriteLine($"*** Using path for projects: {TestRootPath}"); 198Directory.CreateDirectory(TestRootPath); 229if (!Directory.Exists(TestRootPath)) 236Directory.Delete(TestRootPath, recursive: true); 242Console.WriteLine($"\tFailed to delete {TestRootPath} . Deleting subdirectories."); 243foreach (var dir in Directory.GetDirectories(TestRootPath)) 259throw new InvalidOperationException($"Error deleting '{TestRootPath}'.", ex);