diff --git a/Directory.Build.props b/Directory.Build.props index 2e796e23c4..b14d03cc84 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,4 +1,8 @@  + + diff --git a/build/dependencies.props b/build/dependencies.props index e6f1b1f429..f158eed45e 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -5,19 +5,19 @@ 2.1.0-preview1-15550 1.0.0-pre-10141 - 2.1.0-preview1-27498 - 2.1.0-preview1-27498 - 2.1.0-preview1-27498 - 2.1.0-preview1-27498 - 0.5.0-preview1-27498 - 2.1.0-preview1-27498 - 2.1.0-preview1-27498 - 2.1.0-preview1-27498 - 2.1.0-preview1-27498 - 2.1.0-preview1-27498 - 2.1.0-preview1-27498 - 2.1.0-preview1-27498 - 2.1.0-preview1-27498 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 0.5.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 2.0.0 15.3.0 4.4.0 diff --git a/korebuild-lock.txt b/korebuild-lock.txt index 36d8056037..b2036f3394 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:2.1.0-preview1-15550 -commithash:0dd080d0d87b4d1966ec0af9961dc8bacc04f84f +version:2.1.0-preview1-15569 +commithash:47312a6364ad0ee6d7052eada54da940c9b17931 diff --git a/samples/EchoApp/EchoApp.csproj b/samples/EchoApp/EchoApp.csproj index 628bac1d74..f5696ccf03 100644 --- a/samples/EchoApp/EchoApp.csproj +++ b/samples/EchoApp/EchoApp.csproj @@ -1,7 +1,7 @@  - netcoreapp2.0;net461 + netcoreapp2.1;net461 diff --git a/test/AutobahnTestApp/AutobahnTestApp.csproj b/test/AutobahnTestApp/AutobahnTestApp.csproj index 29bda6ab83..cd973145bb 100644 --- a/test/AutobahnTestApp/AutobahnTestApp.csproj +++ b/test/AutobahnTestApp/AutobahnTestApp.csproj @@ -1,7 +1,8 @@  - netcoreapp2.0 + netcoreapp2.1 + $(TargetFrameworks);netcoreapp2.0 diff --git a/test/Directory.Build.props b/test/Directory.Build.props index 1e0980f663..270e1fa209 100644 --- a/test/Directory.Build.props +++ b/test/Directory.Build.props @@ -1,6 +1,13 @@  + + netcoreapp2.1 + $(DeveloperBuildTestTfms) + netcoreapp2.1;netcoreapp2.0 + $(StandardTestTfms);net461 + + diff --git a/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Autobahn/AutobahnTester.cs b/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Autobahn/AutobahnTester.cs index 18b3dd49a5..c9e6007cb2 100644 --- a/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Autobahn/AutobahnTester.cs +++ b/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Autobahn/AutobahnTester.cs @@ -134,11 +134,19 @@ namespace Microsoft.AspNetCore.WebSockets.ConformanceTest.Autobahn var appPath = Helpers.GetApplicationPath("AutobahnTestApp"); var configPath = Path.Combine(Directory.GetCurrentDirectory(), "..", "..", "..", "Http.config"); + var targetFramework = +#if NETCOREAPP2_1 + "netcoreapp2.1"; +#elif NETCOREAPP2_0 + "netcoreapp2.0"; +#else +#error Target frameworks need to be updated +#endif var parameters = new DeploymentParameters(appPath, server, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64) { ApplicationBaseUriHint = baseUrl, ApplicationType = ApplicationType.Portable, - TargetFramework = "netcoreapp2.0", + TargetFramework = targetFramework, EnvironmentName = environment, SiteName = "HttpTestSite", // This is configured in the Http.config ServerConfigTemplateContent = (server == ServerType.IISExpress) ? File.ReadAllText(configPath) : null, diff --git a/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Microsoft.AspNetCore.WebSockets.ConformanceTest.csproj b/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Microsoft.AspNetCore.WebSockets.ConformanceTest.csproj index f017f57f30..79e3839b12 100644 --- a/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Microsoft.AspNetCore.WebSockets.ConformanceTest.csproj +++ b/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Microsoft.AspNetCore.WebSockets.ConformanceTest.csproj @@ -1,7 +1,8 @@  - netcoreapp2.0 + netcoreapp2.1 + $(TargetFrameworks);netcoreapp2.0 diff --git a/test/Microsoft.AspNetCore.WebSockets.Test/Microsoft.AspNetCore.WebSockets.Test.csproj b/test/Microsoft.AspNetCore.WebSockets.Test/Microsoft.AspNetCore.WebSockets.Test.csproj index 0e83b6ad49..c85c41eb0e 100644 --- a/test/Microsoft.AspNetCore.WebSockets.Test/Microsoft.AspNetCore.WebSockets.Test.csproj +++ b/test/Microsoft.AspNetCore.WebSockets.Test/Microsoft.AspNetCore.WebSockets.Test.csproj @@ -1,14 +1,7 @@  - netcoreapp2.0;net461 - netcoreapp2.0 - - - exe + $(StandardTestTfms) diff --git a/test/Microsoft.AspNetCore.WebSockets.Test/Program.cs b/test/Microsoft.AspNetCore.WebSockets.Test/Program.cs index 5d248f9642..7f9f5d0035 100644 --- a/test/Microsoft.AspNetCore.WebSockets.Test/Program.cs +++ b/test/Microsoft.AspNetCore.WebSockets.Test/Program.cs @@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.WebSockets.Test } } } -#elif NETCOREAPP2_0 +#elif NETCOREAPP2_0 || NETCOREAPP2_1 #else #error Target frameworks need to be updated #endif