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