views:

59

answers:

0

I have a large .NET library that is currently being built 64bit. Inside that library I have a ASP.NET Custom Control. Since Visual Studio is 32Bit I can't add this DLL to the toolbox properly. I do not want to recompile the entire DLL 32bit since it links against other 64bit libraries, but I was wondering if I could create another DLL that is "Any CPU" just for the control, and embed it inside the 64bit one. Will Visual Studio know how to handle that for the toolbox?

I don't want to split this code into two DLL's since it would be more of a pain for my users to get up and running.