1 write to LogPath
Aspire.Templates.Tests (1)
tests\Shared\TemplatesTesting\AspireProject.cs (1)
48LogPath = Path.Combine(_buildEnv.LogRootPath, Id);
12 references to LogPath
Aspire.Templates.Tests (12)
EmptyTemplateRunTests.cs (1)
29logPath: _testFixture.Project.LogPath);
StarterTemplateRunTestsBase.cs (5)
34logPath: _testFixture.Project.LogPath); 48logPath: _testFixture.Project.LogPath); 53await CheckWebFrontendWorksAsync(context, url, _testOutput, _testFixture.Project.LogPath, hasRedisCache: HasRedisCache); 67logPath: _testFixture.Project.LogPath); 72await CheckApiServiceWorksAsync(url, _testOutput, _testFixture.Project.LogPath);
TemplateTestsBase.cs (3)
301project.LogPath).ConfigureAwait(false); 304await StarterTemplateRunTestsBase<StarterTemplateFixture>.CheckApiServiceWorksAsync(apiServiceUrl, _testOutput, project.LogPath); 307await StarterTemplateRunTestsBase<StarterTemplateFixture>.CheckWebFrontendWorksAsync(context, webFrontEnd, _testOutput, project.LogPath);
tests\Shared\TemplatesTesting\AspireProject.cs (3)
55Directory.CreateDirectory(LogPath); 326var res = await restoreCmd.ExecuteAsync($"restore \"-bl:{Path.Combine(LogPath!, $"{Id}-restore.binlog")}\" /p:TreatWarningsAsErrors=true"); 329var buildArgs = $"build \"-bl:{Path.Combine(LogPath!, $"{Id}-build.binlog")}\" /p:TreatWarningsAsErrors=true";