Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to the version 2023.2.2 #7

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
DotnetPluginId=ReSharperPlugin.GuidGenerator
DotnetSolution=ReSharperPlugin.GuidGenerator.sln
RiderPluginId=com.jetbrains.rider.plugins.guidgenerator
PluginVersion=1.0.0
PluginVersion=1.0.1

BuildConfiguration=Debug

Expand All @@ -17,7 +17,7 @@ PublishToken="_PLACEHOLDER_"
# Release: 2020.2
# EAP: 2020.3-EAP2-SNAPSHOT
# Nightly: 2020.3-SNAPSHOT
ProductVersion=2023.1
ProductVersion=2023.2.2

# Kotlin 1.4 will bundle the stdlib dependency by default, causing problems with the version bundled with the IDE
# https://blog.jetbrains.com/kotlin/2020/07/kotlin-1-4-rc-released/#stdlib-default
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/Plugin.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<!-- See https://www.nuget.org/packages/JetBrains.ReSharper.SDK -->
<!-- Keep in sync with ProductVersion in gradle.properties -->
<SdkVersion>2023.1.0</SdkVersion>
<SdkVersion>2023.2.2</SdkVersion>

<Title>Guid Generator</Title>
<Description>It's a plugin to generate guid in a comfortable way</Description>
Expand Down
14 changes: 12 additions & 2 deletions src/rider/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
<idea-plugin require-restart="true">
<id>me.dench327.plugins.guidgenerator</id>
<name>GuidGenerator</name>
<version>1.0.0</version>
<version>1.0.1</version>
<vendor url="https://github.com/DenisSemko/GuidGenerator">Denys Semko</vendor>
<idea-version since-build="223.0" until-build="233.0" />
<depends>com.intellij.modules.rider</depends>

<description>
<![CDATA[
<p>It's a plugin to generate immediately Guid inside .NET project using Rider</p>
<p>It's a plugin to generate immediately Guid inside .NET project using Rider</p><br/>
<p>
<strong>Features</strong>
<ul>
<li>Generate a New Guid Instance</li>
<li>Generate a Lower-Case Guid string</li>
<li>Generate an Upper-Case Guid string</li>
<li>Generate a Lower-Case Guid Instance</li>
<li>Generate an Upper-Case Guid Instance</li>
</ul>
</p>
]]>
</description>

Expand Down