diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-05-16 23:04:38 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-05-16 23:04:38 -0400 |
commit | 89d7a3f846b3f380c43656e02ba645d57bef03ea (patch) | |
tree | 38e6a7fa1c0298705a1c765f008df3db94645483 /src/StardewModdingAPI/Framework/Models | |
parent | bf02c54f8bc4499052af8870e080100a4a7f05a3 (diff) | |
download | SMAPI-89d7a3f846b3f380c43656e02ba645d57bef03ea.tar.gz SMAPI-89d7a3f846b3f380c43656e02ba645d57bef03ea.tar.bz2 SMAPI-89d7a3f846b3f380c43656e02ba645d57bef03ea.zip |
add compile flag for experimental mod dependencies features
Diffstat (limited to 'src/StardewModdingAPI/Framework/Models')
-rw-r--r-- | src/StardewModdingAPI/Framework/Models/Manifest.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/Framework/Models/Manifest.cs b/src/StardewModdingAPI/Framework/Models/Manifest.cs index be781585..53384852 100644 --- a/src/StardewModdingAPI/Framework/Models/Manifest.cs +++ b/src/StardewModdingAPI/Framework/Models/Manifest.cs @@ -30,9 +30,11 @@ namespace StardewModdingAPI.Framework.Models /// <summary>The name of the DLL in the directory that has the <see cref="Mod.Entry"/> method.</summary> public string EntryDll { get; set; } +#if EXPERIMENTAL /// <summary>The other mods that must be loaded before this mod.</summary> [JsonConverter(typeof(ManifestFieldConverter))] public IManifestDependency[] Dependencies { get; set; } +#endif /// <summary>The unique mod ID.</summary> public string UniqueID { get; set; } |