also detect broken Netcode references

This commit is contained in:
Jesse Plamondon-Willard 2018-07-08 15:56:08 -04:00
parent 530b120014
commit 8839b6822a
1 changed files with 1 additions and 1 deletions

View File

@ -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" };
/*********