Can anyone point me to some information on .NET assemblies spanning multiple files?
I’ve found this remark on MSDN (here):
Although it’s technically possible to create assemblies that span multiple files, you’re not likely to use this technology in most situations.
I’m asking because I have the business logic and the unit tests for it in separate projects, and I’d like to test some internal classes (which are not accessible from the unit tests) – so I thought I’d try and merge the two into a single assembly.
You can friend two assemblies together. Then one can see the ‘internal’ in the other. Still can’t see private.
MSDN – http://msdn.microsoft.com/en-us/library/0tke9fxk(VS.80).aspx