Skip to content

Commit 938e378

Browse files
authored
Merge pull request #423 from khdc/rider-2023.1
Update to support Rider 2023.1
2 parents 030f3ec + b4080b9 commit 938e378

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

src/XamlStyler.Extension.Rider/build.gradle

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ plugins {
66

77
// RIDER: May need updating with new Rider releases
88
id 'org.jetbrains.kotlin.jvm' version '1.7.22'
9-
id 'com.jetbrains.rdgen' version '2023.1.0'
9+
id 'com.jetbrains.rdgen' version '2023.2.0'
1010

1111
// RIDER: Will probably need updating with new Rider releases, use latest version number from https://github.com/JetBrains/gradle-intellij-plugin/releases
12-
id 'org.jetbrains.intellij' version '1.10.1'
12+
id 'org.jetbrains.intellij' version '1.13.3'
1313
}
1414

1515
ext {
@@ -124,14 +124,6 @@ rdgen {
124124
}
125125
}
126126

127-
// Plugin workaround untill 2022.3.1 comes output
128-
// https://youtrack.jetbrains.com/issue/RIDER-86051
129-
// Rider: To be removed when updating newer rider targets
130-
patchPluginXml {
131-
sinceBuild = '223.7571'
132-
untilBuild = '223.*'
133-
}
134-
135127
patchPluginXml {
136128
def changelogText = file("${rootDir}/CHANGELOG.md").text
137129
def changelogMatches = changelogText =~ /(?s)(-.+?)(?=##|$)/

src/XamlStyler.Extension.Rider/dotnet/Plugin.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<!-- RIDER: To be updated with new Rider release -->
4-
<SdkVersion>2022.3.0</SdkVersion>
4+
<SdkVersion>2023.1.0</SdkVersion>
55

66
<Title>XAML Styler</Title>
77
<Description>XAML Styler is an extension that formats XAML source code based on a set of styling rules. This tool can help you/your team maintain a better XAML coding style as well as a much better XAML readability.</Description>

src/XamlStyler.Extension.Rider/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ BuildConfiguration=Release
1818
# 2021.2 (stable versions)
1919
#
2020
# RIDER: To be updated with new Rider release
21-
ProductVersion=2022.3-SNAPSHOT
21+
ProductVersion=2023.1

0 commit comments

Comments
 (0)