diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-04-24 23:46:52 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-14 17:46:57 -0400 |
commit | c15785a68d3e99959cdcca5bfb51e8686316a33b (patch) | |
tree | 37dc353948b513383e920e8865a454be724edc55 /src/SMAPI | |
parent | abffdc2dab2a1c03904427b251acac9d800e0912 (diff) | |
download | SMAPI-c15785a68d3e99959cdcca5bfb51e8686316a33b.tar.gz SMAPI-c15785a68d3e99959cdcca5bfb51e8686316a33b.tar.bz2 SMAPI-c15785a68d3e99959cdcca5bfb51e8686316a33b.zip |
simplify config.json and metadata.json names
Diffstat (limited to 'src/SMAPI')
-rw-r--r-- | src/SMAPI/Constants.cs | 4 | ||||
-rw-r--r-- | src/SMAPI/SMAPI.config.json (renamed from src/SMAPI/StardewModdingAPI.config.json) | 0 | ||||
-rw-r--r-- | src/SMAPI/SMAPI.csproj | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index 3ba3e6dd..8c925a58 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -59,10 +59,10 @@ namespace StardewModdingAPI internal static readonly string InternalFilesPath = Program.DllSearchPath; /// <summary>The file path for the SMAPI configuration file.</summary> - internal static string ApiConfigPath => Path.Combine(Constants.InternalFilesPath, "StardewModdingAPI.config.json"); + internal static string ApiConfigPath => Path.Combine(Constants.InternalFilesPath, "config.json"); /// <summary>The file path for the SMAPI metadata file.</summary> - internal static string ApiMetadataPath => Path.Combine(Constants.InternalFilesPath, "StardewModdingAPI.metadata.json"); + internal static string ApiMetadataPath => Path.Combine(Constants.InternalFilesPath, "metadata.json"); /// <summary>The filename prefix used for all SMAPI logs.</summary> internal static string LogNamePrefix { get; } = "SMAPI-"; diff --git a/src/SMAPI/StardewModdingAPI.config.json b/src/SMAPI/SMAPI.config.json index c04cceee..c04cceee 100644 --- a/src/SMAPI/StardewModdingAPI.config.json +++ b/src/SMAPI/SMAPI.config.json diff --git a/src/SMAPI/SMAPI.csproj b/src/SMAPI/SMAPI.csproj index 58a71f94..d723d954 100644 --- a/src/SMAPI/SMAPI.csproj +++ b/src/SMAPI/SMAPI.csproj @@ -42,11 +42,11 @@ </ItemGroup> <ItemGroup> - <Content Include="StardewModdingAPI.config.json"> + <Content Include="SMAPI.config.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> - <Content Include="..\SMAPI.Web\wwwroot\StardewModdingAPI.metadata.json"> - <Link>StardewModdingAPI.metadata.json</Link> + <Content Include="..\SMAPI.Web\wwwroot\SMAPI.metadata.json"> + <Link>SMAPI.metadata.json</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> <None Update="steam_appid.txt"> |