LeaFrock

Results 44 comments of LeaFrock

Great. Less historical baggage means faster R&D and promotion.

It seems that the current `AspNet.Security.OAuth.Weixin` should support your requirement, as long as you use the specific official account options instead of default ones. After a quick check of mine,...

Install another Nuget package called `TinyMCE`. If you're using Blazor WASM, you'll see a new folder `lib/tinymce` appearing in `wwwroot` after project building. Therefore, the path will be like, `...

The PR is inaccessable. So still no doc about this?

Agree with @Jojoshua . Why do you drop the support of netstandard2.0? This is a huge break change as you drop the support for NFX which is still in maintenance,...

Any Progress? > causing an API explosion It's not a problem since `dotnet/runtime` has been adding more and more `ReadOnlySpan` overloads, too. It also won't bring too much maintenance burden....

## Cached value is ValueType It's easy with nullable struct, for example, ```c# int? num = await redisDb.GetAsync(key); // null means the value does not exist // 0 means the...