diff --git a/docs/input/docs/integrations/editors/rider/intellisense.md b/docs/input/docs/integrations/editors/rider/intellisense.md index d6cf91ef..cb22310e 100644 --- a/docs/input/docs/integrations/editors/rider/intellisense.md +++ b/docs/input/docs/integrations/editors/rider/intellisense.md @@ -10,8 +10,6 @@ To enable IntelliSense support in Rider follow these steps:
@@ -25,14 +23,4 @@ To enable IntelliSense support in Rider follow these steps: Cake Frosting projects have all features of a .NET Console application, including IntelliSense.

-
-

- There is currently no support for Intellisense in .cake script files within Rider. -

-
-
-

- There is currently no support for Intellisense in .cake script files within Rider. -

-
\ No newline at end of file diff --git a/docs/input/docs/integrations/editors/rider/run-configurations.md b/docs/input/docs/integrations/editors/rider/run-configurations.md index bf41059f..dce334d0 100644 --- a/docs/input/docs/integrations/editors/rider/run-configurations.md +++ b/docs/input/docs/integrations/editors/rider/run-configurations.md @@ -18,8 +18,6 @@ In order to use the run configurations you must have Cake installed on your mach
@@ -37,32 +35,6 @@ In order to use the run configurations you must have Cake installed on your mach There is currently no support for run configurations for Cake Frosting.

-
-

- Install Cake using any of the following options: -

- -
-
-

- There is currently no support for task runner for Cake runner for .NET Core. -

-
## Supported runners @@ -71,13 +43,9 @@ In order to use the run configurations you must have Cake installed on your mach |----------------------------------|-------------------------------------------------|----------------------------------------------------| | [Cake .NET Tool] | | | | [Cake Frosting] | | | -| [Cake runner for .NET Framework] | | | -| [Cake runner for .NET Core] | | | [Cake .NET Tool]: dotnet-tool [Cake Frosting]: cake-frosting -[Cake runner for .NET Framework]: cake-runner-for-dotnet-framework -[Cake runner for .NET Core]: cake-runner-for-dotnet-core ## Settings diff --git a/src/rider/build.gradle.kts b/src/rider/build.gradle.kts index ed7d2f15..48e700f6 100644 --- a/src/rider/build.gradle.kts +++ b/src/rider/build.gradle.kts @@ -23,13 +23,13 @@ plugins { // do NOT update kotlin - kotlin version must match platform version, see https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library id("org.jetbrains.kotlin.jvm") version "1.4.32" // gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin - id("org.jetbrains.intellij") version "1.3.0" + id("org.jetbrains.intellij") version "1.3.1" // gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin id("org.jetbrains.changelog") version "1.3.1" // detekt linter - read more: https://detekt.github.io/detekt/gradle.html id("io.gitlab.arturbosch.detekt") version "1.19.0" // ktlint linter - read more: https://github.com/JLLeitschuh/ktlint-gradle - id("org.jlleitschuh.gradle.ktlint") version "10.2.0" + id("org.jlleitschuh.gradle.ktlint") version "10.2.1" // grammarkit to generate parser & lexer (i.e. the bnf and the flex file...) id("org.jetbrains.grammarkit") version "2021.2.1" } diff --git a/src/rider/gradle.properties b/src/rider/gradle.properties index 5380e060..117f1e42 100644 --- a/src/rider/gradle.properties +++ b/src/rider/gradle.properties @@ -5,14 +5,14 @@ pluginGroup = net.cakebuild pluginName = cake-rider pluginVersion = 0.1.0-alpha.1 pluginSinceBuild = 212 -pluginUntilBuild = 213.* +pluginUntilBuild = 221.* # Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl # See https://jb.gg/intellij-platform-builds-list for available build versions. # or https://data.services.jetbrains.com/products?fields=name,releases.downloads,releases.version,releases.build,releases.type&code=RD -pluginVerifierIdeVersions = RD-2021.2.1,RD-2021.3-EAP3 +pluginVerifierIdeVersions = RD-2021.2.3,RD-2021.3.2,RD-2022.1-EAP1 platformType = RD -platformVersion = 2021.2.1 +platformVersion = 2021.2.3 platformDownloadSources = true # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22