We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6b4409 commit 6847219Copy full SHA for 6847219
1 file changed
CodeLineCounter/Utils/FileUtils.cs
@@ -62,7 +62,7 @@ public static string GetBasePath()
62
63
private static Regex GenerateProjectRegex(string projectExtension)
64
{
65
- return new Regex($@"Project\(""{{.*}}""\) = "".*"", ""(.*{Regex.Escape(projectExtension)})""");
+ return new Regex($@"Project\(""{{.*}}""\) = "".*"", ""(.*{Regex.Escape(projectExtension)})""", RegexOptions.IgnoreCase, TimeSpan.FromMilliseconds(100));
66
}
67
68
[GeneratedRegex(@"Project\(""{.*}""\) = "".*"", ""(.*\.csproj)""")]
0 commit comments