.net - How to generate type forwarding assembly for whole assembly? -


I have a situation where I want to generate a single DLL which includes type forwarding for the whole host of conferences This idea is to provide an SDK, where there is an 'empty proxy' for each type and method in the final product assemblies in a DLL. My question is, is it possible to prepare these assemblies in any way? I mean, with all the right types and interfaces?

Thank you.

You can use it to forward from one assembly to another.

Now, to generate a assembly dynamically, which move on in many different types of assembly, you can Reflection.Emit

With libraries, you can read your targeted types for your public type, and generate such a assembly in which there is a typeforwardedToAttribute for each type of them. >

Comments