Skip to content

Commit

Permalink
Updated launchSettings with launchUrl that matches the server URL spe…
Browse files Browse the repository at this point in the history
…cified in project.json.

Updated gitignore - added project.lock.json
ardalis committed May 13, 2015
1 parent 71d5e30 commit cf6b77b
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -196,5 +196,7 @@ FakesAssemblies/

# Visual Studio 6 workspace options file
*.opt

samples/MigratingFromMvc5/NewMvc6Project/src/NewMvc6Project/wwwroot/lib/
samples/AngularSample/src/AngularSample/wwwroot/lib
project.lock.json
Original file line number Diff line number Diff line change
@@ -9,12 +9,16 @@
},
"kestrel": {
"commandName": "kestrel",
"launchBrowser": true,
"launchUrl": "http://localhost:12333",
"environmentVariables": {
"ASPNET_ENV": "Development"
}
},
"web": {
"commandName": "web",
"launchBrowser": true,
"launchUrl": "http://localhost:12334",
"environmentVariables": {
"ASPNET_ENV": "Development"
}
Original file line number Diff line number Diff line change
@@ -10,13 +10,13 @@
},

"commands": {
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000",
"kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:12344"
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:12334",
"kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:12333"
},

"frameworks": {
"dnx451": { }/*,
"dnxcore50": { }*/
"dnx451": { },
"dnxcore50": { }
},

"publishExclude": [

0 comments on commit cf6b77b

Please sign in to comment.