I have 2 Visual Studio 2010 pojects, one is a Windows Appliation and the other is a class library which creates one .dll file, which I reference in the Windows app project.
There are also 3 third party dll files which the application uses.
When I am releasing an update to the software I need to copy the .exe file and all 4 .dll files into the same diectory.
What I would like is to somehow have the .dll files in a folde called library or similar. This means the directory containing the .exe file will be 'tidier'
How do I do this?
Thanks,
Andrew
Loading
Amit ChoudharyPosted Feb 9, 2011, 12:22 AM
Here is the workaround you can do... change the mode from Debug to Release. Go to Reference in your project and select the reference names and right click to go to the properties. Set the CopyLocal to true. When you release your application then i hope they'll get copied to the directory you want..
Thanks..