2 writes to ClrType
Aspire.Hosting (2)
Ats\AtsCapabilityScanner.cs (2)
441
ClrType
= resourceType,
926
ClrType
= type,
11 references to ClrType
Aspire.Hosting (3)
Ats\AtsCapabilityScanner.cs (1)
784
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)
581
isResourceBuilder = typeInfo.
ClrType
is not null &&
582
typeof(IResource).IsAssignableFrom(typeInfo.
ClrType
);
Aspire.Hosting.CodeGeneration.Java (2)
AtsJavaCodeGenerator.cs (2)
548
isResourceBuilder = typeInfo.
ClrType
is not null &&
549
typeof(IResource).IsAssignableFrom(typeInfo.
ClrType
);
Aspire.Hosting.CodeGeneration.Python (2)
AtsPythonCodeGenerator.cs (2)
453
isResourceBuilder = typeInfo.
ClrType
is not null &&
454
typeof(IResource).IsAssignableFrom(typeInfo.
ClrType
);
Aspire.Hosting.CodeGeneration.Rust (2)
AtsRustCodeGenerator.cs (2)
656
isResourceBuilder = typeInfo.
ClrType
is not null &&
657
typeof(IResource).IsAssignableFrom(typeInfo.
ClrType
);