diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-13 17:22:45 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-13 17:22:45 -0400 |
commit | 125bcbee56bf40cf82abc7fdb502f8cbc18546cf (patch) | |
tree | 788997dd4683867b6e32e307c17c855bd7209d98 /src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifest.cs | |
parent | 56726073ba65a018312bcd9db7072381073de315 (diff) | |
download | SMAPI-125bcbee56bf40cf82abc7fdb502f8cbc18546cf.tar.gz SMAPI-125bcbee56bf40cf82abc7fdb502f8cbc18546cf.tar.bz2 SMAPI-125bcbee56bf40cf82abc7fdb502f8cbc18546cf.zip |
migrate to new project file format
Diffstat (limited to 'src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifest.cs')
-rw-r--r-- | src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifest.cs | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifest.cs b/src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifest.cs deleted file mode 100644 index 7375f005..00000000 --- a/src/StardewModdingAPI.Toolkit.CoreInterfaces/IManifest.cs +++ /dev/null @@ -1,44 +0,0 @@ -using System.Collections.Generic; - -namespace StardewModdingAPI -{ - /// <summary>A manifest which describes a mod for SMAPI.</summary> - public interface IManifest - { - /********* - ** Accessors - *********/ - /// <summary>The mod name.</summary> - string Name { get; } - - /// <summary>A brief description of the mod.</summary> - string Description { get; } - - /// <summary>The mod author's name.</summary> - string Author { get; } - - /// <summary>The mod version.</summary> - ISemanticVersion Version { get; } - - /// <summary>The minimum SMAPI version required by this mod, if any.</summary> - ISemanticVersion MinimumApiVersion { get; } - - /// <summary>The unique mod ID.</summary> - string UniqueID { get; } - - /// <summary>The name of the DLL in the directory that has the <c>Entry</c> method. Mutually exclusive with <see cref="ContentPackFor"/>.</summary> - string EntryDll { get; } - - /// <summary>The mod which will read this as a content pack. Mutually exclusive with <see cref="EntryDll"/>.</summary> - IManifestContentPackFor ContentPackFor { get; } - - /// <summary>The other mods that must be loaded before this mod.</summary> - IManifestDependency[] Dependencies { get; } - - /// <summary>The namespaced mod IDs to query for updates (like <c>Nexus:541</c>).</summary> - string[] UpdateKeys { get; } - - /// <summary>Any manifest fields which didn't match a valid field.</summary> - IDictionary<string, object> ExtraFields { get; } - } -} |