1 write to _guestRuntime
aspire (1)
Projects\GuestAppHostProject.cs (1)
2063
_guestRuntime
= new GuestRuntime(runtimeSpec, _logger, PathLookupHelper.FindFullPathFromPath, _environment, _profilingTelemetry, _fileLoggerProvider);
14 references to _guestRuntime
aspire (14)
Projects\GuestAppHostProject.cs (14)
622
if (
_guestRuntime
is null)
628
if (
_guestRuntime
.CertificateBundleEnvironmentVariable is { } certificateBundleEnvironmentVariable)
636
_guestRuntime
.Language.Replace('/', '-'),
650
if (
_guestRuntime
.ExtensionLaunchCapability is { } requiredCapability
658
launcher =
_guestRuntime
.CreateDefaultLauncher();
2047
if (
_guestRuntime
is null)
2087
if (
_guestRuntime
is null)
2093
var (initResult, initOutput) = await
_guestRuntime
.InitializeAsync(directory, cancellationToken);
2114
var (result, output) = await
_guestRuntime
.InstallDependenciesAsync(directory, cancellationToken);
2154
if (
_guestRuntime
is null)
2160
return await
_guestRuntime
.RunAsync(appHostFile, directory, environmentVariables, watchMode, launcher, cancellationToken, noBuild: noBuild, afterAppHostLaunchedAsync: afterAppHostLaunchedAsync, appHostLaunchOptions: appHostLaunchOptions);
2178
if (
_guestRuntime
is null)
2184
return await
_guestRuntime
.PublishAsync(appHostFile, directory, environmentVariables, publishArgs,
_guestRuntime
.CreateDefaultLauncher(), noBuild: noBuild, afterAppHostLaunchedAsync: afterAppHostLaunchedAsync, cancellationToken: cancellationToken);