-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings_development.json
More file actions
44 lines (44 loc) · 1.01 KB
/
appsettings_development.json
File metadata and controls
44 lines (44 loc) · 1.01 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
{
/*
C-style comments are allowed ...
*/
"appsettings": {
"section1": {
"key1": "development_value1", // Double slash comments are allowed
"key2": "development_value2"
},
"section2": {
"key1": "development_value1",
"key2": "development_value2"
}
},
"Logging": {
"LogLevel": {
"Default": "Information"
},
"Debug": {
"LogLevel": {
"Default": "Debug"
}
},
"Console": {
"LogLevel": {
"Default": "Information",
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.AspNetCore.Routing": "Information",
"Microsoft.AspNetCore.HttpLogging.HttpLoggingMiddleware": "Information"
}
},
"EventSource": {
"LogLevel": {
"Microsoft": "Information"
}
},
"EventLog": {
"LogLevel": {
"Microsoft": "Information"
}
}
},
"AllowedHosts": "*"
}