diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-12-22 12:47:12 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-12-22 12:47:12 -0500 |
commit | fdae87d340e90793ed00fa1766baf9dbd5bec9b6 (patch) | |
tree | 04f6640c912ccee58135e559233eaab0d05322c1 /src/StardewModdingAPI/Constants.cs | |
parent | 3fd16a65f181c710fbbe872f36428176efee7ffb (diff) | |
download | SMAPI-fdae87d340e90793ed00fa1766baf9dbd5bec9b6.tar.gz SMAPI-fdae87d340e90793ed00fa1766baf9dbd5bec9b6.tar.bz2 SMAPI-fdae87d340e90793ed00fa1766baf9dbd5bec9b6.zip |
skip mods known to be incompatible and display error with update links (#192)
Diffstat (limited to 'src/StardewModdingAPI/Constants.cs')
-rw-r--r-- | src/StardewModdingAPI/Constants.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/Constants.cs b/src/StardewModdingAPI/Constants.cs index 6df9b76c..4f7a0c6e 100644 --- a/src/StardewModdingAPI/Constants.cs +++ b/src/StardewModdingAPI/Constants.cs @@ -71,6 +71,9 @@ namespace StardewModdingAPI /// <summary>The file path for the SMAPI configuration file.</summary> internal static string ApiConfigPath => Path.Combine(Constants.ExecutionPath, $"{typeof(Program).Assembly.GetName().Name}.config.json"); + /// <summary>The file path for the SMAPI data file containing metadata about known mods.</summary> + internal static string ApiModMetadataPath => Path.Combine(Constants.ExecutionPath, $"{typeof(Program).Assembly.GetName().Name}.data.json"); + /********* ** Protected methods |