Quellcode durchsuchen

Fix false positives on Coverage*.cs files (#3454)

I added this .gitignore to a project that included a file named CoverageSearchModel.cs, and the file was wrongly ignored.  This change fixes the incorrect use of the range operator on the Coverlet rules.
pull/3461/head
Justin Gregory vor 3 Jahren
Ursprung
Commit
6eff882467
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
  1. 3
    1
      VisualStudio.gitignore

+ 3
- 1
VisualStudio.gitignore Datei anzeigen

@@ -142,7 +142,9 @@ _TeamCity*
!.axoCover/settings.json

# Coverlet is a free, cross platform Code Coverage Tool
coverage*[.json, .xml, .info]
coverage*.json
coverage*.xml
coverage*.info

# Visual Studio code coverage results
*.coverage

Laden…
Abbrechen
Speichern