Art-Stea1th / Enhanced-Syntax-Highlighting

[Marketplace] Lightweight "editor classifier extension" for Visual Studio based on the async Roslyn APIs to enhanced highlighting custom tags in C# code.
https://marketplace.visualstudio.com/items?itemName=StanislavKuzmichArtStea1th.EnhancedSyntaxHighlighting
Other
77 stars 10 forks source link

Visual Studio 2017 version 15.7 no longer works #11

Closed Cerlancism closed 6 years ago

Cerlancism commented 6 years ago

Many tags such as methods, extension methods and local variables colors stopped working.

0Petya commented 6 years ago

Can confirm that this is happening.

Cassiobsk8 commented 6 years ago

Can confirm, the extension is loaded properly and is showing the user tags config but is not coloring. tested in 15.7 and 15.7.1.

Art-Stea1th commented 6 years ago

Hi all, yes, I already know about this issue, by the end of this working week I will try to look and understand what's wrong. Also, I will be very grateful for any help the community in this issue.

Spaier commented 6 years ago

Found and fixed the issue. I will make a pull request later. In Visual Studio 2017 15.7 Property names, method names and etc. have ClassificationType "property name", "method name" and etc., not "identifier" while current code uses Convert method only for s.ClassificationType == "identifier" so everything except Namespace identifiers is left out. UPD: Created PR

Art-Stea1th commented 6 years ago

Hello, Spaier. Thank you for finding the reason. I wrote here.