Skip to content

Commit ca36127

Browse files
committed
Merge pull request #17 from degrim/FixVS
Fix project not running in IIS
2 parents c465e25 + 99676a2 commit ca36127

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/dotnetstarter/Properties/launchSettings.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,18 @@
33
"IIS Express": {
44
"commandName": "IISExpress",
55
"launchBrowser": true,
6+
"launchUrl": "http://localhost:5000",
67
"environmentVariables": {
7-
"ASPNET_ENV": "Development"
8+
"ASPNETCORE_ENVIRONMENT": "Development"
89
}
910
},
10-
"kestrel": {
11-
"commandName": "kestrel",
12-
"sdkVersion": "dnx-coreclr-win-x64.1.0.0-rc1-final"
11+
"dotnetstarter": {
12+
"commandName": "Project",
13+
"launchBrowser": true,
14+
"launchUrl": "http://localhost:5000",
15+
"environmentVariables": {
16+
"ASPNETCORE_ENVIRONMENT": "Development"
17+
}
1318
}
1419
}
1520
}

0 commit comments

Comments
 (0)