summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/IManifest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/StardewModdingAPI/IManifest.cs')
-rw-r--r--src/StardewModdingAPI/IManifest.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/IManifest.cs b/src/StardewModdingAPI/IManifest.cs
index 9533aadb..c036fdd3 100644
--- a/src/StardewModdingAPI/IManifest.cs
+++ b/src/StardewModdingAPI/IManifest.cs
@@ -29,8 +29,10 @@ namespace StardewModdingAPI
/// <summary>The name of the DLL in the directory that has the <see cref="Mod.Entry"/> method.</summary>
string EntryDll { get; }
+#if EXPERIMENTAL
/// <summary>The other mods that must be loaded before this mod.</summary>
IManifestDependency[] Dependencies { get; }
+#endif
/// <summary>Any manifest fields which didn't match a valid field.</summary>
IDictionary<string, object> ExtraFields { get; }