Visual Studio: Move referenced DLL to different directory after Build
If you need to move a referenced DLL to a different directory after build, add these commands to the “Post Build event command line” box in the “Build Events” tab of the project properties:
mkdir $(TargetDir)dir move $(TargetDir)myDLL.dll $(TargetDir)dir\myDLL.dll
| Print article | This entry was posted by Zachary on July 20, 2010 at 7:16 pm, and is filed under Visual Studio. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |
