Skip to content

Commit e843739

Browse files
committedNov 28, 2022
Update creating_plugin.md
1 parent 41b72db commit e843739

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed
 

‎rsd.tree

+1-1
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

+1-1
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.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
[//]: # (title: Creating A Plugin)
1+
[//]: # (title: Developing 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

55
This documentation section will help you get started with developing ReSharper Platform plugins.
66
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).
77
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.
88

9-
* [](plugin_template.md)
9+
* [](creating_plugin.md)
1010
* [](running_plugin.md)
1111

1212
> In some cases, implementing an actual ReSharper Platform plugin might not be necessary, as [alternative solutions](plugin_alternatives.md) exist.

‎topics/basics/getting_started/plugin_template.md ‎topics/basics/getting_started/creating_plugin.md

+4-4
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)
Failed to load comments.