This repository was archived by the owner on Aug 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ var target = Argument("target", "Default");
99var configuration = Argument ( "configuration" , "Debug" ) ;
1010var nugetOrgApiKey = EnvironmentVariable ( "NuGetOrgApiKey" ) ;
1111
12- var isAppveyor = BuildSystem . IsRunningOnAppVeyor ;
12+ var isAppVeyor = BuildSystem . IsRunningOnAppVeyor ;
1313var isTravis = BuildSystem . IsRunningOnTravisCI ;
1414
1515//////////////////////////////////////////////////////////////////////
@@ -50,7 +50,7 @@ var packages = new []
5050
5151Setup ( context =>
5252{
53- if ( isAppveyor )
53+ if ( isAppVeyor )
5454 {
5555 AppVeyor . UpdateBuildVersion ( gitVersion . FullBuildMetaData ) ;
5656 }
@@ -79,7 +79,7 @@ Task("RestorePackages")
7979
8080Task ( "UpdateAssemblyInformation" )
8181 . Description ( "Update assembly information using GitVersion" )
82- . WithCriteria ( isAppveyor )
82+ . WithCriteria ( isAppVeyor )
8383 . Does ( ( ) =>
8484 {
8585 GitVersion ( new GitVersionSettings
@@ -151,7 +151,7 @@ Task("Test")
151151 Exclude = IsRunningOnWindows ( ) ? null : "NuGet,NoMono" ,
152152 } ) ;
153153
154- if ( isAppveyor )
154+ if ( isAppVeyor )
155155 {
156156 AppVeyor . UploadTestResults ( resultPath , AppVeyorTestResultsType . NUnit ) ;
157157 }
You can’t perform that action at this time.
0 commit comments