I've written an Add-In DLL for my project. It makes use of several
other DLLs. Is there any way to force Visual Studio to put my DLL into
'bin' and the other DLLs into a subfolder e.b. 'bin\lib'?
Brendan Green - 12 May 2006 01:37 GMT
Would a post-build event work for you?
> I've written an Add-In DLL for my project. It makes use of several
> other DLLs. Is there any way to force Visual Studio to put my DLL into
> 'bin' and the other DLLs into a subfolder e.b. 'bin\lib'?
Phil Cairns - 12 May 2006 05:45 GMT
> I've written an Add-In DLL for my project. It makes use of several
> other DLLs. Is there any way to force Visual Studio to put my DLL into
> 'bin' and the other DLLs into a subfolder e.b. 'bin\lib'?
Get the properties for the project, and go to Configuration
Properties.Linker.General. The Output File that probably reads something
like "$(OutDir)/$(ProjectName).dll" can be changed to
"bin/lib/$(ProjectName).dll".
Phil.