2 writes to ClrType
Aspire.Hosting (2)
Ats\AtsCapabilityScanner.cs (2)
403ClrType = resourceType, 843ClrType = type,
11 references to ClrType
Aspire.Hosting (3)
Ats\AtsCapabilityScanner.cs (1)
733ClrType = 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)
575isResourceBuilder = typeInfo.ClrType is not null && 576typeof(IResource).IsAssignableFrom(typeInfo.ClrType);
Aspire.Hosting.CodeGeneration.Java (2)
AtsJavaCodeGenerator.cs (2)
542isResourceBuilder = typeInfo.ClrType is not null && 543typeof(IResource).IsAssignableFrom(typeInfo.ClrType);
Aspire.Hosting.CodeGeneration.Python (2)
AtsPythonCodeGenerator.cs (2)
450isResourceBuilder = typeInfo.ClrType is not null && 451typeof(IResource).IsAssignableFrom(typeInfo.ClrType);
Aspire.Hosting.CodeGeneration.Rust (2)
AtsRustCodeGenerator.cs (2)
609isResourceBuilder = typeInfo.ClrType is not null && 610typeof(IResource).IsAssignableFrom(typeInfo.ClrType);