Daniel Cazzulino

Results 360 comments of Daniel Cazzulino

The fix is now in, YAY!. So I'm just waiting for it to ship so I can move forward with this

Orleans just shipped v9 last week which now contains the required fix. So I can now move forward with the split :)

The following (partially) works as long as the signature of the method being invoked clearly uses `ILookup` (i.e. won't work with `IServiceProvider` since the return type isn't known): ```csharp using...

nowadays I just use jq for this, but it sure would be nice to have this at some point 🙏

Would be so cool to get something better than what's currently available...

Consider funding this issue if it's important to you. I'd gladly take a PR too. The repro is hardly minimal. Thanks!

This would be super helpful 🙏

You shouldn't reuse mocks across tests. Setups should be per test-class instance (i.e. each test gets a unique instance of the test class), like xunit does with ctor/IDisposable. Therefore, there...

To fix the dotnet-format build error, plz run: ``` dotnet format whitespace -v:diag --exclude ~/.nuget; dotnet format style -v:diag --exclude ~/.nuget ```