From e0aa2787ce60aa7a86e499552631c995808342ce Mon Sep 17 00:00:00 2001 From: Pranav K Date: Thu, 13 Oct 2016 11:20:25 -0700 Subject: [PATCH] Updating to netcoreapp1.1 --- samples/MusicStore.Standalone/project.json | 2 +- samples/MusicStore/project.json | 2 +- test/E2ETests/NtlmAuthentationTest.cs | 2 +- test/E2ETests/OpenIdConnectTests.cs | 2 +- test/E2ETests/PublishAndRunTests.cs | 2 +- test/E2ETests/SmokeTests.cs | 2 +- test/E2ETests/SmokeTestsOnNanoServer.cs | 4 ++-- test/E2ETests/project.json | 2 +- test/MusicStore.Test/project.json | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/samples/MusicStore.Standalone/project.json b/samples/MusicStore.Standalone/project.json index ee6b3bffec..558f93ccd8 100644 --- a/samples/MusicStore.Standalone/project.json +++ b/samples/MusicStore.Standalone/project.json @@ -69,7 +69,7 @@ "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0-*" }, "frameworks": { - "netcoreapp1.0": { + "netcoreapp1.1": { "dependencies": { "Microsoft.NETCore.App": { "version": "1.1.0-*" diff --git a/samples/MusicStore/project.json b/samples/MusicStore/project.json index de4163a904..a84b46af61 100644 --- a/samples/MusicStore/project.json +++ b/samples/MusicStore/project.json @@ -59,7 +59,7 @@ }, "frameworks": { "net451": {}, - "netcoreapp1.0": { + "netcoreapp1.1": { "dependencies": { "Microsoft.NETCore.App": { "version": "1.1.0-*", diff --git a/test/E2ETests/NtlmAuthentationTest.cs b/test/E2ETests/NtlmAuthentationTest.cs index dab62b71f7..48c22ef45b 100644 --- a/test/E2ETests/NtlmAuthentationTest.cs +++ b/test/E2ETests/NtlmAuthentationTest.cs @@ -39,7 +39,7 @@ namespace E2ETests { PublishApplicationBeforeDeployment = true, PreservePublishedApplicationForDebugging = Helpers.PreservePublishedApplicationForDebugging, - TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0", + TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.1", Configuration = Helpers.GetCurrentBuildConfiguration(), ApplicationType = applicationType, ApplicationBaseUriHint = applicationBaseUrl, diff --git a/test/E2ETests/OpenIdConnectTests.cs b/test/E2ETests/OpenIdConnectTests.cs index ede89511e1..b5e9e19b34 100644 --- a/test/E2ETests/OpenIdConnectTests.cs +++ b/test/E2ETests/OpenIdConnectTests.cs @@ -67,7 +67,7 @@ namespace E2ETests { PublishApplicationBeforeDeployment = true, PreservePublishedApplicationForDebugging = Helpers.PreservePublishedApplicationForDebugging, - TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0", + TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.1", Configuration = Helpers.GetCurrentBuildConfiguration(), ApplicationType = applicationType, ApplicationBaseUriHint = applicationBaseUrl, diff --git a/test/E2ETests/PublishAndRunTests.cs b/test/E2ETests/PublishAndRunTests.cs index 982b87d83a..ce4204483f 100644 --- a/test/E2ETests/PublishAndRunTests.cs +++ b/test/E2ETests/PublishAndRunTests.cs @@ -149,7 +149,7 @@ namespace E2ETests ApplicationBaseUriHint = applicationBaseUrl, PublishApplicationBeforeDeployment = true, PreservePublishedApplicationForDebugging = Helpers.PreservePublishedApplicationForDebugging, - TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0", + TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.1", Configuration = Helpers.GetCurrentBuildConfiguration(), ApplicationType = applicationType, UserAdditionalCleanup = parameters => diff --git a/test/E2ETests/SmokeTests.cs b/test/E2ETests/SmokeTests.cs index 85f28f9b60..21170f6cf9 100644 --- a/test/E2ETests/SmokeTests.cs +++ b/test/E2ETests/SmokeTests.cs @@ -183,7 +183,7 @@ namespace E2ETests SiteName = "MusicStoreTestSite", PublishApplicationBeforeDeployment = true, PreservePublishedApplicationForDebugging = Helpers.PreservePublishedApplicationForDebugging, - TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0", + TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.1", Configuration = Helpers.GetCurrentBuildConfiguration(), ApplicationType = applicationType, UserAdditionalCleanup = parameters => diff --git a/test/E2ETests/SmokeTestsOnNanoServer.cs b/test/E2ETests/SmokeTestsOnNanoServer.cs index 3d3e48f1ee..49027c66ea 100644 --- a/test/E2ETests/SmokeTestsOnNanoServer.cs +++ b/test/E2ETests/SmokeTestsOnNanoServer.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.IO.Compression; @@ -259,7 +259,7 @@ namespace E2ETests _remoteDeploymentConfig.AccountName, _remoteDeploymentConfig.AccountPassword) { - TargetFramework = "netcoreapp1.0", + TargetFramework = "netcoreapp1.1", ApplicationBaseUriHint = applicationBaseUrl, ApplicationType = applicationType }; diff --git a/test/E2ETests/project.json b/test/E2ETests/project.json index 2dd83618a6..865dbbbb50 100644 --- a/test/E2ETests/project.json +++ b/test/E2ETests/project.json @@ -24,7 +24,7 @@ "xunit": "2.2.0-*" }, "frameworks": { - "netcoreapp1.0": {} + "netcoreapp1.1": {} }, "tools": { "Microsoft.Extensions.SecretManager.Tools": "1.0.0-*" diff --git a/test/MusicStore.Test/project.json b/test/MusicStore.Test/project.json index 2da310551f..1c11c5f75f 100644 --- a/test/MusicStore.Test/project.json +++ b/test/MusicStore.Test/project.json @@ -10,7 +10,7 @@ "xunit": "2.2.0-*" }, "frameworks": { - "netcoreapp1.0": { + "netcoreapp1.1": { "dependencies": { "Microsoft.NETCore.App": { "version": "1.1.0-*",