Skip to content
This repository has been archived by the owner on Aug 28, 2021. It is now read-only.

Commit

Permalink
skip core refencing check to load bhom types (CLR fuckery)
Browse files Browse the repository at this point in the history
  • Loading branch information
didimitrie committed Feb 6, 2020
1 parent 756e800 commit 56c7415
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SpeckleCore/AssemblyCatalogue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ private IEnumerable<Assembly> LoadSpeckleReferencingAssemblies( IEnumerable<Asse
var relfectionLoadAssembly = Assembly.LoadFrom( assemblyPath );
var isReferencingCore = relfectionLoadAssembly.IsReferencing( SpeckleAssemblyName );

if ( isReferencingCore )
//if ( isReferencingCore )
if(true)
{
Debug.WriteLine( "Load converter: " + unloadedAssemblyName );
var assembly = SafeLoadAssembly( AppDomain.CurrentDomain, unloadedAssemblyName );
Expand Down

0 comments on commit 56c7415

Please sign in to comment.