diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2018-07-08 18:51:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-08 18:51:15 -0400 |
commit | a8c8382beeed8e4d07f6c64d6f6c4467b422e10e (patch) | |
tree | 16fb22409acdb84dcabaf698be9dba5b8d21544d /src/SMAPI/Metadata | |
parent | 2421fa3fa10b15ebf7bbe2e1893311c27a33b6fd (diff) | |
parent | 8839b6822a475c693a0b4a88c6de861028df3caf (diff) | |
download | SMAPI-a8c8382beeed8e4d07f6c64d6f6c4467b422e10e.tar.gz SMAPI-a8c8382beeed8e4d07f6c64d6f6c4467b422e10e.tar.bz2 SMAPI-a8c8382beeed8e4d07f6c64d6f6c4467b422e10e.zip |
Merge pull request #559 from ebehar/develop
Expand validation to respect CIL placeholders
Diffstat (limited to 'src/SMAPI/Metadata')
-rw-r--r-- | src/SMAPI/Metadata/InstructionMetadata.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Metadata/InstructionMetadata.cs b/src/SMAPI/Metadata/InstructionMetadata.cs index aa3e743c..2f0c1b15 100644 --- a/src/SMAPI/Metadata/InstructionMetadata.cs +++ b/src/SMAPI/Metadata/InstructionMetadata.cs @@ -17,7 +17,7 @@ namespace StardewModdingAPI.Metadata *********/ /// <summary>The assembly names to which to heuristically detect broken references.</summary> /// <remarks>The current implementation only works correctly with assemblies that should always be present.</remarks> - private readonly string[] ValidateReferencesToAssemblies = { "StardewModdingAPI", "Stardew Valley", "StardewValley" }; + private readonly string[] ValidateReferencesToAssemblies = { "StardewModdingAPI", "Stardew Valley", "StardewValley", "Netcode" }; /********* |