Browse Source

1. Change Launch browser settings

2. Changed Launch URL to HTTPS endpoint
pull/733/head
rafsanulhasan 6 years ago
parent
commit
87034ce8e0
1 changed files with 8 additions and 9 deletions
  1. +8
    -9
      src/Web/WebMVC/Properties/launchSettings.json

+ 8
- 9
src/Web/WebMVC/Properties/launchSettings.json View File

@ -10,19 +10,18 @@
"profiles": { "profiles": {
"IIS Express": { "IIS Express": {
"commandName": "IISExpress", "commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
}, },
"use64Bit": true "use64Bit": true
}, },
"Microsoft.eShopOnContainers.WebMVC": {
"commandName": "Project",
"launchUrl": "/",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:4001;http://localhost:5001"
}
"Microsoft.eShopOnContainers.WebMVC": {
"commandName": "Project",
"launchUrl": "http://localhost:4001",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:4001;http://localhost:5001"
}
} }
} }

Loading…
Cancel
Save