@@ -34,24 +34,22 @@ public class BuildPaths
3434 var artifactsBinCoreFxDir = artifactsBinDir . Combine ( parameters . CoreFxVersion ) ;
3535 var nugetRootDir = artifactsDir . Combine ( "nuget" ) ;
3636 var buildArtifactDir = artifactsDir . Combine ( "build-artifact" ) ;
37- var testCoverageOutputDir = artifactsDir . Combine ( "code-coverage " ) ;
37+ var testResultsOutputDir = artifactsDir . Combine ( "test-results " ) ;
3838
3939 var zipArtifactPathCoreClr = artifactsDir . CombineWithFilePath ( "GitVersion-bin-corefx-v" + semVersion + ".zip" ) ;
4040 var zipArtifactPathDesktop = artifactsDir . CombineWithFilePath ( "GitVersion-bin-fullfx-v" + semVersion + ".zip" ) ;
4141
42- var testCoverageOutputFilePath = testCoverageOutputDir . CombineWithFilePath ( "TestResult.xml" ) ;
43-
4442 var releaseNotesOutputFilePath = buildArtifactDir . CombineWithFilePath ( "releasenotes.md" ) ;
4543 var gemOutputFilePath = buildArtifactDir . CombineWithFilePath ( "gitversion-" + version . GemVersion + ".gem" ) ;
4644
4745 var vsixSuffix = parameters . IsStableRelease ( ) ? "" : "preview-" ;
48- var vsixOutputFilePath = buildArtifactDir . CombineWithFilePath ( "gittools.gitversion-" + vsixSuffix + version . VsixVersion + ".vsix" ) ;
46+ var vsixOutputFilePath = buildArtifactDir . CombineWithFilePath ( "gittools.gitversion-" + vsixSuffix + version . VsixVersion + ".vsix" ) ;
4947
5048 // Directories
5149 var buildDirectories = new BuildDirectories (
5250 artifactsDir ,
5351 buildArtifactDir ,
54- testCoverageOutputDir ,
52+ testResultsOutputDir ,
5553 nugetRootDir ,
5654 artifactsBinDir ,
5755 artifactsBinFullFxDir ,
@@ -65,7 +63,6 @@ public class BuildPaths
6563 context ,
6664 zipArtifactPathCoreClr ,
6765 zipArtifactPathDesktop ,
68- testCoverageOutputFilePath ,
6966 releaseNotesOutputFilePath ,
7067 vsixOutputFilePath ,
7168 gemOutputFilePath ) ;
@@ -82,7 +79,6 @@ public class BuildFiles
8279{
8380 public FilePath ZipArtifactPathCoreClr { get ; private set ; }
8481 public FilePath ZipArtifactPathDesktop { get ; private set ; }
85- public FilePath TestCoverageOutputFilePath { get ; private set ; }
8682 public FilePath ReleaseNotesOutputFilePath { get ; private set ; }
8783 public FilePath VsixOutputFilePath { get ; private set ; }
8884 public FilePath GemOutputFilePath { get ; private set ; }
@@ -91,15 +87,13 @@ public class BuildFiles
9187 ICakeContext context ,
9288 FilePath zipArtifactPathCoreClr ,
9389 FilePath zipArtifactPathDesktop ,
94- FilePath testCoverageOutputFilePath ,
9590 FilePath releaseNotesOutputFilePath ,
9691 FilePath vsixOutputFilePath ,
9792 FilePath gemOutputFilePath
9893 )
9994 {
10095 ZipArtifactPathCoreClr = zipArtifactPathCoreClr ;
10196 ZipArtifactPathDesktop = zipArtifactPathDesktop ;
102- TestCoverageOutputFilePath = testCoverageOutputFilePath ;
10397 ReleaseNotesOutputFilePath = releaseNotesOutputFilePath ;
10498 VsixOutputFilePath = vsixOutputFilePath ;
10599 GemOutputFilePath = gemOutputFilePath ;
@@ -111,7 +105,7 @@ public class BuildDirectories
111105 public DirectoryPath Artifacts { get ; private set ; }
112106 public DirectoryPath NugetRoot { get ; private set ; }
113107 public DirectoryPath BuildArtifact { get ; private set ; }
114- public DirectoryPath TestCoverageOutput { get ; private set ; }
108+ public DirectoryPath TestResultsOutput { get ; private set ; }
115109 public DirectoryPath ArtifactsBin { get ; private set ; }
116110 public DirectoryPath ArtifactsBinFullFx { get ; private set ; }
117111 public DirectoryPath ArtifactsBinFullFxPortable { get ; private set ; }
@@ -123,7 +117,7 @@ public class BuildDirectories
123117 public BuildDirectories (
124118 DirectoryPath artifactsDir ,
125119 DirectoryPath buildArtifactDir ,
126- DirectoryPath testCoverageOutputDir ,
120+ DirectoryPath testResultsOutputDir ,
127121 DirectoryPath nugetRootDir ,
128122 DirectoryPath artifactsBinDir ,
129123 DirectoryPath artifactsBinFullFxDir ,
@@ -135,7 +129,7 @@ public class BuildDirectories
135129 {
136130 Artifacts = artifactsDir ;
137131 BuildArtifact = buildArtifactDir ;
138- TestCoverageOutput = testCoverageOutputDir ;
132+ TestResultsOutput = testResultsOutputDir ;
139133 NugetRoot = nugetRootDir ;
140134 ArtifactsBin = artifactsBinDir ;
141135 ArtifactsBinFullFx = artifactsBinFullFxDir ;
@@ -146,7 +140,7 @@ public class BuildDirectories
146140 ToClean = new [ ] {
147141 Artifacts ,
148142 BuildArtifact ,
149- TestCoverageOutput ,
143+ TestResultsOutput ,
150144 NugetRoot ,
151145 ArtifactsBin ,
152146 ArtifactsBinFullFx ,
0 commit comments