diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-03-11 19:09:08 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-03-11 19:09:08 -0400 |
commit | 41715cefcde3c838bb079cb37aac5a3b2dcb1004 (patch) | |
tree | 88d5d6c035acb9a2b48fb60f635ccb2156788e9f /build/common.targets | |
parent | 80315ec46695d9c2b1121a0a6208105d7e165e89 (diff) | |
download | SMAPI-41715cefcde3c838bb079cb37aac5a3b2dcb1004.tar.gz SMAPI-41715cefcde3c838bb079cb37aac5a3b2dcb1004.tar.bz2 SMAPI-41715cefcde3c838bb079cb37aac5a3b2dcb1004.zip |
add initial compatibility with Stardew Valley 1.3 (#453)
Diffstat (limited to 'build/common.targets')
-rw-r--r-- | build/common.targets | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/common.targets b/build/common.targets index aa11344e..6773dbe4 100644 --- a/build/common.targets +++ b/build/common.targets @@ -38,6 +38,10 @@ <Reference Include="Microsoft.Xna.Framework.Xact, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86"> <Private>False</Private> </Reference> + <Reference Include="Netcode" Condition="Exists('$(GamePath)\Netcode.dll')"> + <HintPath>$(GamePath)\Netcode.dll</HintPath> + <Private Condition="'$(MSBuildProjectName)' != 'StardewModdingAPI.Tests'">False</Private> + </Reference> <Reference Include="Stardew Valley"> <HintPath>$(GamePath)\Stardew Valley.exe</HintPath> <Private Condition="'$(MSBuildProjectName)' != 'StardewModdingAPI.Tests'">False</Private> |