You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/SMAPI.Toolkit/Framework/ModData/ModWarning.cs
+10-1
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,15 @@ public enum ModWarning
35
35
AccessesFilesystem=128,
36
36
37
37
/// <summary>Uses .NET APIs for shell or process access.</summary>
38
-
AccessesShell=256
38
+
AccessesShell=256,
39
+
40
+
/// <summary>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>
41
+
DetectedLegacyConfigurationDll=512,
42
+
43
+
/// <summary>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>
44
+
DetectedLegacyCachingDll=1024,
45
+
46
+
/// <summary>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>
/// <summary>The instruction accesses the OS shell or processes directly.</summary>
33
-
DetectedShellAccess
33
+
DetectedShellAccess,
34
+
35
+
/// <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>
36
+
DetectedLegacyConfigurationDll,
37
+
38
+
/// <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>
39
+
DetectedLegacyCachingDll,
40
+
41
+
/// <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>
0 commit comments