Skip to content

Commit

Permalink
[Updated] Resharper SDK to 2023.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitarCC committed Dec 7, 2023
1 parent 0f32a2f commit 5dc00ef
Show file tree
Hide file tree
Showing 11 changed files with 290 additions and 219 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 3.23.2.0
- [Updated] Updated ReSharper SDK to 2023.3.0.

## 3.22.0.0-pre
- [Updated] Updated ReSharper SDK to 2023.3.0-eap01.

## 3.21.1.14
- [Added] Support for external extensions tooltip highlighting.
- [Added] More colorizings over the tooltip
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<UserSecretsId>c45f04a1-d5d4-4d62-a6ab-51724e0ace93</UserSecretsId>
</PropertyGroup>

<ItemGroup>
<Reference Include="System.Windows.Forms" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="JetBrains.ReSharper.SDK" Version="2023.2.0" />
<PackageReference Include="JetBrains.ReSharper.SDK" Version="2023.3.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 All @@ -33,4 +34,19 @@
</PackageReference>
</ItemGroup>

<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
using System;
using System.Collections.Generic;
using JetBrains.ReSharper.Feature.Services.ParameterInfo;
using JetBrains.Util;

namespace GammaJul.ReSharper.EnhancedTooltip.ParameterInfo {

public abstract class EnhancedContext<TCandidate> : IParameterInfoContext
using JetBrains.DocumentModel;

public abstract class EnhancedContext<TCandidate> : IParameterInfoContext
where TCandidate : class, ICandidate {

private readonly IParameterInfoContext _context;
Expand Down Expand Up @@ -63,7 +64,7 @@ public Type ParameterListNodeType
public ICollection<Type> ParameterNodeTypes
=> _context.ParameterNodeTypes;

public TextRange Range
public DocumentRange Range
=> _context.Range;

protected EnhancedContext(IParameterInfoContext context) {
Expand Down
Loading

0 comments on commit 5dc00ef

Please sign in to comment.