| Field | Value |
|---|---|
| Repository | mono/SkiaSharp |
| Analyzed | 2026-04-17T22:14:05Z |
| Type | type/bug (0.85 (85%)) |
| Area | area/libSkiaSharp.native (0.95 (95%)) |
| Suggested action | close-as-fixed (0.90 (90%)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Suggested additional tests for SKManagedStreamTest.cs | |
| // 8 tests covering gaps not present in SKCodecTest, SKTypefaceTest, etc. | |
| // All verified passing on macOS arm64 with m132 native build. | |
| [SkippableFact] | |
| public void CodecCanDecodeFromManagedStreamAfterDuplicate() | |
| { | |
| var bytes = File.ReadAllBytes(Path.Combine(PathToImages, "color-wheel.png")); | |
| var dotnet = new MemoryStream(bytes); | |
| using var stream = new SKManagedStream(dotnet); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Skia Review — PR #173 (m120)</title> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/diff2html/bundles/css/diff2html.min.css"> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/styles/github.min.css"> |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Skia Review — PR #171 (m132)</title> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/diff2html/bundles/css/diff2html.min.css"> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/styles/github.min.css"> |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Skia Review — PR #170 (m122)</title> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/diff2html/bundles/css/diff2html.min.css"> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/styles/github.min.css"> |
dotnet run fails for MAUI apps with WindowsPackageType=MSIX. The build succeeds, but the SDK launches the EXE directly (unpackaged), causing REGDB_E_CLASSNOTREG because the Windows App SDK auto-initializer needs a packaged identity context. Visual Studio handles this via internal AppxLayoutManager.RegisterPackage() + IApplicationActivationManager.ActivateApplication() COM calls, but the CLI has no equivalent.
The .NET SDK now has an extensibility spec (dotnet-run-for-maui) that defines three MSBuild hook points:
DeployToDevice— deploy/register step (runs even with--no-build)ComputeRunArguments— sets$(RunCommand)/$(RunArguments)for launchComputeAvailableDevices— device selection (not needed for Windows local)
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Eval Review</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Lora:wght@400;500&display=swap" rel="stylesheet"> | |
| <script src="https://cdn.sheetjs.com/xlsx-0.20.3/package/dist/xlsx.full.min.js" integrity="sha384-EnyY0/GSHQGSxSgMwaIPzSESbqoOLSexfnSMN2AP+39Ckmn92stwABZynq1JyzdT" crossorigin="anonymous"></script> |
| name | pr-monitor |
|---|---|
| description | Autonomous PR comment monitoring and response agent. Use this skill when the user asks to monitor a GitHub pull request or issue for comments, respond to reviewer feedback, address code review comments, or watch for new PR activity. Triggers on requests like "monitor PR comments", "watch for review feedback", "respond to PR reviews", "address reviewer comments on my PR", or "keep an eye on this PR". |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Runtime.Versioning; | |
| using CoreAnimation; | |
| using Foundation; | |
| using Microsoft.Maui.Handlers; | |
| using SkiaSharp.Views.iOS; | |
| using SkiaSharp.Views.Maui.Platform; | |
| using UIKit; | |
| namespace SkiaSharp.Views.Maui.Handlers |
NewerOlder