Patrick Stevens
Patrick Stevens
Could someone please confirm or refute my understanding that grpc-dotnet supports neither the .NET Framework (confirmed ad nauseam above) *nor* macOS in production (until https://github.com/dotnet/runtime/issues/27727 can be fixed)? The docs...
This is probably https://github.com/JamesNK/Newtonsoft.Json/issues/2501 which has been fixed on master of Newtonsoft.Json, but the fix is (still!) unreleased.
Could you please clarify what "grab the F# compiler from the source files instead" means? I don't think I follow; surely you don't mean compiling the F# compiler from source...
Could this be the same as https://github.com/dotnet/runtime/issues/63240 ?
(If my diagnosis above is correct, this should be fixed in .NET 6.0.3, by https://github.com/dotnet/runtime/pull/64266 .)
Note that I'm pretty confident that Fantomas is already correct on `if a then b else c` all on one line (assuming line length forces it to break over lines):...
The same is true of `match` statements, by the way. The last case of a `match` can be unindented in exactly the same way.
Well, it gets more unreadable and confusing when your code looks like: ```fsharp if a then b else doThings() if c then d else doThings2() if e then f else...
It's sad to break up a continuous flow of error-handling logic into arbitrary chunks purely to satisfy the formatter; I discussed that option with my team and (regardless of the...
I still haven't come up with a rule, but here's another example which comes up a lot in our internal code: ```fsharp open Library type RunMode = | Dry |...