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