Skip to content

Commit

Permalink
Merge pull request #226 from nils-a/release/3.1.0
Browse files Browse the repository at this point in the history
Release/3.1.0
  • Loading branch information
nils-a authored Feb 2, 2022
2 parents 9821f69 + 3a1467a commit 0ffcccb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 49 deletions.
12 changes: 0 additions & 12 deletions docs/input/docs/integrations/editors/rider/intellisense.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ To enable IntelliSense support in Rider follow these steps:
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tool2">Cake .NET Tool</a></li>
<li><a data-toggle="tab" href="#frosting2">Cake Frosting</a></li>
<li><a data-toggle="tab" href="#netfx2">Cake runner for .NET Framework</a></li>
<li><a data-toggle="tab" href="#core2">Cake runner for .NET Core</a></li>
</ul>

<div class="tab-content">
Expand All @@ -25,14 +23,4 @@ To enable IntelliSense support in Rider follow these steps:
<a href="/docs/running-builds/runners/cake-frosting">Cake Frosting</a> projects have all features of a .NET Console application, including IntelliSense.
</p>
</div>
<div id="netfx2" class="tab-pane fade">
<p>
There is currently no support for Intellisense in <code>.cake</code> script files within Rider.
</p>
</div>
<div id="core2" class="tab-pane fade">
<p>
There is currently no support for Intellisense in <code>.cake</code> script files within Rider.
</p>
</div>
</div>
32 changes: 0 additions & 32 deletions docs/input/docs/integrations/editors/rider/run-configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ In order to use the run configurations you must have Cake installed on your mach
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tool">Cake .NET Tool</a></li>
<li><a data-toggle="tab" href="#frosting">Cake Frosting</a></li>
<li><a data-toggle="tab" href="#netfx">Cake runner for .NET Framework</a></li>
<li><a data-toggle="tab" href="#core">Cake runner for .NET Core</a></li>
</ul>

<div class="tab-content">
Expand All @@ -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.
</p>
</div>
<div id="netfx" class="tab-pane fade">
<p>
Install Cake using any of the following options:
</p>
<ul>
<li>
<p>
On Windows using <a href="https://chocolatey.org/">Chocolatey to install it globally</a>:
</p>
<pre><code class="language-cmd hljs">choco install cake.portable</code></pre>
</li>
<li>
<p>
Use a <a href="/docs/running-builds/runners/cake-runner-for-dotnet-framework#bootstrapping-for-cake-runner-for.net-framework">bootstrapper</a>.
</p>
<p>
This requires to setup the bootstrapper(s) under <a href="#runner-settings">settings</a>
</p>
</li>
</ul>
</div>
<div id="core" class="tab-pane fade">
<p>
There is currently no support for task runner for Cake runner for .NET Core.
</p>
</div>
</div>

## Supported runners
Expand All @@ -71,13 +43,9 @@ In order to use the run configurations you must have Cake installed on your mach
|----------------------------------|-------------------------------------------------|----------------------------------------------------|
| [Cake .NET Tool] | <i class="fa fa-check" style="color:green"></i> | |
| [Cake Frosting] | <i class="fa fa-times" style="color:red"></i> | |
| [Cake runner for .NET Framework] | <i class="fa fa-check" style="color:green"></i> | |
| [Cake runner for .NET Core] | <i class="fa fa-times" style="color:red"></i> | |

[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

Expand Down
4 changes: 2 additions & 2 deletions src/rider/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
6 changes: 3 additions & 3 deletions src/rider/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0ffcccb

Please sign in to comment.