17 references to LogFilePath
aspire (7)
Commands\BaseCommand.cs (2)
206_executionContext.LogFilePath, 233string.Format(CultureInfo.CurrentCulture, InteractionServiceStrings.SeeLogsAt, MarkupHelpers.SafeFileLink(InteractionService, _executionContext.LogFilePath)),
Commands\CacheCommand.cs (1)
37var currentLogFilePath = ExecutionContext.LogFilePath;
Commands\DashboardRunCommand.cs (1)
498RenderDashboardSummary(InteractionService, dashboardInfo, ExecutionContext.LogFilePath);
DotNet\DotNetCliRunner.cs (1)
454env[KnownConfigNames.CliLogFilePath] = executionContext.LogFilePath;
Projects\AppHostServerProject.cs (1)
58logFilePath: executionContext.LogFilePath,
Projects\PrebuiltAppHostServer.cs (1)
1489startInfo.Environment[KnownConfigNames.CliLogFilePath] = _executionContext.LogFilePath;
Aspire.Cli.Tests (10)
CliBootstrapTests.cs (1)
215Assert.Equal(logFilePath, context.LogFilePath);
Commands\AppHostLauncherTests.cs (1)
1347var fileLoggerProvider = new FileLoggerProvider(executionContext.LogFilePath, new TestStartupErrorWriter());
Commands\BaseCommandTests.cs (3)
250var expectedLogMessage = string.Format(CultureInfo.CurrentCulture, InteractionServiceStrings.SeeLogsAt, executionContext.LogFilePath); 287var expectedCliLogMessage = string.Format(CultureInfo.CurrentCulture, InteractionServiceStrings.SeeLogsAt, executionContext.LogFilePath); 493var expectedLogMessage = string.Format(CultureInfo.CurrentCulture, InteractionServiceStrings.SeeLogsAt, executionContext.LogFilePath);
Commands\NewCommandTests.cs (1)
2543var expectedMessage = string.Format(CultureInfo.CurrentCulture, TemplatingStrings.ProjectCreationFailed, 1, executionContext.LogFilePath);
Commands\ResourceCommandTests.cs (1)
1234var expectedCliLogMessage = string.Format(CultureInfo.CurrentCulture, InteractionServiceStrings.SeeLogsAt, executionContext.LogFilePath);
Commands\StartCommandTests.cs (1)
368var expectedCliLogMessage = string.Format(CultureInfo.CurrentCulture, InteractionServiceStrings.SeeLogsAt, executionContext.LogFilePath);
DotNet\DotNetCliRunnerTests.cs (1)
2723Assert.Equal(executionContext.LogFilePath, capturedEnv[KnownConfigNames.CliLogFilePath]);
Projects\PrebuiltAppHostServerTests.cs (1)
3025Assert.Equal(executionContext.LogFilePath, startInfo.Environment[KnownConfigNames.CliLogFilePath]);