瀏覽代碼

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 3 年之前
父節點
當前提交
6eff882467
No account linked to committer's email address
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      VisualStudio.gitignore

+ 3
- 1
VisualStudio.gitignore 查看文件

@@ -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

Loading…
取消
儲存