I have a Solution with 4 Projects and these projects make references each other in this way:
- Project RoleCreator makes reference to Project Unify.ServiceInterface and Unify.ServiceModel
I want to pre load the assemblies from ALL THE PROJECTS in the solution at some method in the Project RoleCreator, but in this line Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();
in the breakpoint value appears load just the Assembly from the projectUnify.ServiceInterface but not the Assembly from the project Unify.ServiceModel that it's also referenced in the project RoleCreator.I want to load all the assemblies from THE SOLUTION!