sake402

Results 10 issues of sake402

I have an existing Blazor app that I have successfully ported into MBB. However file select inputs doesnt work. ```C# ``` The first time I tap a file input, the...

area-mobileblazorbindings
hybrid-apps

In a number of existing application, people already have this. ```C# namespace ABC { public static class ServiceRegistration { public static void AddXYZ(this IServiceCollection services) { services.AddScoped(); services.AddCommunityService(); services.AddScoped() .AddScoped(x...

Hi. I am using this library for generating opcodes from a CIL byte[] alongside with the Harmony project. My concept is to recompile a changed source code on the fly,...

### Description If my understanding of AOT is correct, the assemblies are already compiled to native codes and I can confirm this with all the .so file in the apk....

t/bug
platform/android 🤖
area/tooling ⚙️

### Description With a maui application ``dotnet build -t:BuildAndStartAotProfiling`` returns an error ### Steps to Reproduce ``` dotnet add package Mono.AotProfiler.Android dotnet build -t:BuildAndStartAotProfiling ``` Produces error ``` error MSB4057:...

t/bug
platform/android 🤖
area/tooling ⚙️

On a new blazor server project template with no modification apart from installing LiveSharp, initial compilation fails. Below is the logs on LiveSharp Server ``` 17:58:12.622: Finished: Initial compilation blz...

Hi. We have this requirement that seems to fit A9G module hardware perfectly. We need to build a solution that call certain phone number and play an audio file from...

We are in the process of building a system that compile blazor down to javascript, using h5. https://github.com/sake402/BlazorJs This commit fixes and add some features neccessary for us to do...

Given the following static operator== ```C# public static bool operator ==(HttpMethod left, HttpMethod right) => left is null || right is null ? ReferenceEquals(left, right) : left.Equals(right); ``` The left...

Hi I have this piece of c# code where ``text`` is ``object`` type ```C# public string GetText() { if (text is Delegate d) return d?.Call()?.ToString(); return text?.ToString(); } ``` Here...