Added launchSettings.json for Blazor wasm templates (#18368)

* Added launchSettings.json for Blazor wasm templates

* Updated launchSettings

* removed windows auth option
This commit is contained in:
Ajay Bhargav B 2020-01-21 12:45:25 -08:00 committed by GitHub
parent 1f61fc6cb1
commit 0f2e88a334
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,3 @@
{
"useWebAssemblyDebugging": true
}

View File

@ -0,0 +1,36 @@
{
"useWebAssemblyDebugging": true,
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:8080",
//#if(RequiresHttps)
"sslPort": 44300
//#else
"sslPort": 0
//#endif
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"Company.WebApplication1": {
"commandName": "Project",
"launchBrowser": true,
//#if(RequiresHttps)
"applicationUrl": "https://localhost:5001;http://localhost:5000",
//#else
"applicationUrl": "http://localhost:5000",
//#endif
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}