16 references to LogFilePath
aspire (6)
Commands\BaseCommand.cs (1)
223string.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)
442env[KnownConfigNames.CliLogFilePath] = executionContext.LogFilePath;
Projects\AppHostServerProject.cs (1)
54logFilePath: executionContext.LogFilePath);
Projects\PrebuiltAppHostServer.cs (1)
1448startInfo.Environment[KnownConfigNames.CliLogFilePath] = _executionContext.LogFilePath;
Aspire.Cli.Tests (10)
CliBootstrapTests.cs (1)
162Assert.Equal(logFilePath, context.LogFilePath);
Commands\AppHostLauncherTests.cs (1)
1181var 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); 415var 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)
1236var expectedCliLogMessage = string.Format(CultureInfo.CurrentCulture, InteractionServiceStrings.SeeLogsAt, executionContext.LogFilePath);
Commands\StartCommandTests.cs (1)
367var expectedCliLogMessage = string.Format(CultureInfo.CurrentCulture, InteractionServiceStrings.SeeLogsAt, executionContext.LogFilePath);
DotNet\DotNetCliRunnerTests.cs (1)
2674Assert.Equal(executionContext.LogFilePath, capturedEnv[KnownConfigNames.CliLogFilePath]);
Projects\PrebuiltAppHostServerTests.cs (1)
2994Assert.Equal(executionContext.LogFilePath, startInfo.Environment[KnownConfigNames.CliLogFilePath]);