Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
seclerp committed Sep 22, 2024
1 parent 82ad00b commit 665ec97
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ tasks {

val directoryPackagesFileContents = buildString {
appendLine("""
<!-- Auto-generated from 'generateSdkPackagesVersionsLock' task of old.build_gradle.kts -->
<!-- Auto-generated from 'generateSdkPackagesVersionsLock' task of build_gradle.kts -->
<!-- Run `gradlew :prepare` to regenerate -->
<Project>
<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ dotnetPluginId=Rider.Plugins.MonoGame
riderPluginId=me.seclerp.rider.plugins.monogame
pluginVersion=242.0.0-eap03

rdVersion=2024.1.1
rdVersion=2024.3.0
rdKotlinVersion=1.9.23
intellijPlatformGradleVersion=2.0.0-beta7
intellijPlatformGradleVersion=2.0.1
gradleJvmWrapperVersion=0.14.0

buildConfiguration=Debug
Expand All @@ -20,7 +20,7 @@ publishChannel=default
# Release: 2020.2
# Nightly: 2020.3-SNAPSHOT
# EAP: 2020.3-EAP2-SNAPSHOT
productVersion=2024.2-EAP3-SNAPSHOT
productVersion=2024.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
4 changes: 3 additions & 1 deletion src/dotnet/Rider.Plugins.MonoGame/IMonoGameRiderZone.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using JetBrains.Application.BuildScript.Application.Zones;
using JetBrains.ProjectModel.NuGet;
using JetBrains.ReSharper.Feature.Services.Daemon;
using JetBrains.ReSharper.Psi;
using JetBrains.ReSharper.Psi.CSharp;
Expand All @@ -9,6 +10,7 @@ namespace Rider.Plugins.MonoGame;
// [ZoneDefinitionConfigurableFeature("Title", "Description", IsInProductSection: false)]
public interface IMonoGameRiderZone : IPsiLanguageZone,
IRequire<ILanguageCSharpZone>,
IRequire<DaemonZone>
IRequire<DaemonZone>,
IRequire<INuGetZone>
{
}

0 comments on commit 665ec97

Please sign in to comment.