From ab308c1b3bba2e17d2adf2179eaa0d1fe610c865 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 +- .../{plugin_template.md => creating_plugin.md} | 8 ++++---- 3 files changed, 6 insertions(+), 6 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/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