I am using Visual Studio 2008 and would like to create a kind of container project that contains several DLLs that must be installed with the solution. I want them to be in a separate project so that they can be easily tied to a solution in the form of a group.
I created an empty TEST project, added my DLL to it using the "Content" action, and set them to Always Copy. Everything works the way I want. The problem is that if I set the output type of the TEST project to “Console Application” or “Windows Application”, which it will not build, because there is no entry point. If I set the output type to the "class library", it builds, but I get an additional TEST.DLL file, which I really do not need.
Is there a way to sort the Output type to "none"? I want assembly actions to be performed (so my DLL is copied), but I don't want a dummy class assembly to be created. Any ideas?
Thanks!
visual-studio projects-and-solutions
Scott bussinger
source share