Open LPeter1997 opened 4 months ago
Hello @LPeter1997 , I don't see any problems, this limitation exists because we use msbuild, as you said, it is necessary to implement the equivalent methods for other languages.
@LPeter1997 have you seen Corniel's implementation? Do you think it makes sense to you?
Hey, this looks like a lovely library, than you for easing the pain of setting up design-time builds!
We are working on a new .NET language, Draco and we'd love to use this library to extract references for example for our language server. Unfortunately from what I gathered, the library has only the 3 main .NET langs hardcoded for command parsing: C#, VB and F#, so we can't exactly extract that data for a custom language.
Is there any chance for this limitation to be eliminated? While I didn't dig deep into the library, I imagine we'd need to introduce an interface like so:
And then have a collection of these language parsers,
AnalyzerManager
orAnalyzerManagerOptions
looks like an OK place for this. By default, the existing languages (C#, VB and F#) would have an implementation for this interface, but consumers of the package could implement this interface for any language they'd want.Let me know what you think!