11 writes to TypeId
Aspire.Hosting (1)
Ats\AtsCapabilityScanner.cs (1)
978TypeId = typeId,
Aspire.Hosting.RemoteHost.Tests (10)
AtsMarshallerTests.cs (9)
22new AtsDtoTypeInfo { TypeId = "test/TestDto", Name = "TestDto", ClrType = typeof(TestDto), Properties = [] }, 23new AtsDtoTypeInfo { TypeId = "test/TestDtoWithEnum", Name = "TestDtoWithEnum", ClrType = typeof(TestDtoWithEnum), Properties = [] }, 24new AtsDtoTypeInfo { TypeId = "test/TestDto", Name = "TestDto", ClrType = typeof(TestDto), Properties = [] }, 25new AtsDtoTypeInfo { TypeId = "test/SelfReferencingDto", Name = "SelfReferencingDto", ClrType = typeof(SelfReferencingDto), Properties = [] }, 26new AtsDtoTypeInfo { TypeId = "test/ParentDto", Name = "ParentDto", ClrType = typeof(ParentDto), Properties = [] }, 27new AtsDtoTypeInfo { TypeId = "test/ChildDto", Name = "ChildDto", ClrType = typeof(ChildDto), Properties = [] }, 28new AtsDtoTypeInfo { TypeId = "test/DtoWithJsonPropertyName", Name = "DtoWithJsonPropertyName", ClrType = typeof(DtoWithJsonPropertyName), Properties = [] }, 29new AtsDtoTypeInfo { TypeId = "test/DtoWithJsonIgnore", Name = "DtoWithJsonIgnore", ClrType = typeof(DtoWithJsonIgnore), Properties = [] }, 30new AtsDtoTypeInfo { TypeId = "test/DtoWithReadOnlyProperty", Name = "DtoWithReadOnlyProperty", ClrType = typeof(DtoWithReadOnlyProperty), Properties = [] },
CallbackProxyTests.cs (1)
348new() { TypeId = "test/TestCallbackDto", Name = "TestCallbackDto", ClrType = typeof(TestCallbackDto), Properties = [] }
17 references to TypeId
Aspire.Hosting (1)
Ats\AtsCapabilityScanner.cs (1)
161if (seenDtoTypeIds.Add(dtoType.TypeId))
Aspire.Hosting.CodeGeneration.Go (3)
AtsGoCodeGenerator.cs (3)
78_dtoNames[dto.TypeId] = SanitizeIdentifier(dto.Name); 158if (dto.TypeId == AtsConstants.ReferenceExpressionTypeId) 163var dtoName = _dtoNames[dto.TypeId];
Aspire.Hosting.CodeGeneration.Java (3)
AtsJavaCodeGenerator.cs (3)
77_dtoNames[dto.TypeId] = SanitizeIdentifier(dto.Name); 177if (dto.TypeId == AtsConstants.ReferenceExpressionTypeId) 182var dtoName = _dtoNames[dto.TypeId];
Aspire.Hosting.CodeGeneration.Python (2)
AtsPythonCodeGenerator.cs (2)
76_dtoNames[dto.TypeId] = SanitizeIdentifier(dto.Name); 156var dtoName = _dtoNames[dto.TypeId];
Aspire.Hosting.CodeGeneration.Rust (3)
AtsRustCodeGenerator.cs (3)
89_dtoNames[dto.TypeId] = SanitizeIdentifier(dto.Name); 197if (dto.TypeId == AtsConstants.ReferenceExpressionTypeId) 202var dtoName = _dtoNames[dto.TypeId];
Aspire.Hosting.CodeGeneration.TypeScript (2)
AtsTypeScriptCodeGenerator.cs (2)
380var dtoTypeIds = new HashSet<string>(dtoTypes.Select(d => d.TypeId)); 597var interfaceName = GetDtoInterfaceName(dto.TypeId);
Aspire.Hosting.CodeGeneration.TypeScript.Tests (2)
AtsTypeScriptCodeGeneratorTests.cs (2)
1137.FirstOrDefault(d => d.TypeId.Contains("TestConfigDto")); 1174.FirstOrDefault(d => d.TypeId.Contains("TestDeeplyNestedDto"));
Aspire.Hosting.RemoteHost (1)
CodeGeneration\CodeGenerationService.cs (1)
119TypeId = t.TypeId,