Kazuki Ota

Results 33 comments of Kazuki Ota

This issue will be closed when System.Reactive would support ARM64 platforms.

@soninaren This is not the AppInsights issue. The root cause is the following shibayan wrote. > This problem, Visual Studio saves using the system default encoding (Shift_JIS in Japan) because...

I guess a root cause of this issue is a following MAUI bug. https://github.com/dotnet/maui/issues/9338

I guess `OnPlatform` tags for font family name on App.xaml don't need on MAUI: https://github.com/dotnet-architecture/eshop-mobile-client/blob/main/eShopOnContainers/App.xaml#L93-L101 I fixed this bug changing the tags to use same font family name on all...

@natecheadle As I researched, CommunityToolkit.WinUI package and WinUI.UI package looks like don't have `TaskResultConverter` class. So you want to use it, you have to implement it yourself. Fortunately, `TaskResultConverter` is...

@gmkado I had added nullable annotations for minimum necessary usecases. If you are facing warnings of nullable reference. Please let me know.

@gmkado This is one of the problems that I could not solve. Due to historical reasons, the ReactiveProperty class has a default constructor. However, when using this default constructor, the...

Thank you for your opinion. We had tried the analyzer solution, but there are a lot of patterns to detect nullable reference errors, so it was so difficult... And I...

@gmkado > Are you referring to https://github.com/runceel/ReactiveProperty/issues/241#issuecomment-1001372776? Yes, it is. > Or are there more corner cases that you ran into that aren't in this thread? I am not inclined...

I have created a plain WPF app that invokes ISKFunction (a semantic function) on .NET 7. Plain means without any packages. Semantic Kernel version is `0.13.442.1-preview`. The source code is:...