From 4ffaf3fbe69ba211f9b75dfbf575193c2e578226 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 24 Dec 2019 01:55:52 +0100 Subject: [PATCH] Try to fix Dapper.dll not getting copied in server builds. --- Tools/package_release_build.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Tools/package_release_build.py b/Tools/package_release_build.py index 13232e2deb..4603f78575 100755 --- a/Tools/package_release_build.py +++ b/Tools/package_release_build.py @@ -73,6 +73,10 @@ MAC_NATIVES = { "libswnfd.dylib" } +SERVER_EXTRA_CONTENT_ASSEMBLIES = [ + "Dapper.dll" +] + def main() -> None: parser = argparse.ArgumentParser( description="Packages the SS14 content repo for release on all platforms.") @@ -319,7 +323,7 @@ def copy_dir_into_zip(directory, basepath, zipf): def copy_content_assemblies(target, zipf, server): if server: source_dir = p("bin", "Content.Server") - files = ["Content.Shared.dll", "Content.Server.dll"] + files = ["Content.Shared.dll", "Content.Server.dll"] + SERVER_EXTRA_CONTENT_ASSEMBLIES else: source_dir = p("bin", "Content.Client") files = ["Content.Shared.dll", "Content.Client.dll"]