Skip to content

Commit

Permalink
Merge pull request #9599 from unoplatform/mergify/bp/release/stable/4…
Browse files Browse the repository at this point in the history
….4/pr-9592

fix: Remove duplicate analyzers (backport #9592)
  • Loading branch information
jeromelaban authored Aug 25, 2022
2 parents 1866ded + 01b120c commit 8db593d
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -450,4 +450,14 @@
<Compile Include="$(IntermediateOutputPath)\uno.reload.cookie.g.cs" />
</ItemGroup>
</Target>

<Target Name="_WPFIssue6792_RemoveDuplicateAnalyzers" BeforeTargets="CoreCompile">
<!-- Work around https://github.com/dotnet/wpf/issues/6792, remove for .NET 6.0.500 or later -->

<ItemGroup>
<FilteredAnalyzer Include="@(Analyzer-&gt;Distinct())" />
<Analyzer Remove="@(Analyzer)" />
<Analyzer Include="@(FilteredAnalyzer)" />
</ItemGroup>
</Target>
</Project>

0 comments on commit 8db593d

Please sign in to comment.