Browse Source

copy and zip bin files.

pull/1992/head
Dan Walmsley 7 years ago
parent
commit
520085c60b
  1. 8
      build.cake

8
build.cake

@ -339,10 +339,14 @@ Task("Travis")
.IsDependentOn("Run-Tests");
Task("Azure-Linux")
.IsDependentOn("Run-Tests");
.IsDependentOn("Run-Tests")
.IsDependentOn("Copy-Files-Impl")
.IsDependentOn("Zip-Files-Impl");
Task("Azure-OSX")
.IsDependentOn("Run-Tests");
.IsDependentOn("Run-Tests")
.IsDependentOn("Copy-Files-Impl")
.IsDependentOn("Zip-Files-Impl");
Task("Azure-Windows")
.IsDependentOn("Package")

Loading…
Cancel
Save