diff options
author | Drachenkaetzchen <felicia@drachenkatze.org> | 2020-01-10 01:27:56 +0100 |
---|---|---|
committer | Drachenkaetzchen <felicia@drachenkatze.org> | 2020-01-10 01:27:56 +0100 |
commit | a751252c4ee3b48977d5d24c36a4e4e5466f93db (patch) | |
tree | 6de90dd8c6a5199fa49c84a9a089dda29a1758d6 /build/prepare-install-package.targets | |
parent | ceff27c9a82bb16358aa0f390ce3f346c06c47bc (diff) | |
download | SMAPI-a751252c4ee3b48977d5d24c36a4e4e5466f93db.tar.gz SMAPI-a751252c4ee3b48977d5d24c36a4e4e5466f93db.tar.bz2 SMAPI-a751252c4ee3b48977d5d24c36a4e4e5466f93db.zip |
Initial commit of the performance counters
Diffstat (limited to 'build/prepare-install-package.targets')
-rw-r--r-- | build/prepare-install-package.targets | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/build/prepare-install-package.targets b/build/prepare-install-package.targets index 4297756d..96716ecb 100644 --- a/build/prepare-install-package.targets +++ b/build/prepare-install-package.targets @@ -1,9 +1,9 @@ <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- - + This build task is run from the installer project after all projects have been compiled, and creates the build package in the bin\Packages folder. - + --> <Target Name="PrepareInstaller" AfterTargets="AfterBuild"> <PropertyGroup> @@ -24,7 +24,7 @@ <!-- reset package directory --> <RemoveDir Directories="$(PackagePath)" /> <RemoveDir Directories="$(PackageDevPath)" /> - + <!-- copy installer files --> <Copy SourceFiles="$(TargetDir)\unix-install.sh" DestinationFiles="$(PackagePath)\install on Linux.sh" /> <Copy SourceFiles="$(TargetDir)\unix-install.sh" DestinationFiles="$(PackagePath)\install on Mac.command" /> @@ -41,6 +41,7 @@ <Copy SourceFiles="$(CompiledSmapiPath)\0Harmony.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" /> <Copy SourceFiles="$(CompiledSmapiPath)\Mono.Cecil.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" /> <Copy SourceFiles="$(CompiledSmapiPath)\Newtonsoft.Json.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" /> + <Copy SourceFiles="$(CompiledSmapiPath)\Cyotek.Collections.Generic.CircularBuffer.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" /> <Copy SourceFiles="$(CompiledSmapiPath)\SMAPI.config.json" DestinationFiles="$(PackagePath)\bundle\smapi-internal\config.json" /> <Copy SourceFiles="$(CompiledSmapiPath)\SMAPI.metadata.json" DestinationFiles="$(PackagePath)\bundle\smapi-internal\metadata.json" /> <Copy SourceFiles="$(CompiledToolkitPath)\SMAPI.Toolkit.dll" DestinationFolder="$(PackagePath)\bundle\smapi-internal" /> |