Update to new CLI.

- Added appropriate imports/net core platform libraries.
This commit is contained in:
N. Taylor Mullen 2016-02-06 19:10:09 -08:00
parent c2194ea99d
commit bafb097e9f
16 changed files with 42 additions and 17 deletions

View File

@ -4,7 +4,8 @@
"Microsoft.AspNetCore.DataProtection": "1.0.0-*", "Microsoft.AspNetCore.DataProtection": "1.0.0-*",
"Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*" "Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*"
}, },
"compilationOptions": { "compilationOptions": {
"emitEntryPoint": true "emitEntryPoint": true

View File

@ -5,7 +5,8 @@
"Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.Extensions.Caching.Memory": "1.0.0-*", "Microsoft.Extensions.Caching.Memory": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*" "Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*"
}, },
"compilationOptions": { "compilationOptions": {
"emitEntryPoint": true "emitEntryPoint": true

View File

@ -8,7 +8,8 @@
"Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*" "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*"
}, },
"commands": { "commands": {
"web": "JwtBearerSample" "web": "JwtBearerSample"

View File

@ -5,7 +5,8 @@
"Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*", "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*" "Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*"
}, },
"frameworks": { "frameworks": {
"dnx451": {}, "dnx451": {},

View File

@ -9,7 +9,8 @@
"Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*", "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*" "Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*"
}, },
"compilationOptions": { "compilationOptions": {
"emitEntryPoint": true "emitEntryPoint": true

View File

@ -14,6 +14,8 @@
}, },
"frameworks": { "frameworks": {
"net451": {}, "net451": {},
"dotnet5.4": {} "dotnet5.4": {
"imports": "portable-net451+win8"
}
} }
} }

View File

@ -14,6 +14,8 @@
}, },
"frameworks": { "frameworks": {
"net451": {}, "net451": {},
"dotnet5.4": {} "dotnet5.4": {
"imports": "portable-net451+win8"
}
} }
} }

View File

@ -15,6 +15,8 @@
}, },
"frameworks": { "frameworks": {
"net451": { }, "net451": { },
"dotnet54": { } "dotnet5.4": {
"imports": "portable-net451+win8"
}
} }
} }

View File

@ -14,6 +14,8 @@
}, },
"frameworks": { "frameworks": {
"net451": {}, "net451": {},
"dotnet5.4": {} "dotnet5.4": {
"imports": "portable-net451+win8"
}
} }
} }

View File

@ -22,7 +22,8 @@
"dotnet5.4": { "dotnet5.4": {
"dependencies": { "dependencies": {
"System.Net.Http": "4.0.1-*" "System.Net.Http": "4.0.1-*"
} },
"imports": "portable-net451+win8"
} }
} }
} }

View File

@ -15,6 +15,8 @@
}, },
"frameworks": { "frameworks": {
"net451": {}, "net451": {},
"dotnet54": {} "dotnet5.4": {
"imports": "portable-net451+win8"
}
} }
} }

View File

@ -30,7 +30,8 @@
"dotnet5.4": { "dotnet5.4": {
"dependencies": { "dependencies": {
"System.Net.Http": "4.0.1-*" "System.Net.Http": "4.0.1-*"
} },
"imports": "portable-net451"
} }
} }
} }

View File

@ -12,6 +12,7 @@
"Microsoft.AspNetCore.Authentication.Twitter": "1.0.0-*", "Microsoft.AspNetCore.Authentication.Twitter": "1.0.0-*",
"Microsoft.AspNetCore.TestHost": "1.0.0-*", "Microsoft.AspNetCore.TestHost": "1.0.0-*",
"Microsoft.AspNetCore.Testing": "1.0.0-*", "Microsoft.AspNetCore.Testing": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"xunit": "2.1.0" "xunit": "2.1.0"
}, },
"frameworks": { "frameworks": {
@ -26,8 +27,10 @@
}, },
"dnxcore50": { "dnxcore50": {
"dependencies": { "dependencies": {
"System.Runtime": "4.0.21-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*" "xunit.runner.aspnet": "2.0.0-aspnet-*"
} },
"imports": "portable-net451+win8"
} }
}, },
"testRunner": "xunit", "testRunner": "xunit",

View File

@ -7,6 +7,7 @@
"Microsoft.AspNetCore.Testing": "1.0.0-*", "Microsoft.AspNetCore.Testing": "1.0.0-*",
"Microsoft.Extensions.DependencyInjection": "1.0.0-*", "Microsoft.Extensions.DependencyInjection": "1.0.0-*",
"Microsoft.Extensions.Logging": "1.0.0-*", "Microsoft.Extensions.Logging": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"xunit": "2.1.0" "xunit": "2.1.0"
}, },
"frameworks": { "frameworks": {
@ -19,10 +20,11 @@
"xunit.runner.console": "2.1.0" "xunit.runner.console": "2.1.0"
} }
}, },
"dnxcore50": { "dnxcore50": {
"dependencies": { "dependencies": {
"xunit.runner.aspnet": "2.0.0-aspnet-*" "xunit.runner.aspnet": "2.0.0-aspnet-*"
} },
"imports": "portable-net451+win8"
} }
}, },
"testRunner": "xunit", "testRunner": "xunit",

View File

@ -6,6 +6,7 @@
"Microsoft.AspNetCore.CookiePolicy": "1.0.0-*", "Microsoft.AspNetCore.CookiePolicy": "1.0.0-*",
"Microsoft.AspNetCore.TestHost": "1.0.0-*", "Microsoft.AspNetCore.TestHost": "1.0.0-*",
"Microsoft.Extensions.DependencyInjection": "1.0.0-*", "Microsoft.Extensions.DependencyInjection": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"xunit": "2.1.0" "xunit": "2.1.0"
}, },
"frameworks": { "frameworks": {
@ -19,10 +20,11 @@
"xunit.runner.console": "2.1.0" "xunit.runner.console": "2.1.0"
} }
}, },
"dnxcore50": { "dnxcore50": {
"dependencies": { "dependencies": {
"xunit.runner.aspnet": "2.0.0-aspnet-*" "xunit.runner.aspnet": "2.0.0-aspnet-*"
} },
"imports": "portable-net451+win8"
} }
}, },
"testRunner": "xunit", "testRunner": "xunit",

View File

@ -8,6 +8,7 @@
"Microsoft.Owin.Security.Cookies": "3.0.1", "Microsoft.Owin.Security.Cookies": "3.0.1",
"Microsoft.Owin.Security.Interop": "1.0.0-*", "Microsoft.Owin.Security.Interop": "1.0.0-*",
"Microsoft.Owin.Testing": "3.0.1", "Microsoft.Owin.Testing": "3.0.1",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"xunit": "2.1.0", "xunit": "2.1.0",
"xunit.runner.console": "2.1.0" "xunit.runner.console": "2.1.0"
}, },