From d61c6985b754406562a73e9c05ea8cd28e4e5485 Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Fri, 22 Jan 2016 12:29:04 -0800 Subject: [PATCH] Update ASP.NET 5 versions for ASP.NET Core. See https://github.com/aspnet/Announcements/issues/144 for more information. --- src/MusicStore/project.json | 25 +++++++++++-------- test/E2ETests/project.json | 50 ++++++++++++++++++------------------- 2 files changed, 39 insertions(+), 36 deletions(-) diff --git a/src/MusicStore/project.json b/src/MusicStore/project.json index 37e1a5ffe3..0da802c089 100644 --- a/src/MusicStore/project.json +++ b/src/MusicStore/project.json @@ -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": {} } -} +} \ No newline at end of file diff --git a/test/E2ETests/project.json b/test/E2ETests/project.json index e4d0c397f1..ae4309546a 100644 --- a/test/E2ETests/project.json +++ b/test/E2ETests/project.json @@ -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-*" + } } + } } \ No newline at end of file