From 9420dfb0719d7f00c36607a210c50dc4537a9626 Mon Sep 17 00:00:00 2001 From: James Finlay Date: Fri, 4 Mar 2016 20:17:42 -0800 Subject: Modify default steam path - Tries to read from ENV variable 'SteamInstallPath'. - We can investigate using a choose for normal Steam installation paths, this'll be better for now than having to modify the csproj for every dev. --- StardewModdingAPI/StardewModdingAPI.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'StardewModdingAPI') diff --git a/StardewModdingAPI/StardewModdingAPI.csproj b/StardewModdingAPI/StardewModdingAPI.csproj index d6a3d01c..3248a3a5 100644 --- a/StardewModdingAPI/StardewModdingAPI.csproj +++ b/StardewModdingAPI/StardewModdingAPI.csproj @@ -72,7 +72,7 @@ False - ..\..\..\..\Games\SteamLibrary\steamapps\common\Stardew Valley\Stardew Valley.exe + $(SteamInstallPath)\steamapps\common\Stardew Valley\Stardew Valley.exe False True @@ -87,7 +87,7 @@ False - ..\..\..\..\Games\SteamLibrary\steamapps\common\Stardew Valley\xTile.dll + $(SteamInstallPath)\steamapps\common\Stardew Valley\xTile.dll True -- cgit