Skip to content

Commit

Permalink
[msbuild] Disable the CreateIpa target on macOS and Mac Catalyst.
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne committed Jul 28, 2021
1 parent 25f19ae commit aebc011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msbuild/Xamarin.Shared/Xamarin.Shared.targets
Original file line number Diff line number Diff line change
Expand Up @@ -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'" />

Expand Down

0 comments on commit aebc011

Please sign in to comment.