1 write to LogPath
Aspire.Templates.Tests (1)
tests\Shared\TemplatesTesting\AspireProject.cs (1)
48LogPath = Path.Combine(_buildEnv.LogRootPath, Id);
15 references to LogPath
Aspire.Templates.Tests (15)
BuildAndRunTemplateTests.cs (2)
44await CheckDashboardHasResourcesAsync(page, [], logPath: project.LogPath); 145await CheckDashboardHasResourcesAsync(page, [], logPath: project.LogPath);
EmptyTemplateRunTests.cs (1)
30logPath: _testFixture.Project.LogPath);
PerTestFrameworkTemplatesTests.cs (1)
65await CheckDashboardHasResourcesAsync(page, [], logPath: project.LogPath);
StarterTemplateRunTestsBase.cs (5)
35logPath: _testFixture.Project.LogPath); 50logPath: _testFixture.Project.LogPath); 55await CheckWebFrontendWorksAsync(context, url, _testOutput, _testFixture.Project.LogPath, hasRedisCache: HasRedisCache); 71logPath: _testFixture.Project.LogPath); 76await CheckApiServiceWorksAsync(url, _testOutput, _testFixture.Project.LogPath);
TemplateTestsBase.cs (3)
296project.LogPath).ConfigureAwait(false); 299await StarterTemplateRunTestsBase<StarterTemplateFixture>.CheckApiServiceWorksAsync(apiServiceUrl, _testOutput, project.LogPath); 302await StarterTemplateRunTestsBase<StarterTemplateFixture>.CheckWebFrontendWorksAsync(context, webFrontEnd, _testOutput, project.LogPath);
tests\Shared\TemplatesTesting\AspireProject.cs (3)
55Directory.CreateDirectory(LogPath); 334var res = await restoreCmd.ExecuteAsync($"restore \"-bl:{Path.Combine(LogPath!, $"{Id}-restore.binlog")}\" /p:TreatWarningsAsErrors=true"); 337var buildArgs = $"build \"-bl:{Path.Combine(LogPath!, $"{Id}-build.binlog")}\" /p:TreatWarningsAsErrors=true";