Adding necesary files for IIS hosting

This commit is contained in:
Suhas Joshi 2014-11-13 12:57:01 -08:00
parent 0815681a95
commit 2f7c186b24
5 changed files with 7 additions and 3 deletions

View File

@ -2,6 +2,7 @@
"dependencies": {
"Microsoft.AspNet.Security.Cookies": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
"Kestrel": "1.0.0-*"
},
"commands": {
@ -13,5 +14,6 @@
},
"aspnetcore50": {
}
}
},
"webroot":"wwwroot"
}

View File

View File

@ -3,7 +3,8 @@
"Microsoft.AspNet.Security.Cookies": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
"Microsoft.Framework.Cache.Memory": "1.0.0-*",
"Kestrel": "1.0.0-*"
"Kestrel": "1.0.0-*",
"Microsoft.AspNet.Server.IIS": "1.0.0-*"
},
"commands": {
"web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:12345",
@ -12,5 +13,6 @@
"frameworks": {
"aspnet50": { },
"aspnetcore50": { }
}
},
"webroot": "wwwroot"
}

View File