2 writes to ClrType
Aspire.Hosting (2)
Ats\AtsCapabilityScanner.cs (2)
403
ClrType
= resourceType,
843
ClrType
= type,
11 references to ClrType
Aspire.Hosting (3)
Ats\AtsCapabilityScanner.cs (1)
733
ClrType = typeInfo.
ClrType
,
Ats\AtsContext.cs (2)
155
_handleTypes ??= new HashSet<Type>(HandleTypes.Where(t => t.
ClrType
!= null).Select(t => t.
ClrType
!));
Aspire.Hosting.CodeGeneration.Go (2)
AtsGoCodeGenerator.cs (2)
575
isResourceBuilder = typeInfo.
ClrType
is not null &&
576
typeof(IResource).IsAssignableFrom(typeInfo.
ClrType
);
Aspire.Hosting.CodeGeneration.Java (2)
AtsJavaCodeGenerator.cs (2)
542
isResourceBuilder = typeInfo.
ClrType
is not null &&
543
typeof(IResource).IsAssignableFrom(typeInfo.
ClrType
);
Aspire.Hosting.CodeGeneration.Python (2)
AtsPythonCodeGenerator.cs (2)
450
isResourceBuilder = typeInfo.
ClrType
is not null &&
451
typeof(IResource).IsAssignableFrom(typeInfo.
ClrType
);
Aspire.Hosting.CodeGeneration.Rust (2)
AtsRustCodeGenerator.cs (2)
609
isResourceBuilder = typeInfo.
ClrType
is not null &&
610
typeof(IResource).IsAssignableFrom(typeInfo.
ClrType
);