Bela VanderVoort
Bela VanderVoort
This has possibly a single edge case that it still needs to handle - https://github.com/belav/csharpier-repos/pull/152/files I think those all are this same issue ```c# // input and expected output Assert.Collection(...
My hope is that resolving #1613 will also resolve this
I'm unable to reproduce this. I did notice that the playground was still running 1.0.0 which was unable to reproduce it. I was also unable to reproduce it after updating...
The VSCode extension will use the version from dotnet-tools.json when it finds an appropriate one. It will fall back to using the global version of csharpier if one is installed....
Taking a look at the changes it made I think everythink looks good except this one - https://github.com/belav/csharpier-repos/pull/159/changes/e097ff1d5ab4cfc42a3ca55c92ceb38e3bfbd6c3#diff-bb147afabd02afcf48b4b4c09aad50f6bb117fea0bae21a1b2f1adef34f16beb Your first pass had `?? false` on a new line but the...
Ideally I'd have an action for doing the formatting on csharpier-repos - I think I attempted it a while back and it wasn't super straightforward.
The version installed by the extension is dependent on the version of csharpier you have installed globally or the one you have installed in your project. You'll need to update...
Can you include `file:///c%3A/Users/bpsco/AppData/Local/Temp/csharpier.csharpier-vscode-unresponsive.cpuprofile.txt` ?
This is related to #474. Based on that link it sounds like there are a few options to explore beyond just AOT.
The formatting of member chains is based on prettier. The rules prettier followed are found [here](https://github.com/prettier/prettier/blob/main/src/language-js/print/member-chain.js#L172). It boils down to - break after each method or indexer. Group properties with...