summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-06-01 19:59:00 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-06-01 19:59:00 -0400
commite10147e7bda94a8fbc58684246628a6520d2c6b8 (patch)
tree3135a4ef641192e42ee1f97b8c56fc9b76a52aee /src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs
parent0209e70695b6d12692d4de554ce1fc9d65ca4715 (diff)
parent1cded44f7a5626a0d4f5c3ce48a83aa544d517c3 (diff)
downloadSMAPI-e10147e7bda94a8fbc58684246628a6520d2c6b8.tar.gz
SMAPI-e10147e7bda94a8fbc58684246628a6520d2c6b8.tar.bz2
SMAPI-e10147e7bda94a8fbc58684246628a6520d2c6b8.zip
Merge branch 'develop' into stable
Diffstat (limited to 'src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs')
-rw-r--r--src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs b/src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs
index e3f108cb..476c30d0 100644
--- a/src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs
+++ b/src/SMAPI/Framework/ModLoading/InstructionHandleResult.cs
@@ -30,6 +30,15 @@ namespace StardewModdingAPI.Framework.ModLoading
DetectedFilesystemAccess,
/// <summary>The instruction accesses the OS shell or processes directly.</summary>
- DetectedShellAccess
+ DetectedShellAccess,
+
+ /// <summary>The module references the legacy <c>System.Configuration.ConfigurationManager</c> assembly and doesn't include a copy in the mod folder, so it'll break in SMAPI 4.0.0.</summary>
+ DetectedLegacyConfigurationDll,
+
+ /// <summary>The module references the legacy <c>System.Runtime.Caching</c> assembly and doesn't include a copy in the mod folder, so it'll break in SMAPI 4.0.0.</summary>
+ DetectedLegacyCachingDll,
+
+ /// <summary>The module references the legacy <c>System.Security.Permissions</c> assembly and doesn't include a copy in the mod folder, so it'll break in SMAPI 4.0.0.</summary>
+ DetectedLegacyPermissionsDll
}
}