Hi SO,
I have a WPF Application project with several project references within a single solution in VS 2008. When I compile my solution, all of the referenced dlls are output into the same folder that the main .exe is output into.
Is it possible to configure my main .exe project build to output all references in a sub folder relative to my .exe?
I would like the final result to be something like this:
MyApp.exe MyApp.exe.config Lib\SomeReference.dll Lib\SomeReference2.dll
(I assume if this is possible, it would be possible with any .exe).
Thanks! Jon