fixes the build

This commit is contained in:
2018-01-11 21:35:59 +01:00
parent a03978b037
commit eebf9399c0

View File

@ -1,53 +1,59 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "compilationOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"tooling": { "tooling": {
"defaultNamespace": "testOauthClient" "defaultNamespace": "testOauthClient"
}, },
"dependencies": { "dependencies": {
"YavscLib": {}, "Yavsc.Abstract": {
"Microsoft.AspNet.Authentication.Cookies": "1.0.0-rc1-final", "type": "build"
"Microsoft.AspNet.Authentication.OAuth": "1.0.0-rc1-final", },
"Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final", "Microsoft.AspNet.Authentication.Cookies": "1.0.0-rc1-final",
"Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final", "Microsoft.AspNet.Authentication.OAuth": "1.0.0-rc1-final",
"Microsoft.AspNet.Mvc": "6.0.0-rc1-final", "Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final",
"Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-rc1-final", "Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final",
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final", "Microsoft.AspNet.Mvc": "6.0.0-rc1-final",
"Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final", "Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-rc1-final",
"Microsoft.AspNet.Tooling.Razor": "1.0.0-rc1-final", "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
"Microsoft.Extensions.Configuration.FileProviderExtensions": "1.0.0-rc1-final", "Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final",
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", "Microsoft.AspNet.Tooling.Razor": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging": "1.0.0-rc1-final", "Microsoft.Extensions.Configuration.FileProviderExtensions": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final", "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc1-final", "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
"Newtonsoft.Json": "9.0.1" "Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final",
}, "Microsoft.Extensions.Logging.Debug": "1.0.0-rc1-final",
"commands": { "Newtonsoft.Json": "9.0.1"
"web": "Microsoft.AspNet.Server.Kestrel --server.urls=http://*:5002" },
}, "commands": {
"frameworks": { "web": "Microsoft.AspNet.Server.Kestrel --server.urls=http://*:5002"
"dnx451": {} },
}, "frameworks": {
"exclude": [ "dnx451": {
"wwwroot", "dependencies": {
"node_modules", "System.Json": "4.0.0"
"bower_components" }
], }
"publishExclude": [ },
"node_modules", "exclude": [
"bower_components", "wwwroot",
"**.xproj", "node_modules",
"**.user", "bower_components"
"**.vspscc" ],
], "publishExclude": [
"scripts": { "node_modules",
"prepublish": [ "bower_components",
"npm install", "**.xproj",
"bower install", "**.user",
"gulp clean", "**.vspscc"
"gulp min" ],
] "scripts": {
} "prepublish": [
"npm install",
"bower install",
"gulp clean",
"gulp min"
]
}
} }