Andrés Giménez
Andrés Giménez
> Not in the first version of MvvmCross 7. Unless you have something ready right now. We are open for contributions though! I tested a build with net5.0. But I've...
MvvmCross is netstandard. Would Work without problem. What happens that Blazor is experimental. And you don't know their final result.
It's because of this method. ```C# public virtual void EnsureInitialized() { ... IsInitialisedTaskCompletionSource.Task.GetAwaiter().GetResult(); } ``` It should be like this. ```C# public virtual async Task EnsureInitialized() { ... await IsInitialisedTaskCompletionSource.Task;...
Read this article https://devblogs.microsoft.com/dotnet/configureawait-faq/ > **Why would I want to use ConfigureAwait(true)?** > You wouldn’t, unless you were using it purely as an indication that you were purposefully not using...
The don't put. ConfigureAwait(false) can give someone problems, because the original context is lost. That is why it is recommended to put it (RCS1090). It also improves performance. MvxSingleton. I...
You have to value, that the changes I want to make, lowers the complexity. And it will be easier to implement other platforms. I see you've been trying something with...
I see there's not much interest in the changes I propose. I'll try to solve the problems I have otherwise.