Search Results

2
votes
2answers
194 views

How do you load embedded assemblies that you’ve bundled in with your main assembly?

What's the best practice for bundling one assembly in another? I have an assembly I'm distributing, but I have a couple third-party assemblies that I use in it, and I don't want to have to distrib …
0
votes
2answers
141 views

How can you cast objects from different assemblies into each other?

I've run into this apparently not uncommon problem -- I have a interface in Assembly A. I am dynamically loading Assembly B, and trying to cast an object from it in …
1
vote
3answers
256 views

Why can’t I share types with an assembly loaded dynamically at runtime into the same load context?

I have a problem that is not uncommon when building a plug-in architecture. Assembly A is the core code -- the framework. Assembly B is a plugin to that code, expec …