I am trying to load .dll file in grasshopper component. It fails to load in C# editor and compiled component.
The .dll contains only several methods calling native C++ functions.
I was using this .dll in simple console application but I do not understand why it is not working in Grasshopper.
Why I cannot load it?
error: Could not load file or assembly ‘MinkowskiWrapper, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null’ or one of its dependencies. The system cannot find the file specified. (line: 369)
See my reply at Catching PINVOKE exception from loaded assembly it may help you as my plugin was suffering from dependency issues and as yours was working as a console app.
By the way… are you by any chance working on a nesting algorithm?