Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion msbuild/Xamarin.Shared/Xamarin.Shared.targets
Original file line number Diff line number Diff line change
Expand Up @@ -2945,7 +2945,8 @@ Copyright (C) 2018 Microsoft. All rights reserved.
<!-- add frameworks, with the path relative to the app bundle -->
<!-- Use _FilteredFrameworkToPublish (from the _ComputeFrameworkFilesToPublish target) to only include dynamic frameworks
that will actually be present in the app bundle. Ref: https://github.com/dotnet/macios/issues/24840 -->
<_PostProcessingItem Include="@(_FilteredFrameworkToPublish->'$(_AppBundleName)$(AppBundleExtension)/$(_AppFrameworksRelativePath)%(Filename)%(Extension).framework/%(Filename)%(Extension)')">
<!-- The condition is necessary due to https://github.com/dotnet/msbuild/issues/4056 -->
<_PostProcessingItem Condition="@(_FilteredFrameworkToPublish->Count()) &gt; 0" Include="@(_FilteredFrameworkToPublish->'$(_AppBundleName)$(AppBundleExtension)/$(_AppFrameworksRelativePath)%(Filename)%(Extension).framework/%(Filename)%(Extension)')">
<!-- Store where this item came from -->
<ItemSourcePath>%(Identity)</ItemSourcePath>
<!-- If the item in question came with a .dSYM directory, this would be the path to it: -->
Expand Down
Loading