1 write to LogPath
Aspire.Workload.Tests (1)
tests\Shared\WorkloadTesting\AspireProject.cs (1)
47LogPath = Path.Combine(_buildEnv.LogRootPath, Id);
8 references to LogPath
Aspire.Workload.Tests (8)
StarterTemplateRunTestsBase.cs (2)
50await CheckWebFrontendWorksAsync(context, url, _testOutput, _testFixture.Project.LogPath, hasRedisCache: HasRedisCache); 67await CheckApiServiceWorksAsync(url, _testOutput, _testFixture.Project.LogPath);
tests\Shared\WorkloadTesting\AspireProject.cs (3)
53Directory.CreateDirectory(LogPath); 308var res = await restoreCmd.ExecuteAsync($"restore \"-bl:{Path.Combine(LogPath!, $"{Id}-restore.binlog")}\" /p:TreatWarningsAsErrors=true"); 311var buildArgs = $"build \"-bl:{Path.Combine(LogPath!, $"{Id}-build.binlog")}\" /p:TreatWarningsAsErrors=true";
WorkloadTestsBase.cs (3)
297string screenshotPath = Path.Combine(project.LogPath, "dashboard-fail.png"); 304await StarterTemplateRunTestsBase<StarterTemplateFixture>.CheckApiServiceWorksAsync(apiServiceUrl, _testOutput, project.LogPath); 307await StarterTemplateRunTestsBase<StarterTemplateFixture>.CheckWebFrontendWorksAsync(context, webFrontEnd, _testOutput, project.LogPath);