From 2b5723067c1520cc045ccd925699de9b0eb7c1a1 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 17 Nov 2020 09:30:08 +0100 Subject: [PATCH] [tools] Catalyst apps require Xcode header files in the same circumstances as other Xamarin.iOS platforms. When linking is disabled. --- tools/common/Application.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/common/Application.cs b/tools/common/Application.cs index baeb19fe3a..5720795d11 100644 --- a/tools/common/Application.cs +++ b/tools/common/Application.cs @@ -230,6 +230,7 @@ namespace Xamarin.Bundler { case ApplePlatform.iOS: case ApplePlatform.TVOS: case ApplePlatform.WatchOS: + case ApplePlatform.MacCatalyst: return LinkMode == LinkMode.None; case ApplePlatform.MacOSX: return Registrar == RegistrarMode.Static && LinkMode == LinkMode.None;