Skip to content

Commit

Permalink
Merge pull request #17 from degrim/FixVS
Browse files Browse the repository at this point in the history
Fix project not running in IIS
  • Loading branch information
opiethehokie committed May 25, 2016
2 parents c465e25 + 99676a2 commit ca36127
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/dotnetstarter/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,18 @@
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNET_ENV": "Development"
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"kestrel": {
"commandName": "kestrel",
"sdkVersion": "dnx-coreclr-win-x64.1.0.0-rc1-final"
"dotnetstarter": {
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}

0 comments on commit ca36127

Please sign in to comment.