ソースを参照

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
コミッターのメールアドレスに関連付けられたアカウントが存在しません
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

読み込み中…
キャンセル
保存