Add appsettings.json to EmptyWeb

This commit is contained in:
Ryan Brandenburg 2018-08-20 11:48:42 -07:00
parent ed19e34256
commit a3b20c57ea
5 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
}
}

View File

@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*"
}

View File

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
}
}

View File

@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*"
}

View File

@ -411,6 +411,20 @@
"AuthOption": "MultiOrg"
}
},
"web": {
"None": {
"Template": "web",
"Arguments": "new web",
"Files": [
"appsettings.Development.json",
"appsettings.json",
"Program.cs",
"Startup.cs",
"Properties/launchSettings.json"
],
"AuthOption": "None"
}
},
"webapi": {
"IndividualB2C": {
"Template": "webapi",