19 lines
613 B
JSON
19 lines
613 B
JSON
{
|
|
"webroot": "wwwroot",
|
|
"exclude": "wwwroot/**/*.*",
|
|
"dependencies": {
|
|
"Microsoft.AspNet.Diagnostics": "1.0.0-*",
|
|
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
|
|
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
|
|
"Microsoft.AspNet.StaticFiles": "1.0.0-*"
|
|
},
|
|
"commands": {
|
|
/* Change the port number when you are self hosting this application */
|
|
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000"
|
|
},
|
|
"frameworks": {
|
|
"aspnet50" : { },
|
|
"aspnetcore50" : { }
|
|
}
|
|
}
|