https://github.com/rstm-sf/rider-plugin-templates
.NET templates for Rider plugin (WIP)
https://github.com/rstm-sf/rider-plugin-templates
dotnet dotnet-new dotnet-templates jvm rider rider-plugin
Last synced: about 2 months ago
JSON representation
.NET templates for Rider plugin (WIP)
- Host: GitHub
- URL: https://github.com/rstm-sf/rider-plugin-templates
- Owner: rstm-sf
- License: mit
- Created: 2020-11-22T15:58:00.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-04T21:41:58.000Z (over 4 years ago)
- Last Synced: 2025-02-09T13:14:32.689Z (3 months ago)
- Topics: dotnet, dotnet-new, dotnet-templates, jvm, rider, rider-plugin
- Language: Kotlin
- Homepage:
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rider-plugin-templates
.NET templates for Rider plugin## About
This repository contains the templates for Rider plugin. Based on repositories: [resharper-rider-plugin](https://github.com/JetBrains/resharper-rider-plugin) and [AvaloniaRider](https://github.com/ForNeVeR/AvaloniaRider).
## How use it?
An easy way to pack from source code is to use the [Git](https://git-scm.com/downloads) and the [.NET Core SDK 3.1](https://dotnet.microsoft.com/download/dotnet-core/3.1) as follows:
```sh
$ git clone https://github.com/rstm-sf/rider-plugin-templates.git && cd rider-plugin-templates$ dotnet pack
$ dotnet new -i ./bin/Rider.Plugin.Templates.0.0.1.nupkg$ mkdir temp && cd temp
$ dotnet new rider-plugin --sdk3$ ./gradlew buildPlugin
$ dotnet new -u Rider.Plugin.Templates
```