A template plugin meant to be used as a starting point for a new plugin. Fork as necessary
Find a file
2020-08-25 15:00:24 -06:00
.github fix workflow to change master -> main 2020-08-20 10:56:03 -06:00
PDT.EssentialsPluginTemplate.EPI Updates assembly references to nuget package folder 2020-08-25 14:55:53 -06:00
.gitignore add .suo files to .gitignore 2020-08-20 10:40:43 -06:00
.gitmodules Removes submodule reference for Essentialls 2020-08-25 14:53:52 -06:00
LICENSE.md Comment updates and License added. 2020-02-13 15:59:31 -07:00
packages.config Removes submodule reference for Essentialls 2020-08-25 14:53:52 -06:00
README.md Updates Readme.md to include dependency instructions for nuget package management 2020-08-25 15:00:24 -06:00

Essentials Plugin Template (c) 2020

License

Provided under MIT license

Overview

Fork this repo when creating a new plugin for Essentials. For more information about plugins, refer to the Essentials Wiki Plugins article.

Cloning Instructions

After using a fork of this repo as a template to create a new repository, you must install the necessary dependencies:

Dependencies

The Essentials libraries are required. They referenced via nuget. You must have nuget.exe installed and in the PATH environment variable to use the following command. Nuget.exe is available at nuget.org.

Installing Dependencies

To install dependencies once nuget.exe is installed, run the following command from the root directory of your repository: nuget install .\packages.config -OutputDirectory .\packages -excludeVersion. To verify that the packages installed correctly, open Essentials and make sure that all references are found, then try and build it.

Installing Different versions of PepperDash Core

If you need a different version of PepperDash Core, use the command nuget install .\packages.config -OutputDirectory .\packages -excludeVersion -Version {versionToGet}. Omitting the -Version option will pull the version indicated in the packages.config file.