Skip to content

Commit ab308c1

Browse files
committed
Update creating_plugin.md
1 parent 41b72db commit ab308c1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

rsd.tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<toc-element id="types_of_plugins.md"/>
8282
</toc-element>
8383
<toc-element id="getting_started.md">
84-
<toc-element id="plugin_template.md" toc-title="Using .NET Template"/>
84+
<toc-element id="creating_plugin.md"/>
8585
<toc-element id="running_plugin.md"/>
8686
</toc-element>
8787
<toc-element id="internal_mode.md" toc-title="Internal mode" accepts-web-file-names="Extensions/InternalMode.html,Intro/InternalMode.html"/>

topics/Intro/content_updates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See [GitHub Changelog](https://github.com/JetBrains/resharper-devguide/commits/m
1414

1515
Additions
1616
:
17-
- Add [](plugin_template.md) section.
17+
- Add [](creating_plugin.md) section.
1818
- Add [](running_plugin.md) section.
1919
- Add [](types_of_plugins.md) section.
2020
- Add [](plugin_required_experience.md) section.

topics/basics/getting_started/plugin_template.md renamed to topics/basics/getting_started/creating_plugin.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[//]: # (title: ReSharper Platform Plugin Template)
1+
[//]: # (title: Creating A Plugin)
22

33
<!-- 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. -->
44

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

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

2828
</procedure>
2929

30-
### Components of the Template-Generated Plugin
30+
### Template-Generated Files
3131

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

3434
```text
3535
MyPlugin

0 commit comments

Comments
 (0)