From 9f14bbc59e554e90404e5ce7d3a9e8a3c5e1c7f1 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Fri, 10 Sep 2021 20:27:00 +0200 Subject: [PATCH] Updated Guide (markdown) --- Guide.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Guide.md b/Guide.md index c4cc29c..7d9c352 100644 --- a/Guide.md +++ b/Guide.md @@ -2,13 +2,13 @@ 1. Create a [.NET(Core) class library](https://docs.microsoft.com/en-us/dotnet/core/tutorials/library-with-visual-studio) project -2. Add the [DesktopMagicPluginAPI](https://www.nuget.org/packages/DesktopMagicPluginAPI/) nuget package +1. Add the [DesktopMagicPluginAPI](https://www.nuget.org/packages/DesktopMagicPluginAPI/) nuget package -3. Create a class that inherits from `DesktopMagicPluginAPI.Plugin` +1. Create a class that inherits from `DesktopMagicPluginAPI.Plugin` -4. Implement the required members from `DesktopMagicPluginAPI.Plugin` +1. Implement the required members from `DesktopMagicPluginAPI.Plugin` -5. Compile it into a `.dll` file and in the plugin directory create a directory with the same name as the `.dll` file without the file extension and put the `.dll` file with all required dependencies into it. +1. Compile it into a `.dll` file and in the plugin directory create a directory with the same name as the `.dll` file without the file extension and put the `.dll` file with all required dependencies into it. ## Examples