Skip to content

Commit 7f190e4

Browse files
committed
update extension for cobetura and opencover extensions
Fixes #111
1 parent d40b2d4 commit 7f190e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/coverlet.core/Reporters/CoberturaReporter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class CoberturaReporter : IReporter
1212
{
1313
public string Format => "cobertura";
1414

15-
public string Extension => "xml";
15+
public string Extension => "cobertura.xml";
1616

1717
public string Report(CoverageResult result)
1818
{

src/coverlet.core/Reporters/OpenCoverReporter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class OpenCoverReporter : IReporter
1111
{
1212
public string Format => "opencover";
1313

14-
public string Extension => "xml";
14+
public string Extension => "opencover.xml";
1515

1616
public string Report(CoverageResult result)
1717
{

0 commit comments

Comments
 (0)