Reference external dlls in a custom plugin using C#
-
I am trying to write my first plugin for Notepad ++ using the C# template.In my code I need to add reference to third party dll’s.
When the reference is added they are copied to the local debug folder and everything compiles correctly. These dll’s are copied in to the local folder .
Unfortunately this wont work for the plugin because I wont be able to copy all the dlls into the plugin directory and it gives could not load file or assembly…the system could not find this file
Is there any way to over come this?(C#) -
Did you start with https://github.com/kbilsted/NotepadPlusPlusPluginPack.Net?