diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-11-21 19:25:53 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-11-25 23:41:19 -0500 |
commit | 517a9d82fc1234b6c6ae6f1e45ef7c0f160ee6c5 (patch) | |
tree | 5ef7e0890758783d9107650fefe36429debc7154 /src/StardewModdingAPI.Installer | |
parent | 00a3c14446b716fc32c63bccf12c79bdbee436d1 (diff) | |
download | SMAPI-517a9d82fc1234b6c6ae6f1e45ef7c0f160ee6c5.tar.gz SMAPI-517a9d82fc1234b6c6ae6f1e45ef7c0f160ee6c5.tar.bz2 SMAPI-517a9d82fc1234b6c6ae6f1e45ef7c0f160ee6c5.zip |
preprocess mods through Mono.Cecil to allow rewriting later (#166)
Diffstat (limited to 'src/StardewModdingAPI.Installer')
-rw-r--r-- | src/StardewModdingAPI.Installer/StardewModdingAPI.Installer.csproj | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/StardewModdingAPI.Installer/StardewModdingAPI.Installer.csproj b/src/StardewModdingAPI.Installer/StardewModdingAPI.Installer.csproj index 6f9ed2eb..23e2d278 100644 --- a/src/StardewModdingAPI.Installer/StardewModdingAPI.Installer.csproj +++ b/src/StardewModdingAPI.Installer/StardewModdingAPI.Installer.csproj @@ -67,6 +67,7 @@ <Copy SourceFiles="$(TargetDir)\readme.txt" DestinationFiles="$(CompiledInstallerPath)\readme.txt" /> <!-- copy SMAPI files for Mono --> <Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\Newtonsoft.Json.dll" DestinationFolder="$(CompiledInstallerPath)\Mono" /> + <Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\Mono.Cecil.dll" DestinationFolder="$(CompiledInstallerPath)\Mono" /> <Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\StardewModdingAPI.exe" DestinationFolder="$(CompiledInstallerPath)\Mono" /> <Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\StardewModdingAPI.exe.mdb" DestinationFolder="$(CompiledInstallerPath)\Mono" /> <Copy Condition="$(OS) != 'Windows_NT'" SourceFiles="$(CompiledSmapiPath)\StardewModdingAPI-settings.json" DestinationFolder="$(CompiledInstallerPath)\Mono" /> |