For modularity, I am linking to a dll in my solution at runtime rather than compile time to allow for me to update it independently. When I place breakpoints in the library project, these are not triggered when the class is linked to, and a type is created.
For reference, this is the reflection code:
Assembly a = Assembly.LoadFile(FULL_APPLICATION_CACHE + targetVersion + "\\Core.dll");
Type engineCoreType = a.GetType("Core.EngineCore");
object instance = Activator.CreateInstance(engineCoreType);
Is it possible for Visual Studio to offer its normal debugging tools in this scenario? How would I configure this?