9 references to RuntimeSpec
aspire (9)
Backchannel\BackchannelJsonSerializerContext.cs (1)
18
[JsonSerializable(typeof(
RuntimeSpec
))]
Projects\AppHostRpcClient.cs (2)
46
public Task<
RuntimeSpec
> GetRuntimeSpecAsync(string languageId, CancellationToken cancellationToken)
47
=> _jsonRpc.InvokeWithCancellationAsync<
RuntimeSpec
>("getRuntimeSpec", [languageId], cancellationToken);
Projects\GuestAppHostProject.cs (1)
1108
var
runtimeSpec = await rpcClient.GetRuntimeSpecAsync(_resolvedLanguage.LanguageId, cancellationToken);
Projects\GuestRuntime.cs (3)
13
/// Interprets <see cref="
RuntimeSpec
"/> to install dependencies and execute AppHost processes.
17
private readonly
RuntimeSpec
_spec;
25
public GuestRuntime(
RuntimeSpec
spec, ILogger logger)
Projects\IAppHostRpcClient.cs (1)
23
Task<
RuntimeSpec
> GetRuntimeSpecAsync(string languageId, CancellationToken cancellationToken);
Scaffolding\ScaffoldingService.cs (1)
166
var
runtimeSpec = await rpcClient.GetRuntimeSpecAsync(language.LanguageId.Value, cancellationToken);