I try to create a dll from all of my classes with VS command prompt but all classes using externall dll's won't do.
The program uses some dlls from OpenGl that I stored in the bin folder and it works fine while running the program
But I get error CS0246, namespace could not be found, missing directive when I try to create a dll from all those classes.
The line I use is:
csc /target:library /out:Engine.DLL *
All System namespace are found but all external dlls are not.
Do I need to add a path to the external dlls in VS environment?