Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Jun 26, 2024
1 parent e6648fb commit 44d98d4
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,14 @@ Copyright (C) 2016 Xamarin. All rights reserved.
This is because that target uses the Returns functionality. It turns out you cannot
modify the ItemGroup that is being returned via a Returns on a target.
-->
<Target Name="_RemoveResourceDesignerFromResolvedComilationReferences" BeforeTargets="CollectResolvedCompilationReferencesDesignTime" Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">
<Target Name="_RemoveResourceDesignerFromResolvedComilationReferences"
BeforeTargets="CollectResolvedCompilationReferencesDesignTime"
Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'"
>
<ItemGroup>
<_ResourceDesignerFiles Include="%(ReferencePathWithRefAssemblies.Identity)" Condition="'%(ReferencePathWithRefAssemblies.OriginalPath)' == '$(_GenerateResourceDesignerAssemblyOutput)'" />
<_ResourceDesignerFiles Include="%(ReferencePathWithRefAssemblies.Identity)"
Condition="'%(ReferencePathWithRefAssemblies.OriginalPath)' == '$(_GenerateResourceDesignerAssemblyOutput)'"
/>
<ReferencePathWithRefAssemblies Remove="@(_ResourceDesignerFiles)" />
</ItemGroup>
</Target>
Expand Down

0 comments on commit 44d98d4

Please sign in to comment.