summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-12-15 21:37:08 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-12-15 21:37:08 -0500
commit21fd2d1e39a6a94758f6298c2da52cd46cffdfcd (patch)
tree2b9a0e6259acd6f723b87f20f1274dd0f7bcadcb /build
parent356503325f4ef5ed84c359d4b56991c2a7f18b8e (diff)
downloadSMAPI-21fd2d1e39a6a94758f6298c2da52cd46cffdfcd.tar.gz
SMAPI-21fd2d1e39a6a94758f6298c2da52cd46cffdfcd.tar.bz2
SMAPI-21fd2d1e39a6a94758f6298c2da52cd46cffdfcd.zip
emit proxy classes directly to simplify crossplatform compatibility (#409)
Diffstat (limited to 'build')
-rw-r--r--build/common.targets1
-rw-r--r--build/prepare-install-package.targets2
2 files changed, 0 insertions, 3 deletions
diff --git a/build/common.targets b/build/common.targets
index 15c935e3..aa11344e 100644
--- a/build/common.targets
+++ b/build/common.targets
@@ -86,7 +86,6 @@
<Copy SourceFiles="$(TargetDir)\StardewModdingAPI.AssemblyRewriters.dll" DestinationFolder="$(GamePath)" />
<Copy SourceFiles="$(TargetDir)\$(TargetName).pdb" DestinationFolder="$(GamePath)" />
<Copy SourceFiles="$(TargetDir)\$(TargetName).xml" DestinationFolder="$(GamePath)" />
- <Copy SourceFiles="$(TargetDir)\ImpromptuInterface.dll" DestinationFolder="$(GamePath)" />
<Copy SourceFiles="$(TargetDir)\Newtonsoft.Json.dll" DestinationFolder="$(GamePath)" />
<Copy SourceFiles="$(TargetDir)\Mono.Cecil.dll" DestinationFolder="$(GamePath)" />
</Target>
diff --git a/build/prepare-install-package.targets b/build/prepare-install-package.targets
index f8262271..dde2ff0a 100644
--- a/build/prepare-install-package.targets
+++ b/build/prepare-install-package.targets
@@ -22,7 +22,6 @@
<Copy SourceFiles="$(TargetDir)\readme.txt" DestinationFiles="$(PackagePath)\README.txt" />
<!-- 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" />
@@ -38,7 +37,6 @@
<Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="@(CompiledMods)" DestinationFolder="$(PackageInternalPath)\Mono\Mods\%(RecursiveDir)" />
<!-- copy SMAPI files for Windows -->
- <Copy Condition="$(OS) == 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\ImpromptuInterface.dll" DestinationFolder="$(PackageInternalPath)\Windows" />
<Copy Condition="$(OS) == 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\Mono.Cecil.dll" DestinationFolder="$(PackageInternalPath)\Windows" />
<Copy Condition="$(OS) == 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\Newtonsoft.Json.dll" DestinationFolder="$(PackageInternalPath)\Windows" />
<Copy Condition="$(OS) == 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\StardewModdingAPI.exe" DestinationFolder="$(PackageInternalPath)\Windows" />