You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i open solidworks an exception thrown:
System.Reflection.ReflectionTypeLoadException: 'Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.'
it comes from this line:
ass.GetTypes().Where(p => type.IsAssignableFrom(p) && p.IsClass && !p.IsAbstract).ToList().ForEach(p =>
{
// Create SolidDna plugin class instance
var inter = Activator.CreateInstance(p) as ISolidPlugIn;
assemblies.Add(inter);
});
thank you in advance for helping!
The text was updated successfully, but these errors were encountered:
when i open solidworks an exception thrown:
System.Reflection.ReflectionTypeLoadException: 'Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.'
it comes from this line:
ass.GetTypes().Where(p => type.IsAssignableFrom(p) && p.IsClass && !p.IsAbstract).ToList().ForEach(p =>
{
// Create SolidDna plugin class instance
var inter = Activator.CreateInstance(p) as ISolidPlugIn;
assemblies.Add(inter);
});
thank you in advance for helping!
The text was updated successfully, but these errors were encountered: