KirillOsenkov / XmlParser

A Roslyn-inspired full-fidelity XML parser with no dependencies and a simple Visual Studio XML language service
Apache License 2.0
328 stars 49 forks source link

Using in Visual Studio #38

Closed shmuelie closed 2 years ago

shmuelie commented 2 years ago

Is there a VSIX or other way to add the language services to VS?

KirillOsenkov commented 2 years ago

Unfortunately not. Visual Studio already has an XML language service, and this would be a replacement. There's nothing in this repo that Visual Studio already doesn't support (unless I'm missing something?)

shmuelie commented 2 years ago

Yes. Though I was hoping/thinking about if it could be used to create "Roslyn analyzers" but for XML, which would require it to be the language service.

KirillOsenkov commented 2 years ago

I see. You want extensibility. You’d need to replace the XML editor in VS with this one, then you could add extensions.

Maybe one day.

shmuelie commented 2 years ago

Guess just dream for now.