I built a class library exporting two custom controls using c#. This class library depends on some references, which are duly copied into the bin\Debug directory on build (of a solution using the custom controls) as long as I add only the controls DLL as reference. So far, so good.
If I now add the controls from that output directory into the toolbox and place one on an empty form in the designer, visual studio crashes. If I debug from the custom control solution like so http://msdn.microsoft.com/en-us/library/5ytx0z24(VS.80).aspx, I can see the IO exception that one of the referenced DLLs cannot be found.
So, is there a reasonably elegant way of placing the dependencies for the designer to find them? I tried fiddling with the reference paths in the project settings, but to no avail. I would prefer to avoid setting system-wide paths and installing/registering the control every time I change a bit of code.