Updated Guide (markdown)

Stone_Red
2021-09-10 20:27:00 +02:00
parent 58ed6a37cf
commit 9f14bbc59e
+4 -4
@@ -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