Is there any way to generate multiple assemblies for a single WAP project??
Let me explain why I want to do this. I am developing custom modules for DotNetNuke. For avoiding to distribute code-behind, I use the WAP model for development. Also, I do not create my WAP projects inside DNN solution. Instead, I have my own solution, named DNN, which contains independent Module, Provider or Skin projects for DNN.
All such projects reference needed DNN assemblies. This time I had a new situation. I needed to use code-behind classes of DNN controls, that have been developed using WSP model. As these classes were not available as compiled assemblies, I simply copied them to my project & built my project. However on deploying it into the bin folder, it produced (un)expected Ambigous class errors, as those DNN code-behind classes were present both in my assembly, as well as were dynamically compiled from the DNN source-code present.
So, what I want to do now is to have some way, so that my WAP project produces 2 assemblies, one containing only my custom module classes, and the other containing the DNN classes I copied to my project. Thereafter, I would only deploy my assembly, which would get the required referenced DNN classes from the dynamically compiled DNN code...