Fix server launcher connectivity by including Content.Packaging assembly

The server was failing to create ACZ packages for launcher clients because
Content.Packaging.dll was not included in the packaged server deployments.
This caused a FileNotFoundException when ContentMagicAczProvider attempted
to call ClientPackaging.WriteResources at runtime.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Wylabb
2025-12-14 10:15:07 +01:00
committed by Codex
parent f92728c3c6
commit ea7d8e012b

View File

@@ -47,6 +47,7 @@ public static class ServerPackaging
"Content.Server", "Content.Server",
"Content.Shared", "Content.Shared",
"Content.Shared.Database", "Content.Shared.Database",
"Content.Packaging",
}; };
private static readonly List<string> ServerExtraAssemblies = new() private static readonly List<string> ServerExtraAssemblies = new()