Skip to content

Commit

Permalink
Update creating_plugin.md
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Nov 28, 2022
1 parent 41b72db commit e843739
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion rsd.tree
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<toc-element id="types_of_plugins.md"/>
</toc-element>
<toc-element id="getting_started.md">
<toc-element id="plugin_template.md" toc-title="Using .NET Template"/>
<toc-element id="creating_plugin.md"/>
<toc-element id="running_plugin.md"/>
</toc-element>
<toc-element id="internal_mode.md" toc-title="Internal mode" accepts-web-file-names="Extensions/InternalMode.html,Intro/InternalMode.html"/>
Expand Down
2 changes: 1 addition & 1 deletion topics/Intro/content_updates.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See [GitHub Changelog](https://github.com/JetBrains/resharper-devguide/commits/m

Additions
:
- Add [](plugin_template.md) section.
- Add [](creating_plugin.md) section.
- Add [](running_plugin.md) section.
- Add [](types_of_plugins.md) section.
- Add [](plugin_required_experience.md) section.
Expand Down
4 changes: 2 additions & 2 deletions topics/basics/getting_started.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[//]: # (title: Creating A Plugin)
[//]: # (title: Developing A Plugin)

<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->

This documentation section will help you get started with developing ReSharper Platform plugins.
You can use either [JetBrains Rider](https://www.jetbrains.com/rider/download) or [Microsoft Visual Studio](https://visualstudio.microsoft.com/downloads/) (with or without [ReSharper](https://www.jetbrains.com/resharper/download/)) as your IDE (it is highly recommended to use the latest available version).
Please refer to the [Rider Web Help](https://www.jetbrains.com/help/rider) or [ReSharper Web Help](https://www.jetbrains.com/help/resharper) to become more familiar with the products.

* [](plugin_template.md)
* [](creating_plugin.md)
* [](running_plugin.md)

> In some cases, implementing an actual ReSharper Platform plugin might not be necessary, as [alternative solutions](plugin_alternatives.md) exist.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[//]: # (title: ReSharper Platform Plugin Template)
[//]: # (title: Creating A Plugin)

<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->

Expand All @@ -8,7 +8,7 @@ The generator creates all the necessary project files based on a few template in
<procedure title="Create ReSharper &amp; Rider Plugins" id="create-ide-plugin">

Launch the <control>New Project</control> wizard via the <menupath>File | New | Project...</menupath> action and provide the following information:
1. Download the [plugin template]() from the GitHub Release section.
1. Download the plugin template from the [GitHub Release page](https://github.com/JetBrains/resharper-rider-plugin/releases).
2. Install the plugin template by calling:
```
dotnet new --install JetBrains.ReSharper.SamplePlugin.*.nupkg
Expand All @@ -27,9 +27,9 @@ dotnet new resharper-rider-plugin --name MyPlugin

</procedure>

### Components of the Template-Generated Plugin
### Template-Generated Files

When extracting the template using `MyPlugin` as a name, it will create the following directory content:
When extracting the template, for instance with `--name MyPlugin`, it will create the following directory content:

```text
MyPlugin
Expand Down

0 comments on commit e843739

Please sign in to comment.