From d431e505c55ca0d043fcb06c8b8f6501b8f50d84 Mon Sep 17 00:00:00 2001 From: filipw Date: Tue, 7 Jul 2020 15:04:13 +0200 Subject: [PATCH 1/3] updated to Roslyn 3.8.0 --- build/Packages.props | 2 +- src/OmniSharp.Abstractions/Configuration.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Packages.props b/build/Packages.props index 8c92b72f45..a22c435e43 100644 --- a/build/Packages.props +++ b/build/Packages.props @@ -5,7 +5,7 @@ 16.5.0 5.2.0 - 3.7.0-4.20311.4 + 3.8.0-1.20357.3 2.4.0 diff --git a/src/OmniSharp.Abstractions/Configuration.cs b/src/OmniSharp.Abstractions/Configuration.cs index c56a7fffa3..b4af800244 100644 --- a/src/OmniSharp.Abstractions/Configuration.cs +++ b/src/OmniSharp.Abstractions/Configuration.cs @@ -4,7 +4,7 @@ internal static class Configuration { public static bool ZeroBasedIndices = false; - public const string RoslynVersion = "3.7.0.0"; + public const string RoslynVersion = "3.8.0.0"; public const string RoslynPublicKeyToken = "31bf3856ad364e35"; public readonly static string RoslynFeatures = GetRoslynAssemblyFullName("Microsoft.CodeAnalysis.Features"); From e1f65218a94019d6488109183d931a5c4fc2d2fb Mon Sep 17 00:00:00 2001 From: filipw Date: Tue, 7 Jul 2020 15:04:26 +0200 Subject: [PATCH 2/3] updated binding redirects --- src/OmniSharp.Http.Driver/app.config | 6 +++--- src/OmniSharp.Stdio.Driver/app.config | 6 +++--- tests/app.config | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/OmniSharp.Http.Driver/app.config b/src/OmniSharp.Http.Driver/app.config index c05782a564..63a6e9cecc 100644 --- a/src/OmniSharp.Http.Driver/app.config +++ b/src/OmniSharp.Http.Driver/app.config @@ -7,15 +7,15 @@ - + - + - + diff --git a/src/OmniSharp.Stdio.Driver/app.config b/src/OmniSharp.Stdio.Driver/app.config index c05782a564..63a6e9cecc 100644 --- a/src/OmniSharp.Stdio.Driver/app.config +++ b/src/OmniSharp.Stdio.Driver/app.config @@ -7,15 +7,15 @@ - + - + - + diff --git a/tests/app.config b/tests/app.config index bad493b48d..03d8a1d190 100644 --- a/tests/app.config +++ b/tests/app.config @@ -7,15 +7,15 @@ - + - + - + From 07102a81cf52c8c536be0b5073b542fd0a4c8145 Mon Sep 17 00:00:00 2001 From: filipw Date: Tue, 7 Jul 2020 16:41:05 +0200 Subject: [PATCH 3/3] changelog update --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ced2ed00db..675a11d1e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ All changes to the project will be documented in this file. ## [1.35.4] - Not yet released +* Update to Roslyn `3.8.0-1.20357.3` (PR: [#1849](https://github.com/OmniSharp/omnisharp-roslyn/pull/1849)) * Added LSP handler for the `workspace/symbol` request. (PR: [#1799](https://github.com/OmniSharp/omnisharp-roslyn/pull/1799)) * Use global MSBuild property when resetting target framework ([#1738](https://github.com/OmniSharp/omnisharp-roslyn/issues/1738), PR: [#1846](https://github.com/OmniSharp/omnisharp-roslyn/pull/1846)) * Do not use Visual Studio MSBuild if it doesn't have .NET SDK resolver ([#1842](https://github.com/OmniSharp/omnisharp-roslyn/issues/1842), [#1730](https://github.com/OmniSharp/omnisharp-roslyn/issues/1730), PR: [#1845](https://github.com/OmniSharp/omnisharp-roslyn/pull/1845))