fix uninstaller not removing StardewModdingAPI.deps.json file

This commit is contained in:
Jesse Plamondon-Willard 2021-12-23 23:08:49 -05:00
parent 02831503dd
commit aad77242f0
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
2 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@
* SMAPI now auto-fixes maps loaded without a required tilesheet to prevent errors. * SMAPI now auto-fixes maps loaded without a required tilesheet to prevent errors.
* Added the new game build number to the SMAPI console + log. * Added the new game build number to the SMAPI console + log.
* Fixed outdated instructions in Steam error message. * Fixed outdated instructions in Steam error message.
* Fixed uninstaller not removing `StardewModdingAPI.deps.json` file.
* Simplified [running without a terminal on Linux/macOS](https://stardewvalleywiki.com/Modding:Player_Guide/Troubleshooting#SMAPI_doesn.27t_recognize_controller_.28Steam_only.29) when needed. * Simplified [running without a terminal on Linux/macOS](https://stardewvalleywiki.com/Modding:Player_Guide/Troubleshooting#SMAPI_doesn.27t_recognize_controller_.28Steam_only.29) when needed.
* Updated compatibility list. * Updated compatibility list.

View File

@ -41,6 +41,7 @@ namespace StardewModdingApi.Installer
// current files // current files
yield return GetInstallPath("StardewModdingAPI"); // Linux/macOS only yield return GetInstallPath("StardewModdingAPI"); // Linux/macOS only
yield return GetInstallPath("StardewModdingAPI.deps.json");
yield return GetInstallPath("StardewModdingAPI.dll"); yield return GetInstallPath("StardewModdingAPI.dll");
yield return GetInstallPath("StardewModdingAPI.exe"); yield return GetInstallPath("StardewModdingAPI.exe");
yield return GetInstallPath("StardewModdingAPI.exe.config"); yield return GetInstallPath("StardewModdingAPI.exe.config");