Skip to content

Commit

Permalink
Reflect PR #35
Browse files Browse the repository at this point in the history
  • Loading branch information
C-SELLERS committed Feb 15, 2021
1 parent 481f4d0 commit 863530d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/runtime/assemblymanager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,13 @@ internal static void ScanAssembly(Assembly assembly)
{
return;
}

// skip this assembly, it causes 'GetTypes' call to hang
if (assembly.FullName.StartsWith("System.Windows.Forms"))
{
return;
}

// A couple of things we want to do here: first, we want to
// gather a list of all of the namespaces contributed to by
// the assembly.
Expand Down

0 comments on commit 863530d

Please sign in to comment.