- I added the code from the .cs file into a new strategy in NinjaScript editor.
- I added my custom DLL as a reference. The DLL is in /bin/Custom folder.
- The strategy code in the ninjascript editor has `using MyDLL;`
- It compiles without errors.
- However, if i go Tools > Export > Ninjascript Addon and attempt to export my addon to a NinjaScript zip file, I get errors in log indicating it failed to find the referenced DLL (type or namespace name MyDLL does not exist):
"error CS0246: The type or namespace name 'MyNamespace' could not be found"
I'm stuck.
UPDATE:
I did not realize that I have to manually select the references to include in the export build. I have done so and it exports as desired.

Comment