Initial version of getdotnet app

This commit is contained in:
Richard Lander
2015-07-25 21:15:21 -07:00
parent 7143ad71cf
commit 0a320419c3
6 changed files with 6464 additions and 0 deletions

20
tellver/project.json Normal file
View File

@@ -0,0 +1,20 @@
{
"dependencies": {
"System.Runtime.Extensions": "4.0.10-beta-*",
"Microsoft.AspNet.Diagnostics": "1.0.0-*",
"Microsoft.AspNet.Mvc": "6.0.0-*",
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
"Microsoft.Framework.Logging.Console": "1.0.0-*",
"Kestrel": "1.0.0-*",
"Newtonsoft.Json": "7.0.1"
},
"commands": {
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5001",
"kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5004"
},
"frameworks": {
"dnx451": { },
"dnxcore50": { }
}
}