Skip to content

Commit 0eda02b

Browse files
authored
Fix an issue with the project template not being there due to the plugin being built on Linux (#80)
1 parent cd2ae9d commit 0eda02b

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 2025.1.3
4+
* Fix the missing project templates
5+
36
## 2025.1.2
47
* Implement the Debug Run Configuration on Linux
58

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@ dependencies {
167167
jetbrainsRuntime()
168168

169169
bundledPlugin("com.intellij.resharper.unity")
170+
171+
if (ProductVersion.contains("2025.2")) {
172+
bundledModule("intellij.spellchecker")
173+
}
170174
}
171175
}
172176

@@ -212,7 +216,7 @@ tasks.prepareSandbox {
212216
from(file, { into("${rootProject.name}/dotnet") })
213217
})
214218

215-
from("${rootDir}/src/dotnet/${DotnetPluginId}/projectTemplates", { into("${rootProject.name}/projectTemplates") })
219+
from("${rootDir}/src/dotnet/${DotnetPluginId}/ProjectTemplates", { into("${rootProject.name}/ProjectTemplates") })
216220

217221
doLast {
218222
dllFiles.forEach({ f ->

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
DotnetPluginId=ReSharperPlugin.RimworldDev
55
DotnetSolution=ReSharperPlugin.RimworldDev.sln
66
RiderPluginId=com.jetbrains.rider.plugins.rimworlddev
7-
PluginVersion=2025.1.2
7+
PluginVersion=2025.1.3
88

99
BuildConfiguration=Release
1010

0 commit comments

Comments
 (0)