Skip to content

Commit

Permalink
[Updated] Resharper SDK to 2024.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitarCC committed Aug 19, 2024
1 parent 1c41c5f commit 28cdd63
Show file tree
Hide file tree
Showing 11 changed files with 744 additions and 733 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 3.26.2.4
- [Updated] Updated ReSharper SDK to 2024.2.0.

## 3.25.0.0
- [Updated] Updated ReSharper SDK to 2024.1.0.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -473,8 +473,11 @@ private static IEnumerable<ParamContent> GetParams(
var paramNodesList = new LocalList<ParamContent>();
if (typeParamNodes != null) {
foreach (XmlNode paramNode in typeParamNodes) {
if (TryExtractParams(paramNode as XmlElement, languageType, psiModule, settings, highlighterIdProviderFactory, colorizerPresenter, textStyleHighlighterManager, codeAnnotationsConfiguration) is { } typeparam)
if (TryExtractParams(paramNode as XmlElement, languageType, psiModule, settings, highlighterIdProviderFactory, colorizerPresenter,
textStyleHighlighterManager, codeAnnotationsConfiguration) is { } typeparam) {
typeparam.IsTypeParameter = true;
paramNodesList.Add(typeparam);
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
using JetBrains.UI.RichText;
using JetBrains.Util;
using JetBrains.Util.Media;
using JetBrains.Util.NetFX.Media.Colors;
using Microsoft.VisualStudio.Text.Classification;
using Microsoft.VisualStudio.Text.Formatting;
using Color = System.Drawing.Color;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="JetBrains.ReSharper.SDK" Version="2024.1.0" />
<PackageReference Include="JetBrains.ReSharper.SDK" Version="2024.2.0" />
<PackageReference Include="EnvDTE" Version="8.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="15.8.525" />
<PackageReference Include="VSSDK.Editor" Version="11.0.*" />
Expand Down
Loading

0 comments on commit 28cdd63

Please sign in to comment.