diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-07 16:58:55 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-07 16:58:55 -0400 |
commit | e61f060b965150a0dccfd032871fe905097881fd (patch) | |
tree | 83bee5b282a3ae6bea37dac70d7eae5000183c35 /src/crossplatform.targets | |
parent | 7e856106b89755e7e5f8f90cafe827c50eb62e39 (diff) | |
download | SMAPI-e61f060b965150a0dccfd032871fe905097881fd.tar.gz SMAPI-e61f060b965150a0dccfd032871fe905097881fd.tar.bz2 SMAPI-e61f060b965150a0dccfd032871fe905097881fd.zip |
simplify stardewvalley.targets support, add to release notes (#319)
Diffstat (limited to 'src/crossplatform.targets')
-rw-r--r-- | src/crossplatform.targets | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crossplatform.targets b/src/crossplatform.targets index 31d4722d..929aac6c 100644 --- a/src/crossplatform.targets +++ b/src/crossplatform.targets @@ -1,4 +1,6 @@ <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Condition="$(OS) != 'Windows_NT' AND Exists('$(HOME)\stardewvalley.targets')" Project="$(HOME)\stardewvalley.targets" /> + <Import Condition="$(OS) == 'Windows_NT' AND Exists('$(USERPROFILE)\stardewvalley.targets')" Project="$(USERPROFILE)\stardewvalley.targets" /> <PropertyGroup> <!-- Linux paths --> <GamePath Condition="!Exists('$(GamePath)')">$(HOME)/GOG Games/Stardew Valley/game</GamePath> |