Skip to content

Commit 2960d7b

Browse files
committed
Update version + naming
1 parent 094e07b commit 2960d7b

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
DotnetPluginId=ReSharperPlugin.UsingLocator
55
DotnetSolution=ReSharperPlugin.UsingLocator.sln
66
RiderPluginId=com.jetbrains.rider.plugins.usinglocator
7-
PluginVersion=1.0.0
7+
PluginVersion=1.0.1
88

99
BuildConfiguration=Debug
1010

@@ -17,7 +17,7 @@ PublishToken="_PLACEHOLDER_"
1717
# Release: 2020.2
1818
# EAP: 2020.3-EAP2-SNAPSHOT
1919
# Nightly: 2020.3-SNAPSHOT
20-
ProductVersion=2023.1
20+
ProductVersion=2023.2.2
2121

2222
# Kotlin 1.4 will bundle the stdlib dependency by default, causing problems with the version bundled with the IDE
2323
# https://blog.jetbrains.com/kotlin/2020/07/kotlin-1-4-rc-released/#stdlib-default

src/dotnet/Plugin.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<!-- See https://www.nuget.org/packages/JetBrains.ReSharper.SDK -->
55
<!-- Keep in sync with ProductVersion in gradle.properties -->
6-
<SdkVersion>2023.1.0</SdkVersion>
6+
<SdkVersion>2023.2.2</SdkVersion>
77

88
<Title>UsingLocator</Title>
99
<Description>Description</Description>

src/dotnet/ReSharperPlugin.UsingLocator/LocateUsingContextAction.cs renamed to src/dotnet/ReSharperPlugin.UsingLocator/ProceedUsingsInFileContextAction.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ namespace ReSharperPlugin.UsingLocator;
22

33
[ContextAction(
44
Group = CSharpContextActions.GroupID,
5-
Name = nameof(LocateUsingContextAction),
6-
Description = nameof(LocateUsingContextAction),
5+
Name = nameof(ProceedUsingsInFileContextAction),
6+
Description = nameof(ProceedUsingsInFileContextAction),
77
Priority = -10)]
8-
public class LocateUsingContextAction : ContextActionBase
8+
public class ProceedUsingsInFileContextAction : ContextActionBase
99
{
1010
private readonly ICSharpContextActionDataProvider _provider;
1111

12-
public LocateUsingContextAction(ICSharpContextActionDataProvider provider)
12+
public ProceedUsingsInFileContextAction(ICSharpContextActionDataProvider provider)
1313
{
1414
_provider = provider;
1515
}

src/rider/main/resources/META-INF/plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<idea-plugin require-restart="true">
22
<id>me.dench327.plugins.usinglocator</id>
33
<name>UsingLocator</name>
4-
<version>1.0.0</version>
4+
<version>1.0.1</version>
55
<vendor url="https://github.com/DenisSemko/UsingLocator">Denys Semko</vendor>
66
<idea-version since-build="223.0" until-build="233.0" />
77
<depends>com.intellij.modules.rider</depends>
88

99
<description>
1010
<![CDATA[
11-
<p>UsingLocator is a powerful Rider plugin designed to streamline the management of C# using directives within your codebase.</p>
11+
<p>UsingLocator is a powerful Rider plugin designed to streamline the management of C# using directives within your codebase.</p><br/>
1212
<p>
1313
<strong>Features</strong>
1414
<ul>

0 commit comments

Comments
 (0)