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