Steve
Steve
Also the problem with UI automation (we need to replace them with ComWrappers)
I think we may also want to mention that [crossgen2 now has been published with NativeAOT](https://github.com/dotnet/runtime/pull/67636)? /cc: @agocke
> @ajhiggins421 If you look at the [Supported Platforms specifically for Microsoft.Maui.Graphics](https://github.com/dotnet/Microsoft.Maui.Graphics#supported-platforms) you'll see that it does support Linux via an abstraction over [SkiaSharp](https://github.com/mono/SkiaSharp). While the complete MAUI platform does...
 I'm also located in China but cannot reproduce your issue. This may be a networking issue of your ISP (aliyun). > But who owns the hosting site? The packages...
> Are you using VPN or other similar magical things? No.
I think `HttpWebRequest` can be replaced with `HttpRequestMessage`, the later one is used by `HttpClient` and almost the same with `HttpWebRequest`. Also note that `HttpClient` should be used as singleton...
@GihanSoft You can buffer it by yourself while using `HttpClient`: ```csharp var req = new HttpRequestMessage(...); var res = (await httpClient.SendAsync(req, HttpCompletionOption.ResponseHeadersRead)).EnsureSuccessStatusCode(); using var stream = await res.Content.ReadAsStreamAsync(); const int...
The current dll loader implementation is not compatible with NativeAOT. https://github.com/peachpiecompiler/peachpie/blob/8041b35b51c2a0b798b5aac4ae73735379fe7b3a/src/Peachpie.Runtime/Context.cs#L105
As a workaround, you may add some never reached code to call PhpExtension Registrator constructors in the extension static constructor to make sure they won't be trimmed. Taking `Zlib` as...
It's not just for background tasks. I would like to see a sample to demonstrate authoring a WinRT exe server in a package and can be activated by another program...