Skip to content

Commit

Permalink
Merge pull request #2142 from OmniSharp/feature/ilyspy-stable
Browse files Browse the repository at this point in the history
Updated IL Spy to 7.0.0 stable
  • Loading branch information
filipw committed Apr 30, 2021
2 parents 6011913 + 541c92c commit 2295073
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/Packages.props
Expand Up @@ -15,7 +15,7 @@

<PackageReference Update="Dotnet.Script.DependencyModel" Version="1.0.2" />
<PackageReference Update="Dotnet.Script.DependencyModel.NuGet" Version="1.0.1" />
<PackageReference Update="ICSharpCode.Decompiler" Version="7.0.0.6372-preview3" />
<PackageReference Update="ICSharpCode.Decompiler" Version="7.0.0.6488" />
<PackageReference Update="McMaster.Extensions.CommandLineUtils" Version="2.2.4" />

<PackageReference Update="Microsoft.AspNetCore.Diagnostics" Version="$(AspNetCorePackageVersion)" />
Expand Down
2 changes: 1 addition & 1 deletion tests/OmniSharp.Roslyn.CSharp.Tests/GoToDefinitionFacts.cs
Expand Up @@ -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
Expand Down

0 comments on commit 2295073

Please sign in to comment.