From af158582d77fc715e42a8feb00be07325b1c9e96 Mon Sep 17 00:00:00 2001 From: Fredric Silberberg Date: Thu, 23 Jul 2020 19:00:35 -0700 Subject: [PATCH] Updated .NET SDK. --- .pipelines/init.yml | 2 +- azure-pipelines.yml | 2 +- build.json | 2 +- global.json | 2 +- test-assets/test-projects/global.json | 2 +- tests/OmniSharp.MSBuild.Tests/ProjectLoadListenerTests.cs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.pipelines/init.yml b/.pipelines/init.yml index 18ea38537b..56b43d7843 100644 --- a/.pipelines/init.yml +++ b/.pipelines/init.yml @@ -1,7 +1,7 @@ parameters: # Configuration: Release Verbosity: Normal - DotNetVersion: "3.1.201" + DotNetVersion: "3.1.302" CakeVersion: "0.32.1" NuGetVersion: "4.9.2" steps: diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3405336a87..f06fe4f0ae 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -22,7 +22,7 @@ resources: variables: Verbosity: Diagnostic - DotNetVersion: "3.1.201" + DotNetVersion: "3.1.302" CakeVersion: "0.32.1" NuGetVersion: "4.9.2" GitVersionVersion: "5.0.1" diff --git a/build.json b/build.json index 69eece7ac1..d5a5937666 100644 --- a/build.json +++ b/build.json @@ -2,7 +2,7 @@ "DotNetInstallScriptURL": "https://dot.net/v1", "DotNetChannel": "Preview", "DotNetVersions": [ - "3.1.201", + "3.1.302", "5.0.100-preview.7.20366.6" ], "RequiredMonoVersion": "6.6.0", diff --git a/global.json b/global.json index 4f07b54704..fcfbc1acf6 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "3.1.201" + "version": "3.1.302" } } diff --git a/test-assets/test-projects/global.json b/test-assets/test-projects/global.json index 4f07b54704..fcfbc1acf6 100644 --- a/test-assets/test-projects/global.json +++ b/test-assets/test-projects/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "3.1.201" + "version": "3.1.302" } } diff --git a/tests/OmniSharp.MSBuild.Tests/ProjectLoadListenerTests.cs b/tests/OmniSharp.MSBuild.Tests/ProjectLoadListenerTests.cs index b6961521da..74460e8e91 100644 --- a/tests/OmniSharp.MSBuild.Tests/ProjectLoadListenerTests.cs +++ b/tests/OmniSharp.MSBuild.Tests/ProjectLoadListenerTests.cs @@ -224,7 +224,7 @@ public async Task The_correct_sdk_version_is_emitted() using (var host = CreateMSBuildTestHost(testProject.Directory, emitter.AsExportDescriptionProvider(LoggerFactory))) { Assert.Single(emitter.ReceivedMessages); - Assert.Equal(GetHashedFileExtension("3.1.201"), emitter.ReceivedMessages[0].SdkVersion); + Assert.Equal(GetHashedFileExtension("3.1.302"), emitter.ReceivedMessages[0].SdkVersion); } }