How can I set up the VS so that it outputs the dll to multiple directories?
3 Answers
You can use VS post build events to copy the generated dlls.
something like:
copy $(TargetPath) new/path/to/dll/mydll.dll
2 Comments
user1245777
can you please specify what i can mention on new/path/to/dll/mydll.dll
MByD
This is where you want to copy the DLL to, this is a standard DOS copy command.