I have a VS2005 windows forms project in my solution, as well as severl class libraries.. One of the class libraries is not referenced by the app, it does that through reflection at runtime.
Because the class library is not referenced though, it does not build a DLL. Or at least I presume that is why - it stopped producing a DLL as soon as I removed references to it.
I can see the text "/out:obj\Debug\MyLib.dll"
in the output when it builds in the output. All other class libraries (referenced ones) create DLLs fine.
How can I force the library to produce a DLL on build?
Start Free Trial