11 writes to Name
Aspire.Hosting (1)
Ats\AtsCapabilityScanner.cs (1)
979
Name
= typeName,
Aspire.Hosting.RemoteHost.Tests (10)
AtsMarshallerTests.cs (9)
22
new AtsDtoTypeInfo { TypeId = "test/TestDto",
Name
= "TestDto", ClrType = typeof(TestDto), Properties = [] },
23
new AtsDtoTypeInfo { TypeId = "test/TestDtoWithEnum",
Name
= "TestDtoWithEnum", ClrType = typeof(TestDtoWithEnum), Properties = [] },
24
new AtsDtoTypeInfo { TypeId = "test/TestDto",
Name
= "TestDto", ClrType = typeof(TestDto), Properties = [] },
25
new AtsDtoTypeInfo { TypeId = "test/SelfReferencingDto",
Name
= "SelfReferencingDto", ClrType = typeof(SelfReferencingDto), Properties = [] },
26
new AtsDtoTypeInfo { TypeId = "test/ParentDto",
Name
= "ParentDto", ClrType = typeof(ParentDto), Properties = [] },
27
new AtsDtoTypeInfo { TypeId = "test/ChildDto",
Name
= "ChildDto", ClrType = typeof(ChildDto), Properties = [] },
28
new AtsDtoTypeInfo { TypeId = "test/DtoWithJsonPropertyName",
Name
= "DtoWithJsonPropertyName", ClrType = typeof(DtoWithJsonPropertyName), Properties = [] },
29
new AtsDtoTypeInfo { TypeId = "test/DtoWithJsonIgnore",
Name
= "DtoWithJsonIgnore", ClrType = typeof(DtoWithJsonIgnore), Properties = [] },
30
new AtsDtoTypeInfo { TypeId = "test/DtoWithReadOnlyProperty",
Name
= "DtoWithReadOnlyProperty", ClrType = typeof(DtoWithReadOnlyProperty), Properties = [] },
CallbackProxyTests.cs (1)
348
new() { TypeId = "test/TestCallbackDto",
Name
= "TestCallbackDto", ClrType = typeof(TestCallbackDto), Properties = [] }
10 references to Name
Aspire.Hosting.CodeGeneration.Go (2)
AtsGoCodeGenerator.cs (2)
78
_dtoNames[dto.TypeId] = SanitizeIdentifier(dto.
Name
);
164
WriteLine($"// {dtoName} represents {dto.
Name
}.");
Aspire.Hosting.CodeGeneration.Java (2)
AtsJavaCodeGenerator.cs (2)
77
_dtoNames[dto.TypeId] = SanitizeIdentifier(dto.
Name
);
183
WriteLine($"/** {dto.
Name
} DTO. */");
Aspire.Hosting.CodeGeneration.Python (1)
AtsPythonCodeGenerator.cs (1)
76
_dtoNames[dto.TypeId] = SanitizeIdentifier(dto.
Name
);
Aspire.Hosting.CodeGeneration.Rust (2)
AtsRustCodeGenerator.cs (2)
89
_dtoNames[dto.TypeId] = SanitizeIdentifier(dto.
Name
);
203
WriteLine($"/// {dto.
Name
}");
Aspire.Hosting.CodeGeneration.TypeScript (2)
AtsTypeScriptCodeGenerator.cs (2)
595
foreach (var dto in dtoTypes.OrderBy(d => d.
Name
))
599
WriteLine($"/** DTO interface for {dto.
Name
} */");
Aspire.Hosting.RemoteHost (1)
CodeGeneration\CodeGenerationService.cs (1)
120
Name = t.
Name
,