summaryrefslogtreecommitdiff
path: root/src/SMAPI.ModBuildConfig/build
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-06-11 20:23:20 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-09-14 18:03:23 -0400
commitd5a7465b0219c3d736b1ac5aff1758ba41887fcc (patch)
treec592c6f761597e647aba7303fe643ec27c5728ba /src/SMAPI.ModBuildConfig/build
parent4f87da342645617c2ff6c46c5ba8f0d9bb0ecb40 (diff)
downloadSMAPI-d5a7465b0219c3d736b1ac5aff1758ba41887fcc.tar.gz
SMAPI-d5a7465b0219c3d736b1ac5aff1758ba41887fcc.tar.bz2
SMAPI-d5a7465b0219c3d736b1ac5aff1758ba41887fcc.zip
add mod build features for new csproj format
Diffstat (limited to 'src/SMAPI.ModBuildConfig/build')
-rw-r--r--src/SMAPI.ModBuildConfig/build/smapi.targets7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/SMAPI.ModBuildConfig/build/smapi.targets b/src/SMAPI.ModBuildConfig/build/smapi.targets
index 79a491e7..e9209a45 100644
--- a/src/SMAPI.ModBuildConfig/build/smapi.targets
+++ b/src/SMAPI.ModBuildConfig/build/smapi.targets
@@ -13,6 +13,13 @@
<!-- set build options -->
<PropertyGroup>
+ <!-- set build to x86 to avoid mismatched platform warnings (only affects mods using new csproj format) -->
+ <Platforms>x86</Platforms>
+ <PlatformTarget>x86</PlatformTarget>
+
+ <!-- recognise XNA Framework DLLs in the GAC (only affects mods using new csproj format) -->
+ <AssemblySearchPaths>$(AssemblySearchPaths);{GAC}</AssemblySearchPaths>
+
<!-- set default package options -->
<ModFolderName Condition="'$(ModFolderName)' == ''">$(MSBuildProjectName)</ModFolderName>
<ModZipPath Condition="'$(ModZipPath)' == ''">$(TargetDir)</ModZipPath>