@@ -34,24 +34,22 @@ public class BuildPaths
34
34
var artifactsBinCoreFxDir = artifactsBinDir . Combine ( parameters . CoreFxVersion ) ;
35
35
var nugetRootDir = artifactsDir . Combine ( "nuget" ) ;
36
36
var buildArtifactDir = artifactsDir . Combine ( "build-artifact" ) ;
37
- var testCoverageOutputDir = artifactsDir . Combine ( "code-coverage " ) ;
37
+ var testResultsOutputDir = artifactsDir . Combine ( "test-results " ) ;
38
38
39
39
var zipArtifactPathCoreClr = artifactsDir . CombineWithFilePath ( "GitVersion-bin-corefx-v" + semVersion + ".zip" ) ;
40
40
var zipArtifactPathDesktop = artifactsDir . CombineWithFilePath ( "GitVersion-bin-fullfx-v" + semVersion + ".zip" ) ;
41
41
42
- var testCoverageOutputFilePath = testCoverageOutputDir . CombineWithFilePath ( "TestResult.xml" ) ;
43
-
44
42
var releaseNotesOutputFilePath = buildArtifactDir . CombineWithFilePath ( "releasenotes.md" ) ;
45
43
var gemOutputFilePath = buildArtifactDir . CombineWithFilePath ( "gitversion-" + version . GemVersion + ".gem" ) ;
46
44
47
45
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" ) ;
49
47
50
48
// Directories
51
49
var buildDirectories = new BuildDirectories (
52
50
artifactsDir ,
53
51
buildArtifactDir ,
54
- testCoverageOutputDir ,
52
+ testResultsOutputDir ,
55
53
nugetRootDir ,
56
54
artifactsBinDir ,
57
55
artifactsBinFullFxDir ,
@@ -65,7 +63,6 @@ public class BuildPaths
65
63
context ,
66
64
zipArtifactPathCoreClr ,
67
65
zipArtifactPathDesktop ,
68
- testCoverageOutputFilePath ,
69
66
releaseNotesOutputFilePath ,
70
67
vsixOutputFilePath ,
71
68
gemOutputFilePath ) ;
@@ -82,7 +79,6 @@ public class BuildFiles
82
79
{
83
80
public FilePath ZipArtifactPathCoreClr { get ; private set ; }
84
81
public FilePath ZipArtifactPathDesktop { get ; private set ; }
85
- public FilePath TestCoverageOutputFilePath { get ; private set ; }
86
82
public FilePath ReleaseNotesOutputFilePath { get ; private set ; }
87
83
public FilePath VsixOutputFilePath { get ; private set ; }
88
84
public FilePath GemOutputFilePath { get ; private set ; }
@@ -91,15 +87,13 @@ public class BuildFiles
91
87
ICakeContext context ,
92
88
FilePath zipArtifactPathCoreClr ,
93
89
FilePath zipArtifactPathDesktop ,
94
- FilePath testCoverageOutputFilePath ,
95
90
FilePath releaseNotesOutputFilePath ,
96
91
FilePath vsixOutputFilePath ,
97
92
FilePath gemOutputFilePath
98
93
)
99
94
{
100
95
ZipArtifactPathCoreClr = zipArtifactPathCoreClr ;
101
96
ZipArtifactPathDesktop = zipArtifactPathDesktop ;
102
- TestCoverageOutputFilePath = testCoverageOutputFilePath ;
103
97
ReleaseNotesOutputFilePath = releaseNotesOutputFilePath ;
104
98
VsixOutputFilePath = vsixOutputFilePath ;
105
99
GemOutputFilePath = gemOutputFilePath ;
@@ -111,7 +105,7 @@ public class BuildDirectories
111
105
public DirectoryPath Artifacts { get ; private set ; }
112
106
public DirectoryPath NugetRoot { get ; private set ; }
113
107
public DirectoryPath BuildArtifact { get ; private set ; }
114
- public DirectoryPath TestCoverageOutput { get ; private set ; }
108
+ public DirectoryPath TestResultsOutput { get ; private set ; }
115
109
public DirectoryPath ArtifactsBin { get ; private set ; }
116
110
public DirectoryPath ArtifactsBinFullFx { get ; private set ; }
117
111
public DirectoryPath ArtifactsBinFullFxPortable { get ; private set ; }
@@ -123,7 +117,7 @@ public class BuildDirectories
123
117
public BuildDirectories (
124
118
DirectoryPath artifactsDir ,
125
119
DirectoryPath buildArtifactDir ,
126
- DirectoryPath testCoverageOutputDir ,
120
+ DirectoryPath testResultsOutputDir ,
127
121
DirectoryPath nugetRootDir ,
128
122
DirectoryPath artifactsBinDir ,
129
123
DirectoryPath artifactsBinFullFxDir ,
@@ -135,7 +129,7 @@ public class BuildDirectories
135
129
{
136
130
Artifacts = artifactsDir ;
137
131
BuildArtifact = buildArtifactDir ;
138
- TestCoverageOutput = testCoverageOutputDir ;
132
+ TestResultsOutput = testResultsOutputDir ;
139
133
NugetRoot = nugetRootDir ;
140
134
ArtifactsBin = artifactsBinDir ;
141
135
ArtifactsBinFullFx = artifactsBinFullFxDir ;
@@ -146,7 +140,7 @@ public class BuildDirectories
146
140
ToClean = new [ ] {
147
141
Artifacts ,
148
142
BuildArtifact ,
149
- TestCoverageOutput ,
143
+ TestResultsOutput ,
150
144
NugetRoot ,
151
145
ArtifactsBin ,
152
146
ArtifactsBinFullFx ,
0 commit comments