Skip to content

Commit

Permalink
chore: diff ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ramezgerges committed Feb 11, 2025
1 parent 716c3f9 commit e3eeaaa
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions build/PackageDiffIgnore.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1989,6 +1989,27 @@
</Methods>
</IgnoreSet>

<IgnoreSet baseVersion="5.6">
<Assemblies>
</Assemblies>

<Types>
</Types>

<Events>
</Events>

<Fields>
</Fields>

<Properties>
</Properties>

<Methods>
<Member fullName="SkiaSharp.SKPicture Uno.UI.Xaml.Media.Imaging.Svg.ISvgProvider::TryGetLoadedDataAsPictureAsync()" reason="Needed internally for ImageBrushes with SVG assets." />
</Methods>
</IgnoreSet>

<![CDATA[
The 'baseVersion' should be the current latest stable version published on nuget,
NOT what will be published by the PR in progress.
Expand Down
2 changes: 1 addition & 1 deletion src/Uno.UI/UI/Xaml/Media/Imaging/Svg/ISvgProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public interface ISvgProvider
Task<bool> TryLoadSvgDataAsync(byte[] imageData);

#if __SKIA__
SKPicture? TryGetLoadedDataAsPictureAsync();
SKPicture? TryGetLoadedDataAsPictureAsync() => default;
#endif

void Unload();
Expand Down

0 comments on commit e3eeaaa

Please sign in to comment.