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