Skip to content

Commit 0b5f36c

Browse files
authored
coverage project output file name to include project name (#118)
1 parent d46f2a7 commit 0b5f36c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FineCodeCoverage/Core/Model/CoverageProject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ private void SetPaths()
498498
fccPath = Path.Combine(ProjectOutputFolder, fccFolderName);
499499
buildOutputPath = Path.Combine(fccPath, buildOutputFolderName);
500500
CoverageOutputFolder = Path.Combine(fccPath, coverageToolOutputFolderName);
501-
CoverageOutputFile = Path.Combine(CoverageOutputFolder, "project.coverage.xml");
501+
CoverageOutputFile = Path.Combine(CoverageOutputFolder, $"{ProjectName}.coverage.xml");
502502
}
503503
private void EnsureDirectories()
504504
{

0 commit comments

Comments
 (0)