summaryrefslogtreecommitdiff
path: root/build/common.targets
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-05-31 21:23:44 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-05-31 21:23:44 -0400
commitbf960ce283d794a11885a5fde6f123a4e6827853 (patch)
tree00986f30b162bc511f3e010c54a0057dffdddc81 /build/common.targets
parent9992915f565578949cad8d9bb8ceb360e0db5c85 (diff)
downloadSMAPI-bf960ce283d794a11885a5fde6f123a4e6827853.tar.gz
SMAPI-bf960ce283d794a11885a5fde6f123a4e6827853.tar.bz2
SMAPI-bf960ce283d794a11885a5fde6f123a4e6827853.zip
add backwards compatibility for mods using now-unused dependencies
Diffstat (limited to 'build/common.targets')
-rw-r--r--build/common.targets5
1 files changed, 5 insertions, 0 deletions
diff --git a/build/common.targets b/build/common.targets
index b2441af8..10b94d7e 100644
--- a/build/common.targets
+++ b/build/common.targets
@@ -70,6 +70,11 @@
<!-- .NET dependencies -->
<Copy SourceFiles="$(TargetDir)\System.Management.dll" DestinationFolder="$(GamePath)\smapi-internal" Condition="$(OS) == 'Windows_NT'" />
+
+ <!-- Legacy .NET dependencies (remove in SMAPI 4.0.0) -->
+ <Copy SourceFiles="$(TargetDir)\System.Configuration.ConfigurationManager.dll" DestinationFolder="$(GamePath)\smapi-internal" />
+ <Copy SourceFiles="$(TargetDir)\System.Runtime.Caching.dll" DestinationFolder="$(GamePath)\smapi-internal" />
+ <Copy SourceFiles="$(TargetDir)\System.Security.Permissions.dll" DestinationFolder="$(GamePath)\smapi-internal" />
</Target>
<Target Name="CopyDefaultMods" Condition="'$(MSBuildProjectName)' == 'SMAPI.Mods.ConsoleCommands' OR '$(MSBuildProjectName)' == 'SMAPI.Mods.ErrorHandler' OR '$(MSBuildProjectName)' == 'SMAPI.Mods.SaveBackup'">