File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -104,9 +104,10 @@ Task("Run-NUnit-Tests")
104
104
"src/GitVersionExe.Tests/bin/" + configuration + "/GitVersionExe.Tests.dll" ,
105
105
"src/GitVersionTask.Tests/bin/" + configuration + "/GitVersionTask.Tests.dll" } ,
106
106
settings ) ;
107
- if ( BuildSystem . AppVeyor . IsRunningOnAppVeyor )
107
+ if ( AppVeyor . IsRunningOnAppVeyor )
108
108
{
109
- BuildSystem . AppVeyor . UploadTestResults ( "TestResult.xml" , AppVeyorTestResultsType . NUnit3 ) ;
109
+ Information ( "Uploading test results" ) ;
110
+ AppVeyor . UploadTestResults ( "TestResult.xml" , AppVeyorTestResultsType . NUnit3 ) ;
110
111
}
111
112
} ) ;
112
113
@@ -136,7 +137,7 @@ Task("Package")
136
137
137
138
Task ( "Upload-AppVeyor-Artifacts" )
138
139
. IsDependentOn ( "Package" )
139
- . WithCriteria ( ( ) => BuildSystem . AppVeyor . IsRunningOnAppVeyor )
140
+ . WithCriteria ( ( ) => AppVeyor . IsRunningOnAppVeyor )
140
141
. Does ( ( ) =>
141
142
{
142
143
var gem = string . IsNullOrEmpty ( preReleaseTag ) ?
You can’t perform that action at this time.
0 commit comments