Matthias Koch

Results 170 comments of Matthias Koch

It's a minor thing that needs to be investigated. So should be soon. About tool window et al – well, it's the ReSharper dev guide :) Most things will work...

It's not a feature, just a sample that I'm trying to prepare. From my side, the best source to get going is the https://github.com/jetbrains/resharper-rider-plugin repository (last commit is WIP for...

The documentation has been updated continuously ever since (see https://www.jetbrains.com/help/resharper/sdk/recently_updated.html). ReSharper and Rider are extensible in many ways, which makes it unfeasible to document every bit. Again, if you explain...

Are you intending to write PSI support for another language?

No, it doesn't consider `nuget.config`, but glad it's working now.

Actually, it does, but I believe you're running into an issue with case-sensitivity. Try `nuget.config`.

I will add `IFormattable` to `AbsolutePath`. Then you can do `.ToString(format)` and also use it in interpolated strings: ``` var x = path.ToString("d"); var y = $"{path:d}"; ``` Specifiers would...

``` [PublicAPI] [InterpolatedStringHandler] public ref struct AutoQuoteStringHandler { private DefaultInterpolatedStringHandler _builder; public AutoQuoteStringHandler( int literalLength, int formattedCount, out bool handlerIsValid) { _builder = new(literalLength, formattedCount); handlerIsValid = true; } public...

`MSBuild.json` would require additional dataclasses, depending on the amount of logger types. Also I suggest to extend code generation to allow some sort of callback, that gets implemented manually (for...