fix uninstaller not removing StardewModdingAPI.deps.json file
This commit is contained in:
parent
02831503dd
commit
aad77242f0
|
@ -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.
|
||||||
|
|
||||||
|
|
|
@ -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");
|
||||||
|
|
Loading…
Reference in New Issue