Skip to content

Commit 0171e33

Browse files
committed
Fix issue with 2024.1 Rider SDK resolution
1 parent 8d611e8 commit 0171e33

File tree

5 files changed

+37
-3
lines changed

5 files changed

+37
-3
lines changed

.run/Run Build.run.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Run Build" type="GradleRunConfiguration" factoryName="Gradle">
3+
<ExternalSystemSettings>
4+
<option name="executionName" />
5+
<option name="externalProjectPath" value="$PROJECT_DIR$" />
6+
<option name="externalSystemIdString" value="GRADLE" />
7+
<option name="scriptParameters" value="" />
8+
<option name="taskDescriptions">
9+
<list />
10+
</option>
11+
<option name="taskNames">
12+
<list>
13+
<option value="buildPlugin" />
14+
</list>
15+
</option>
16+
<option name="vmOptions" />
17+
</ExternalSystemSettings>
18+
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
19+
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
20+
<DebugAllEnabled>false</DebugAllEnabled>
21+
<RunAsTest>false</RunAsTest>
22+
<method v="2" />
23+
</configuration>
24+
</component>

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
## [Unreleased]
66

7+
### Added
8+
9+
- Support for Rider 2024.1 RC1
10+
711
## [1.1.0] - 2024-03-18
812

913
### Added

build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,12 @@ tasks {
272272
}
273273
}
274274

275+
runIde {
276+
// For statistics:
277+
// jvmArgs("-Xmx1500m", "-Didea.is.internal=true", "-Dfus.internal.test.mode=true")
278+
jvmArgs("-Xmx1500m")
279+
}
280+
275281
test {
276282
useTestNG()
277283
testLogging {

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pluginNamespace = MSBuild.DevKit
66
dotnetBuildConfiguration = Debug
77
pluginRepositoryUrl = https://github.com/seclerp/rider-msbuild-devkit
88
# SemVer format -> https://semver.org
9-
pluginVersion = 1.1.0
9+
pluginVersion = 1.1.1
1010

1111
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1212
pluginSinceBuild = 241
@@ -18,7 +18,7 @@ platformType = RD
1818
# Release: 2020.2
1919
# Nightly: 2020.3-SNAPSHOT
2020
# EAP: 2020.3-EAP2-SNAPSHOT
21-
platformVersion = 2024.1-EAP9-SNAPSHOT
21+
platformVersion = 2024.1-RC1-SNAPSHOT
2222

2323
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
2424
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ annotations = "24.0.1"
55
# plugins
66
kotlin = "1.9.23"
77
changelog = "2.2.0"
8-
gradleIntelliJPlugin = "1.17.2"
8+
gradleIntelliJPlugin = "1.17.3"
99
qodana = "0.1.13"
1010
kover = "0.7.3"
1111

0 commit comments

Comments
 (0)