8 references to _optionsInterfacesToGenerate
Aspire.Hosting.CodeGeneration.TypeScript (8)
TypeScriptApiProjector.cs (8)
111
internal Dictionary<string, List<AtsParameterInfo>> OptionsInterfacesToGenerate =>
_optionsInterfacesToGenerate
;
180
_optionsInterfacesToGenerate
.Clear();
558
foreach (var (interfaceName, optionalParams) in
_optionsInterfacesToGenerate
.OrderBy(kvp => kvp.Key, StringComparer.Ordinal))
2172
if (
_optionsInterfacesToGenerate
.TryGetValue(baseInterfaceName, out var existingParams))
2212
if (!
_optionsInterfacesToGenerate
.TryGetValue(capabilityInterfaceName, out var capabilityParameters)
2222
if (!
_optionsInterfacesToGenerate
.TryGetValue(suffixedName, out var suffixedParams)
2241
if (
_optionsInterfacesToGenerate
.TryGetValue(interfaceName, out var declaredParams))
2262
_optionsInterfacesToGenerate
[interfaceName] = [.. optionalParams];