Daniel Balogh

Results 2 comments of Daniel Balogh

I have experienced another error (TF.NET version 0.70.1) with `boolean_mask`: ```csharp tf.boolean_mask(new int[] { 0, 1, 2, 3 }, new bool[] { true, false, true, false }) ``` Throws: ```...

Hi, a temporary workaround that worked for me is setting the resource assembly using reflection. Considering [the implementation of Application.ResourceAssembly](https://github.com/dotnet/wpf/blob/89d172db0b7a192de720c6cfba5e28a1e7d46123/src/Microsoft.DotNet.Wpf/src/PresentationFramework/System/Windows/Application.cs#L1037) the following method accomplishes what the property setter does: ```csharp...