Open
Description
This may be due to newer versions of Visual Studio, but it appears that the "EDIT" comment support isn't working anymore. In Visual Studio 2022 (running community edition, and haven't tested this in any other versions or editions), comments are stored in the regex XML as all lowercase, so the Contains("EDIT")
calls always return false.
This affects the following call sites:
Line 358 in 725492d
Line 481 in 725492d
and may also affect the REGEX at
Line 468 in 725492d
If you retarget this to .NET 5.0+, you can use an overload on Contains
that takes a StringComparison
parameter.