diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-12-12 18:44:38 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-12-12 18:44:38 -0500 |
commit | 356503325f4ef5ed84c359d4b56991c2a7f18b8e (patch) | |
tree | 933ad57036c166a0e319bd1452f0def093ec0add /build | |
parent | a391dfe26372714a395abc5ee77b603e29562691 (diff) | |
download | SMAPI-356503325f4ef5ed84c359d4b56991c2a7f18b8e.tar.gz SMAPI-356503325f4ef5ed84c359d4b56991c2a7f18b8e.tar.bz2 SMAPI-356503325f4ef5ed84c359d4b56991c2a7f18b8e.zip |
fix compatibility on Mac (#409)
Diffstat (limited to 'build')
-rw-r--r-- | build/prepare-install-package.targets | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/prepare-install-package.targets b/build/prepare-install-package.targets index e88ca273..f8262271 100644 --- a/build/prepare-install-package.targets +++ b/build/prepare-install-package.targets @@ -24,6 +24,7 @@ <!-- copy SMAPI files for Mono --> <Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\ImpromptuInterface.dll" DestinationFolder="$(PackageInternalPath)\Mono" /> <Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\Mono.Cecil.dll" DestinationFolder="$(PackageInternalPath)\Mono" /> + <Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\Mono.CSharp.dll" DestinationFolder="$(PackageInternalPath)\Mono" /> <Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\Newtonsoft.Json.dll" DestinationFolder="$(PackageInternalPath)\Mono" /> <Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\StardewModdingAPI.exe" DestinationFolder="$(PackageInternalPath)\Mono" /> <Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\StardewModdingAPI.pdb" DestinationFolder="$(PackageInternalPath)\Mono" /> |