Skip to content

Commit

Permalink
fix: only cache types of needed assemblies
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher-Marcel Böddecker committed Jan 11, 2019
1 parent a7fbf74 commit 693b0a0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Sources/ClearPropertyMethod.Fody/ModuleWeaver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ public override void Execute()
public override IEnumerable<string> GetAssembliesForScanning()
{
yield return "System.Runtime";
yield return "netstandard.dll";
yield return "mscorlib.dll";
yield return "netstandard";
yield return "mscorlib";
}

private void FindReferences() =>
Expand Down
4 changes: 0 additions & 4 deletions Sources/SerializedProperty.Fody/ModuleWeaver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,6 @@ public override void Execute()
public override IEnumerable<string> GetAssembliesForScanning()
{
yield return "UnityEngine";

yield return "System.Runtime";
yield return "netstandard.dll";
yield return "mscorlib.dll";
}

private void FindReferences()
Expand Down
4 changes: 2 additions & 2 deletions Sources/ValidatePropertiesMethod.Fody/ModuleWeaver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ public override void Execute()
public override IEnumerable<string> GetAssembliesForScanning()
{
yield return "System.Runtime";
yield return "netstandard.dll";
yield return "mscorlib.dll";
yield return "netstandard";
yield return "mscorlib";
}

private void FindReferences() =>
Expand Down
2 changes: 2 additions & 0 deletions Sources/XmlDocumentationToFieldTooltip.Fody/ModuleWeaver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ public override void Execute()
public override IEnumerable<string> GetAssembliesForScanning()
{
yield return "UnityEngine";
yield return "netstandard";
yield return "mscorlib";
}

private void FindReferences()
Expand Down

0 comments on commit 693b0a0

Please sign in to comment.