File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed
Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 44
55## [ Unreleased]
66
7+ ### Changed
8+
9+ - Remove upper bound for release version requirement, introduce forward compatibility starting with Rider 2025.1
10+
11+ ### Fixed
12+
13+ - Fix runtime assertions related to default settings configuration
14+
715## [ 1.2.4] - 2025-05-28
816
917### Added
Original file line number Diff line number Diff line change @@ -270,7 +270,6 @@ tasks {
270270 pluginId = properties(" pluginId" ).get()
271271 version = properties(" pluginVersion" ).get()
272272 sinceBuild = properties(" pluginSinceBuild" ).get()
273- untilBuild = properties(" pluginUntilBuild" ).get()
274273
275274 // Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
276275 pluginDescription = providers.fileContents(layout.projectDirectory.file(" README.md" )).asText.map {
Original file line number Diff line number Diff line change @@ -6,19 +6,18 @@ pluginNamespace = MSBuild.DevKit
66dotnetBuildConfiguration = Debug
77pluginRepositoryUrl = https://github.com/seclerp/rider-msbuild-devkit
88# SemVer format -> https://semver.org
9- pluginVersion = 1.2.4
9+ pluginVersion = 1.2.5
1010
1111# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
12- pluginSinceBuild = 252
13- pluginUntilBuild = 252.*
12+ pluginSinceBuild = 251
1413
1514# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1615platformType = RD
1716# Possible values (minor is omitted):
1817# Release: 2020.2
1918# Nightly: 2020.3-SNAPSHOT
2019# EAP: 2020.3-EAP2-SNAPSHOT
21- platformVersion = 2025.2-EAP2-SNAPSHOT
20+ platformVersion = 2025.1
2221
2322# Gradle Releases -> https://github.com/gradle/gradle/releases
2423gradleVersion = 8.13
You can’t perform that action at this time.
0 commit comments