Skip to content
This repository was archived by the owner on Dec 21, 2019. It is now read-only.

Latest commit

 

History

History
17 lines (11 loc) · 790 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 790 Bytes

Rocket.Templates

This repository contains the plugin templates for the RocketMod .NET Game Server Plugin Framework.

Getting Started

To get started, first install the templates: dotnet new -i "Rocket.Templates::*"

After installing the template, you can now create a new plugin using the following command: dotnet new rocket-plugin

The full command is like this:

dotnet new rocket-plugin [--name <ProjectName>] [--FullPluginName <FullPluginName>] [--GenerateConfiguration <true/false>] [--GenerateCommands <true/false>] [--PluginType <Universal/Unturned/Eco>]

For example, if you want to create an Unturned plugin, you can use the following command:

dotnet new rocket-plugin --FullPluginName "My Unturned Plugin" --PluginType Unturned