From c402f28de51e129a6e349f27a481c6baa9289b0b Mon Sep 17 00:00:00 2001 From: filipw Date: Thu, 29 Apr 2021 13:25:33 +0200 Subject: [PATCH 1/2] updated to stable IL Spy --- build/Packages.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Packages.props b/build/Packages.props index 1763397560..fc9323f051 100644 --- a/build/Packages.props +++ b/build/Packages.props @@ -15,7 +15,7 @@ - + From 541c92c85d020fd51eea5e4c5a84a194f0255d0d Mon Sep 17 00:00:00 2001 From: filipw Date: Thu, 29 Apr 2021 13:49:45 +0200 Subject: [PATCH 2/2] fixed test --- tests/OmniSharp.Roslyn.CSharp.Tests/GoToDefinitionFacts.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/OmniSharp.Roslyn.CSharp.Tests/GoToDefinitionFacts.cs b/tests/OmniSharp.Roslyn.CSharp.Tests/GoToDefinitionFacts.cs index 9dc2c38c98..4dd1cc6ccf 100644 --- a/tests/OmniSharp.Roslyn.CSharp.Tests/GoToDefinitionFacts.cs +++ b/tests/OmniSharp.Roslyn.CSharp.Tests/GoToDefinitionFacts.cs @@ -483,7 +483,7 @@ class Bar { // second comment should indicate we have decompiled var comments = compilationUnit.DescendantTrivia().Where(t => t.Kind() == SyntaxKind.SingleLineCommentTrivia).ToArray(); Assert.NotNull(comments); - Assert.Equal("// Decompiled with ICSharpCode.Decompiler 7.0.0.6372", comments[1].ToString()); + Assert.Equal("// Decompiled with ICSharpCode.Decompiler 7.0.0.6488", comments[1].ToString()); // contrary to regular metadata, we should have methods with full bodies // this condition would fail if decompilation wouldn't work