Skip to content

Instantly share code, notes, and snippets.

@Xeinaemm
Last active October 27, 2019 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Xeinaemm/fecb4f342327633335b30f069934661e to your computer and use it in GitHub Desktop.
Save Xeinaemm/fecb4f342327633335b30f069934661e to your computer and use it in GitHub Desktop.
Task("RestoreAll").Does(() => RestoreAll());
Task("Build").Does(() => Build());
Task("PublishAll")
.IsDependentOn("RestoreAll")
.IsDependentOn("Build");
RunTarget(Argument<string>("Target", ""));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment