We have custom DLL\'s that are not included in our initial setup file. They are loaded at runtime. This process worked fine while using .NET 2.0, but we are getting the \"The
This error is occurring because Assembly.Load cannot be called upon dynamic assemblies. You must filter out the dynamic assemblies before using them.
Assembly.Load
var assemblies = AppDomain.CurrentDomain.GetAssemblies().Where(p => !p.IsDynamic);