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