summaryrefslogtreecommitdiff
path: root/build/prepare-nuget-package.targets
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-06-18 23:10:11 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-09-14 18:11:21 -0400
commitb3e4162f7cb4d855f7c36def4657209cbd18ba52 (patch)
tree2692e3fc418416f9a55e7734c259ae49e45097ff /build/prepare-nuget-package.targets
parent601f22b296f2eac945b63275a2e80c1841f94083 (diff)
downloadSMAPI-b3e4162f7cb4d855f7c36def4657209cbd18ba52.tar.gz
SMAPI-b3e4162f7cb4d855f7c36def4657209cbd18ba52.tar.bz2
SMAPI-b3e4162f7cb4d855f7c36def4657209cbd18ba52.zip
move <GamePath> logic into separate .targets file file for reuse
Diffstat (limited to 'build/prepare-nuget-package.targets')
-rw-r--r--build/prepare-nuget-package.targets1
1 files changed, 1 insertions, 0 deletions
diff --git a/build/prepare-nuget-package.targets b/build/prepare-nuget-package.targets
index cafaeda6..9c1d9c2a 100644
--- a/build/prepare-nuget-package.targets
+++ b/build/prepare-nuget-package.targets
@@ -11,6 +11,7 @@
</PropertyGroup>
<RemoveDir Directories="$(PackagePath)" />
<Copy SourceFiles="$(ProjectDir)/package.nuspec" DestinationFolder="$(PackagePath)" />
+ <Copy SourceFiles="$(SolutionDir)/../build/find-game-folder.targets" DestinationFolder="$(PackagePath)/build" />
<Copy SourceFiles="$(ProjectDir)/build/smapi.targets" DestinationFiles="$(PackagePath)/build/Pathoschild.Stardew.ModBuildConfig.targets" />
<Copy SourceFiles="$(TargetDir)/Newtonsoft.Json.dll" DestinationFolder="$(PackagePath)/build" />
<Copy SourceFiles="$(TargetDir)/SMAPI.ModBuildConfig.dll" DestinationFolder="$(PackagePath)/build" />