Skip to content

Commit

Permalink
[msbuild] Don't execute the CollectITunesSourceFiles target on deskto…
Browse files Browse the repository at this point in the history
…p platforms.
  • Loading branch information
rolfbjarne committed Jul 27, 2021
1 parent d22cf7d commit 1aaf940
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 @@ -1568,7 +1568,7 @@ Copyright (C) 2018 Microsoft. All rights reserved.

<CollectITunesSourceFiles
SessionId="$(BuildSessionId)"
Condition="'$(IsMacEnabled)' == 'true' And '@(_ITunesSourceFile)' == ''"
Condition="'$(IsMacEnabled)' == 'true' And '@(_ITunesSourceFile)' == '' And '$(_PlatformName)' != 'macOS' And '$(_PlatformName)' != 'MacCatalyst'"
OutputPath="$(DeviceSpecificOutputPath)"
>
<Output TaskParameter="ITunesSourceFiles" PropertyName="_ITunesSourceFile"/>
Expand Down

0 comments on commit 1aaf940

Please sign in to comment.