Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Incorrect Windows service type name #420

Merged
merged 1 commit into from
May 9, 2022
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
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
using System.IO;
using System;
using System.ComponentModel;
using System.IO;

namespace Microsoft.Maui.Graphics.Win2D
{
public class SkiaImageLoadingService : IImageLoadingService
public class W2DImageLoadingService : IImageLoadingService
{
public IImage FromStream(Stream stream, ImageFormat formatHint = ImageFormat.Png)
{
return W2DImage.FromStream(stream, formatHint);
}
}

[Obsolete]
[EditorBrowsable(EditorBrowsableState.Never)]
public class SkiaImageLoadingService : W2DImageLoadingService { }
}