Skip to content

Commit

Permalink
Only process assemblies that exist (#2864)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed May 20, 2024
1 parent bfd166e commit 1760351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/SkiaSharp.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ internal partial class VersionConstants {
<Target Name="_RemoveObsoleteItemsFromReferenceAssembly"
AfterTargets="CoreCompile"
Condition="'$(ProduceReferenceAssembly)' == 'true'">
<RemoveObsoleteSymbols Assembly="@(IntermediateRefAssembly)" />
<RemoveObsoleteSymbols Assembly="@(IntermediateRefAssembly)" Condition="Exists('@(IntermediateRefAssembly)')" />
</Target>

<!--
Expand Down

0 comments on commit 1760351

Please sign in to comment.