2 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index bc7a62d4b..0f57570ed 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,6 +4,7 @@
*.user
*.userprefs
*.vsp
+*.coverage
*.nupkg
diff --git a/CodeCoverage.runsettings b/CodeCoverage.runsettings
index 138bceeb9..638909645 100644
--- a/CodeCoverage.runsettings
+++ b/CodeCoverage.runsettings
@@ -21,7 +21,8 @@ Included items must then not match any entries in the exclude list to remain inc
<ModulePath>.*BouncyCastle.*</ModulePath>
</Include>
<Exclude>
- <ModulePath>.*Tests.*</ModulePath>
+ <ModulePath>.*Test.*</ModulePath>
+ <ModulePath>.*nunit.*</ModulePath>
</Exclude>
</ModulePaths>
|