diff options
| author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-02-01 00:27:53 -0500 |
|---|---|---|
| committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-02-01 00:27:53 -0500 |
| commit | c8191449a00e3db08214e3b1146e17f89f0245c5 (patch) | |
| tree | 8cbd42ac3585e11d8a05f58e87f652c4c136aec5 /build/common.targets | |
| parent | 125b38c6e62d86115045c2cece6c6c3d1da35600 (diff) | |
| download | SMAPI-c8191449a00e3db08214e3b1146e17f89f0245c5.tar.gz SMAPI-c8191449a00e3db08214e3b1146e17f89f0245c5.tar.bz2 SMAPI-c8191449a00e3db08214e3b1146e17f89f0245c5.zip | |
add support for *.tmx map files
Diffstat (limited to 'build/common.targets')
| -rw-r--r-- | build/common.targets | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/common.targets b/build/common.targets index df2d4861..cfdcccca 100644 --- a/build/common.targets +++ b/build/common.targets @@ -31,8 +31,9 @@ <Copy SourceFiles="$(TargetDir)\SMAPI.config.json" DestinationFiles="$(GamePath)\smapi-internal\config.json" /> <Copy SourceFiles="$(TargetDir)\SMAPI.metadata.json" DestinationFiles="$(GamePath)\smapi-internal\metadata.json" /> <Copy SourceFiles="$(TargetDir)\0Harmony.dll" DestinationFolder="$(GamePath)\smapi-internal" /> - <Copy SourceFiles="$(TargetDir)\Newtonsoft.Json.dll" DestinationFolder="$(GamePath)\smapi-internal" /> <Copy SourceFiles="$(TargetDir)\Mono.Cecil.dll" DestinationFolder="$(GamePath)\smapi-internal" /> + <Copy SourceFiles="$(TargetDir)\Newtonsoft.Json.dll" DestinationFolder="$(GamePath)\smapi-internal" /> + <Copy SourceFiles="$(TargetDir)\TMXTile.dll" DestinationFolder="$(GamePath)\smapi-internal" /> <Copy SourceFiles="@(TranslationFiles)" DestinationFolder="$(GamePath)\smapi-internal\i18n" /> </Target> <Target Name="CopyDefaultMods" Condition="'$(MSBuildProjectName)' == 'SMAPI.Mods.ConsoleCommands' OR '$(MSBuildProjectName)' == 'SMAPI.Mods.SaveBackup'"> |
