Update ASP.NET 5 versions for ASP.NET Core.

See https://github.com/aspnet/Announcements/issues/144 for more information.
This commit is contained in:
N. Taylor Mullen 2016-01-22 12:29:04 -08:00
parent d761c6b7ba
commit d61c6985b7
2 changed files with 39 additions and 36 deletions

View File

@ -7,28 +7,31 @@
"compilationOptions": {
"emitEntryPoint": true,
"warningsAsErrors": true,
"define": [ "DEMO", "TESTING" ]
"define": [
"DEMO",
"TESTING"
]
},
"compile": [
"../../shared/**/*.cs"
],
"publishExclude": "*.cmd",
"dependencies": {
"Microsoft.EntityFrameworkCore.InMemory": "7.0.0-*",
"Microsoft.EntityFrameworkCore.SqlServer": "7.0.0-*",
"Microsoft.EntityFrameworkCore.InMemory": "1.0.0-*",
"Microsoft.EntityFrameworkCore.SqlServer": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.Facebook": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.Google": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "0.1.0-*",
"Microsoft.AspNetCore.Authentication.Twitter": "1.0.0-*",
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "7.0.0-*",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "3.0.0-*",
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.0.0-*",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0-*",
"Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*",
"Microsoft.AspNetCore.Mvc": "6.0.0-*",
"Microsoft.AspNetCore.Mvc.TagHelpers": "6.0.0-*",
"Microsoft.AspNetCore.Mvc": "1.0.0-*",
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNetCore.Server.WebListener": "1.0.0-*",
"Microsoft.AspNetCore.Server.WebListener": "0.1.0-*",
"Microsoft.AspNetCore.Session": "1.0.0-*",
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
"Microsoft.AspNetCore.Tooling.Razor": "1.0.0-*",
@ -43,7 +46,7 @@
"web": "MusicStore"
},
"frameworks": {
"dnx451": { },
"dnx451": {},
"dnxcore50": {}
}
}
}

View File

@ -1,28 +1,28 @@
{
"compilationOptions": {
"warningsAsErrors": true
},
"compile": [
"../../shared/**/*.cs"
],
"commands": {
"test": "xunit.runner.aspnet"
},
"dependencies": {
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0-*",
"Microsoft.AspNetCore.Server.Testing": "1.0.0-*",
"Microsoft.AspNetCore.WebUtilities": "1.0.0-*",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"frameworks": {
"dnxcore50": {
"dependencies": {
"System.Data.SqlClient": "4.0.0-*",
"System.Net.Http": "4.0.1-*",
"System.Xml.XmlDocument": "4.0.0-*"
}
}
"compilationOptions": {
"warningsAsErrors": true
},
"compile": [
"../../shared/**/*.cs"
],
"commands": {
"test": "xunit.runner.aspnet"
},
"dependencies": {
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "0.1.0-*",
"Microsoft.AspNetCore.Server.Testing": "1.0.0-*",
"Microsoft.AspNetCore.WebUtilities": "1.0.0-*",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"frameworks": {
"dnxcore50": {
"dependencies": {
"System.Data.SqlClient": "4.0.0-*",
"System.Net.Http": "4.0.1-*",
"System.Xml.XmlDocument": "4.0.0-*"
}
}
}
}