diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-04-02 21:30:55 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-04-02 21:30:55 -0400 |
commit | 3fa0433c9862d1922cd0540848d2bd8716934d1f (patch) | |
tree | 2b09a736395b9bda09e3a4c408cdff51dbd63f81 /src/SMAPI.Mods.ErrorHandler/SMAPI.Mods.ErrorHandler.csproj | |
parent | 62c1f11109b3a16e4e1d526e8ddc891015c507b0 (diff) | |
download | SMAPI-3fa0433c9862d1922cd0540848d2bd8716934d1f.tar.gz SMAPI-3fa0433c9862d1922cd0540848d2bd8716934d1f.tar.bz2 SMAPI-3fa0433c9862d1922cd0540848d2bd8716934d1f.zip |
add initial support for 64-bit Windows hack (#767)
Diffstat (limited to 'src/SMAPI.Mods.ErrorHandler/SMAPI.Mods.ErrorHandler.csproj')
-rw-r--r-- | src/SMAPI.Mods.ErrorHandler/SMAPI.Mods.ErrorHandler.csproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Mods.ErrorHandler/SMAPI.Mods.ErrorHandler.csproj b/src/SMAPI.Mods.ErrorHandler/SMAPI.Mods.ErrorHandler.csproj index 788f6f16..56daa710 100644 --- a/src/SMAPI.Mods.ErrorHandler/SMAPI.Mods.ErrorHandler.csproj +++ b/src/SMAPI.Mods.ErrorHandler/SMAPI.Mods.ErrorHandler.csproj @@ -19,7 +19,7 @@ <!-- Windows only --> <ItemGroup Condition="'$(OS)' == 'Windows_NT'"> - <Reference Include="Netcode" HintPath="$(GamePath)\Netcode.dll" Private="False" /> + <Reference Include="Netcode" HintPath="$(GamePath)\Netcode.dll" Private="False" Condition="!$(DefineConstants.Contains(SMAPI_FOR_WINDOWS_64BIT_HACK))" /> </ItemGroup> <!-- Game framework --> |