-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathdotnet-configuration-in-depth.slnx
More file actions
95 lines (95 loc) · 3.83 KB
/
dotnet-configuration-in-depth.slnx
File metadata and controls
95 lines (95 loc) · 3.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="x64" />
<Platform Name="x86" />
</Configurations>
<Folder Name="/01-basic-console/">
<Project Path="01-basic-console/BasicConsole.csproj" />
</Folder>
<Folder Name="/02-generic-host/">
<Project Path="02-generic-host/GenericHost.csproj" />
</Folder>
<Folder Name="/03-json-config/">
<Project Path="03-json-config/JsonConfig.csproj" />
</Folder>
<Folder Name="/04-environment-variables/">
<Project Path="04-environment-variables/EnvironmentVariables.csproj" />
</Folder>
<Folder Name="/05-command-line-args/">
<Project Path="05-command-line-args/CommandLineArgs.csproj" />
</Folder>
<Folder Name="/06-in-memory-config/">
<Project Path="06-in-memory-config/InMemoryConfig.csproj" />
</Folder>
<Folder Name="/07-user-secrets/">
<Project Path="07-user-secrets/UserSecrets.csproj" />
</Folder>
<Folder Name="/08-configuration-sections/">
<Project Path="08-configuration-sections/ConfigurationSections.csproj" />
</Folder>
<Folder Name="/09-command-line-mappings/">
<Project Path="09-command-line-mappings/CommandLineMappings.csproj" />
</Folder>
<Folder Name="/10-key-per-file/">
<Project Path="10-key-per-file/KeyPerFile.csproj" />
</Folder>
<Folder Name="/11-azure-keyvault/">
<Project Path="11-azure-keyvault/AzureKeyvault.csproj" />
</Folder>
<Folder Name="/12-configuration-precedence/">
<Project Path="12-configuration-precedence/ConfigurationPrecedence.csproj" />
</Folder>
<Folder Name="/13-dependency-injection/">
<Project Path="13-dependency-injection/DependencyInjection.csproj" />
</Folder>
<Folder Name="/14-array-object-access/">
<Project Path="14-array-object-access/ArrayObjectAccess.csproj" />
</Folder>
<Folder Name="/15-collections-binding/">
<Project Path="15-collections-binding/CollectionsBinding.csproj" />
</Folder>
<Folder Name="/16-environment-configs/">
<Project Path="16-environment-configs/EnvironmentConfigs.csproj" />
</Folder>
<Folder Name="/17-flat-configuration/">
<Project Path="17-flat-configuration/FlatConfiguration.csproj" />
</Folder>
<Folder Name="/18-hierarchical-config/">
<Project Path="18-hierarchical-config/HierarchicalConfig.csproj" />
</Folder>
<Folder Name="/19-section-binding/">
<Project Path="19-section-binding/SectionBinding.csproj" />
</Folder>
<Folder Name="/20-aspnet-options-pattern/">
<Project Path="20-aspnet-options-pattern/AspNetOptionsPattern.csproj" />
</Folder>
<Folder Name="/21-named-options/">
<Project Path="21-named-options/NamedOptions.csproj" />
</Folder>
<Folder Name="/22-azure-app-configuration/">
<Project Path="22-azure-app-configuration/AzureAppConfiguration.csproj" />
</Folder>
<Folder Name="/23-options-validation/">
<Project Path="23-options-validation/OptionsValidation.csproj" />
</Folder>
<Folder Name="/24-configuration-reload/">
<Project Path="24-configuration-reload/ConfigurationReload.csproj" />
</Folder>
<Folder Name="/25-logging-reload/">
<Project Path="25-logging-reload/LoggingReload.csproj" />
</Folder>
<Folder Name="/26-configuration-testing/">
<Project Path="26-configuration-testing/ConfigurationTesting.csproj" />
</Folder>
<Folder Name="/27-integration-testing/">
<Project Path="27-integration-testing/IntegrationTesting.csproj" />
</Folder>
<Folder Name="/28-aspire/">
<Project Path="28-aspire/AspireSample.ApiService/AspireSample.ApiService.csproj" />
<Project Path="28-aspire/AspireSample.AppHost/AspireSample.AppHost.csproj" />
<Project Path="28-aspire/AspireSample.ServiceDefaults/AspireSample.ServiceDefaults.csproj" />
<Project Path="28-aspire/AspireSample.Tests/AspireSample.Tests.csproj" />
<Project Path="28-aspire/AspireSample.Web/AspireSample.Web.csproj" />
</Folder>
</Solution>