From 81753d78452d8a4ee5bceac7df61d3cb98af008b Mon Sep 17 00:00:00 2001 From: Dean Ellis Date: Fri, 23 Jan 2026 10:51:24 +0000 Subject: [PATCH] Change MacOS Deployment Target to 10.5 --- build/BuildMacOSTask.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/BuildMacOSTask.cs b/build/BuildMacOSTask.cs index 2d5a644..3bffd97 100644 --- a/build/BuildMacOSTask.cs +++ b/build/BuildMacOSTask.cs @@ -55,6 +55,11 @@ public override void Run(BuildContext context) "cp *.a Dist", "cp *.dylib Dist"); + context.ReplaceTextInFiles( + makeFilePattern, + "MACOSX_DEPLOYMENT_TARGET = 10.11", + "MACOSX_DEPLOYMENT_TARGET = 10.5"); + // generate x86_64 and arm64 at once if (context.IsUniversalBinary) {