[msbuild] Disable the CreateIpa target on macOS and Mac Catalyst.

This commit is contained in:
Rolf Bjarne Kvinge 2021-07-28 18:27:35 +02:00
Родитель 25f19ae78a
Коммит aebc0117dc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1667,7 +1667,7 @@ Copyright (C) 2018 Microsoft. All rights reserved.
<Target Name="_BeforeCreateIpaForDistribution" Condition="'$(IsAppDistribution)' == 'true'" DependsOnTargets="$(_BeforeCreateIpaForDistributionDependsOn)" />
<Target Name="CreateIpa" Condition="'$(_CanArchive)' == 'true'" DependsOnTargets="$(CreateIpaDependsOn)" />
<Target Name="CreateIpa" Condition="'$(_CanArchive)' == 'true' And '$(_PlatformName)' != 'macOS' And '$(_PlatformName)' != 'MacCatalyst'" DependsOnTargets="$(CreateIpaDependsOn)" />
<Import Project="$(MSBuildThisFileDirectory)Xamarin.Shared.ObjCBinding.targets" Condition="'$(IsBindingProject)' == 'true'" />