3 instantiations of TestConfigDto
Aspire.Hosting.CodeGeneration.TypeScript.Tests (3)
TestTypes\TestTypes.cs (3)
34public static readonly TestConfigDto Default = new() 43public static TestConfigDto Secure { get; } = new() 56public static readonly TestConfigDto Development = new()
8 references to TestConfigDto
Aspire.Hosting.CodeGeneration.TypeScript.Tests (8)
AtsTypeScriptCodeGeneratorTests.cs (2)
182var testConfig = context.DtoTypes.First(dto => dto.Name == nameof(TestConfigDto)); 184Assert.Equal("The name of the test config.", testConfig.Properties.First(p => p.Name == nameof(TestConfigDto.Name)).Documentation?.Summary);
TestTypes\TestExtensions.cs (1)
463TestConfigDto config) where T : IResource
TestTypes\TestTypes.cs (5)
34public static readonly TestConfigDto Default = new() 43public static TestConfigDto Secure { get; } = new() 56public static readonly TestConfigDto Development = new() 146public TestConfigDto? Config { get; set; } 186public Dictionary<string, List<TestConfigDto>> NestedData { get; set; } = [];