From e8437395cfccd5bb0706e2b5e75c50481b4aef32 Mon Sep 17 00:00:00 2001 From: Matthias Koch Date: Mon, 28 Nov 2022 01:07:28 +0100 Subject: [PATCH] Update creating_plugin.md --- rsd.tree | 2 +- topics/Intro/content_updates.md | 2 +- topics/basics/getting_started.md | 4 ++-- .../{plugin_template.md => creating_plugin.md} | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-) rename topics/basics/getting_started/{plugin_template.md => creating_plugin.md} (94%) diff --git a/rsd.tree b/rsd.tree index c1585cf..0c3190c 100644 --- a/rsd.tree +++ b/rsd.tree @@ -81,7 +81,7 @@ - + diff --git a/topics/Intro/content_updates.md b/topics/Intro/content_updates.md index bcb7465..5beeccd 100644 --- a/topics/Intro/content_updates.md +++ b/topics/Intro/content_updates.md @@ -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. diff --git a/topics/basics/getting_started.md b/topics/basics/getting_started.md index 2a0c808..682fa33 100644 --- a/topics/basics/getting_started.md +++ b/topics/basics/getting_started.md @@ -1,4 +1,4 @@ -[//]: # (title: Creating A Plugin) +[//]: # (title: Developing A Plugin) @@ -6,7 +6,7 @@ This documentation section will help you get started with developing ReSharper P 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. diff --git a/topics/basics/getting_started/plugin_template.md b/topics/basics/getting_started/creating_plugin.md similarity index 94% rename from topics/basics/getting_started/plugin_template.md rename to topics/basics/getting_started/creating_plugin.md index e0f23a8..ff527b5 100644 --- a/topics/basics/getting_started/plugin_template.md +++ b/topics/basics/getting_started/creating_plugin.md @@ -1,4 +1,4 @@ -[//]: # (title: ReSharper Platform Plugin Template) +[//]: # (title: Creating A Plugin) @@ -8,7 +8,7 @@ The generator creates all the necessary project files based on a few template in Launch the New Project wizard via the File | New | Project... 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 @@ -27,9 +27,9 @@ dotnet new resharper-rider-plugin --name MyPlugin -### 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