From 98642a97b717b3afa62630dcbdc7a29629126b0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wies=C5=82aw=20=C5=A0olt=C3=A9s?= Date: Sat, 30 Jun 2018 13:09:57 +0200 Subject: [PATCH] Changed task dependency order for AppVeyor task --- build.cake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.cake b/build.cake index 28dc503e35..deac33de09 100644 --- a/build.cake +++ b/build.cake @@ -408,10 +408,10 @@ Task("Package") Task("AppVeyor") .IsDependentOn("Package") - .IsDependentOn("Publish-MyGet-Impl") - .IsDependentOn("Publish-NuGet-Impl") .IsDependentOn("Copy-Files-Impl") - .IsDependentOn("Zip-Files-Impl"); + .IsDependentOn("Zip-Files-Impl") + .IsDependentOn("Publish-MyGet-Impl") + .IsDependentOn("Publish-NuGet-Impl"); Task("Travis") .IsDependentOn("Run-Tests");