You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: topics/basics/getting_started.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
-
[//]: #(title: Creating A Plugin)
1
+
[//]: #(title: Developing A Plugin)
2
2
3
3
<!-- 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. -->
4
4
5
5
This documentation section will help you get started with developing ReSharper Platform plugins.
6
6
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).
7
7
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.
8
8
9
-
*[](plugin_template.md)
9
+
*[](creating_plugin.md)
10
10
*[](running_plugin.md)
11
11
12
12
> In some cases, implementing an actual ReSharper Platform plugin might not be necessary, as [alternative solutions](plugin_alternatives.md) exist.
<!-- 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. -->
4
4
@@ -8,7 +8,7 @@ The generator creates all the necessary project files based on a few template in
8
8
<proceduretitle="Create ReSharper & Rider Plugins"id="create-ide-plugin">
9
9
10
10
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).
12
12
2. Install the plugin template by calling:
13
13
```
14
14
dotnet new --install JetBrains.ReSharper.SamplePlugin.*.nupkg
@@ -27,9 +27,9 @@ dotnet new resharper-rider-plugin --name MyPlugin
27
27
28
28
</procedure>
29
29
30
-
### Components of the Template-Generated Plugin
30
+
### Template-Generated Files
31
31
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:
0 commit comments