From dbe648486d8253d9c3785ebcb9c2b8935ea55d8b Mon Sep 17 00:00:00 2001 From: James Finlay Date: Mon, 7 Mar 2016 19:02:53 -0800 Subject: Use choose to select build location - Supports by reference & env var --- StardewModdingAPI/StardewModdingAPI.csproj | 16 ++++++++++++++-- TrainerMod/TrainerMod.csproj | 16 ++++++++++++++-- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/StardewModdingAPI/StardewModdingAPI.csproj b/StardewModdingAPI/StardewModdingAPI.csproj index c2da6299..523ab7bd 100644 --- a/StardewModdingAPI/StardewModdingAPI.csproj +++ b/StardewModdingAPI/StardewModdingAPI.csproj @@ -36,6 +36,18 @@ true + + + + $(SteamInstallPath) + + + + + ..\..\..\..\Games\SteamLibrary + + + x86 true @@ -80,7 +92,7 @@ False - ..\..\..\..\Games\SteamLibrary\steamapps\common\Stardew Valley\Stardew Valley.exe + $(SteamPath)\steamapps\common\Stardew Valley\Stardew Valley.exe @@ -93,7 +105,7 @@ False - ..\..\..\..\Games\SteamLibrary\steamapps\common\Stardew Valley\xTile.dll + $(SteamPath)\steamapps\common\Stardew Valley\xTile.dll diff --git a/TrainerMod/TrainerMod.csproj b/TrainerMod/TrainerMod.csproj index 9c2f10a4..ddf1b317 100644 --- a/TrainerMod/TrainerMod.csproj +++ b/TrainerMod/TrainerMod.csproj @@ -33,6 +33,18 @@ 4 false + + + + $(SteamInstallPath) + + + + + ..\..\..\..\Games\SteamLibrary + + + False @@ -41,7 +53,7 @@ False - ..\..\..\..\Games\SteamLibrary\steamapps\common\Stardew Valley\Stardew Valley.exe + $(SteamPath)\steamapps\common\Stardew Valley\Stardew Valley.exe False @@ -53,7 +65,7 @@ - ..\..\..\..\Games\SteamLibrary\steamapps\common\Stardew Valley\xTile.dll + $(SteamPath)\steamapps\common\Stardew Valley\xTile.dll False -- cgit