Add scaffolding to the MVC sandbox

- need more Tonka trucks
This commit is contained in:
Doug Bunting 2016-07-12 15:25:13 -07:00
parent b4677a44da
commit 95796744c1
1 changed files with 21 additions and 3 deletions

View File

@ -15,7 +15,15 @@
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
"Microsoft.AspNetCore.StaticFiles": "1.1.0-*", "Microsoft.AspNetCore.StaticFiles": "1.1.0-*",
"Microsoft.Extensions.Configuration.Json": "1.1.0-*", "Microsoft.Extensions.Configuration.Json": "1.1.0-*",
"Microsoft.Extensions.Logging.Console": "1.1.0-*" "Microsoft.Extensions.Logging.Console": "1.1.0-*",
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
"type": "build",
"version": "1.0.0-*"
},
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc": {
"type": "build",
"version": "1.0.0-*"
}
}, },
"publishOptions": { "publishOptions": {
"include": [ "include": [
@ -26,7 +34,13 @@
}, },
"tools": { "tools": {
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-*", "Microsoft.AspNetCore.Razor.Tools": "1.0.0-*",
"Microsoft.DotNet.Watcher.Tools": "1.0.0-*" "Microsoft.DotNet.Watcher.Tools": "1.0.0-*",
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
"imports": [
"portable-net45+win8"
],
"version": "1.0.0-*"
}
}, },
"frameworks": { "frameworks": {
"net451": {}, "net451": {},
@ -36,7 +50,11 @@
"version": "1.0.0-*", "version": "1.0.0-*",
"type": "platform" "type": "platform"
} }
} },
"imports": [
"dotnet5.6",
"portable-net45+win8"
]
} }
} }
} }