Browse Source

Changed task dependency order for AppVeyor task

pull/1716/head
Wiesław Šoltés 8 years ago
parent
commit
98642a97b7
  1. 6
      build.cake

6
build.cake

@ -408,10 +408,10 @@ Task("Package")
Task("AppVeyor") Task("AppVeyor")
.IsDependentOn("Package") .IsDependentOn("Package")
.IsDependentOn("Publish-MyGet-Impl")
.IsDependentOn("Publish-NuGet-Impl")
.IsDependentOn("Copy-Files-Impl") .IsDependentOn("Copy-Files-Impl")
.IsDependentOn("Zip-Files-Impl"); .IsDependentOn("Zip-Files-Impl")
.IsDependentOn("Publish-MyGet-Impl")
.IsDependentOn("Publish-NuGet-Impl");
Task("Travis") Task("Travis")
.IsDependentOn("Run-Tests"); .IsDependentOn("Run-Tests");

Loading…
Cancel
Save