Steve
Steve
Seems that it failed while signing the assembly (possibly there's something wrong with your openssl installation). Try changing `SignAssembly` to `false` in csproj.
@nining Can you try changing all these `SignAssembly` to `false` and build again? https://github.com/search?q=repo%3Amicrosoft%2Fgarnet%20SignAssembly&type=code
@nining I forgot to mention that you need to clear the `Key` attribute in `InternalsVisibleTo` after turning off assembly signing. eg. in `libs/host/Garnet.host.csproj`, changing `` to just ``
@manodasanW I think we should not use source generator at the first place, instead we should generate an assembly just like what WPF does, so that things like this can...
All modern UI frameworks (Avalonia, WinUI 3, UWP, uno and etc.) support batch event out-of-box. You can simply use the following code to verify this: ```cs public partial class MainWindow...
Why not let it throw if it's not supported? Existing code still uses non-batch apis so that it will still work. New code developers will know whether batch apis are...
> Is this easy to repro? It requires a lot of times of navigation. But you can try cloning this branch: https://github.com/files-community/Files/tree/ya/wasdk, and keep navigating between folders. It will crash...
@manodasanW This is the dump on access violation: https://1drv.ms/u/s!ApWNk8G_rszRg9AsZlWOwdRZO_cnXg?e=a9UGqu
We workaround this issue in https://github.com/files-community/Files/pull/16793: instead of updating the object in the view model directly, only update the nested properties that are value types. It is easier to repro...
Summary on the current progress. We have done the initial work for the fundamental of multi-database support. But each database provider comes with its own limitation which results in the...