diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-12-04 20:25:53 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-12-04 20:25:53 -0500 |
commit | cc35dbdb3d1fe0a82557857a72d842f1217812c2 (patch) | |
tree | c7167ad6f25dcaa429c3fb6852351a60520e90ea /src/SMAPI | |
parent | c80d07fddfffe4fd3f8fa69bf6cab6374eec992d (diff) | |
download | SMAPI-cc35dbdb3d1fe0a82557857a72d842f1217812c2.tar.gz SMAPI-cc35dbdb3d1fe0a82557857a72d842f1217812c2.tar.bz2 SMAPI-cc35dbdb3d1fe0a82557857a72d842f1217812c2.zip |
fix self-contained install on Windows
Diffstat (limited to 'src/SMAPI')
-rw-r--r-- | src/SMAPI/SMAPI.csproj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI/SMAPI.csproj b/src/SMAPI/SMAPI.csproj index b99028da..f07ede87 100644 --- a/src/SMAPI/SMAPI.csproj +++ b/src/SMAPI/SMAPI.csproj @@ -13,6 +13,9 @@ <!--copy dependency DLLs to bin folder so we can include them in installer bundle --> <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> + + <!-- tiered compilation breaks Harmony --> + <TieredCompilation>false</TieredCompilation> </PropertyGroup> <Import Project="..\..\build\common.targets" /> |