I used ExcelDNA to create an Excel addin, packed into a single xll using ExcelDnaPack.exe. It works beautifully, until I add a reference to a dll created with a C++/CLI project (called CPPLibrary.dll) When I pack the CPPLibrary.dll the addin complains at runtime that it cannot find the dll. If I leave CPPLibrary.dll unpacked and just copy it in the same directory as the -packed.xll everything works. Is there a way to successfully pack a C++/CLI project into an ExcelDNa addin?
Thanks.
I ended up embedding the c++/cli as a resource, and in realtime when the excel dna addin gets loaded I extract the embedded dll to a file in disk and do a Assembly.LoadFrom(extracted path) Like this: