3 writes to AppHostCliLogFilePath
aspire (2)
Backchannel\AppHostConnectionResolver.cs (1)
313executionContext.AppHostCliLogFilePath = cliLogFilePath;
Commands\AppHostLauncher.cs (1)
208executionContext.AppHostCliLogFilePath = childLogFile;
Aspire.Cli.Tests (1)
Commands\BaseCommandTests.cs (1)
273ctx.AppHostCliLogFilePath = "/tmp/aspire-logs/apphost.log";
4 references to AppHostCliLogFilePath
aspire (2)
Commands\BaseCommand.cs (2)
229if (ExecutionContext.AppHostCliLogFilePath is not null) 233string.Format(CultureInfo.CurrentCulture, InteractionServiceStrings.SeeAppHostLogsAt, MarkupHelpers.SafeFileLink(InteractionService, ExecutionContext.AppHostCliLogFilePath)),
Aspire.Cli.Tests (2)
Commands\StartCommandTests.cs (2)
371Assert.NotNull(executionContext.AppHostCliLogFilePath); 374var expectedAppHostLogMessage = string.Format(CultureInfo.CurrentCulture, InteractionServiceStrings.SeeAppHostLogsAt, executionContext.AppHostCliLogFilePath);