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/0fb8aa9710926be46fb88cafd4da8247 to your computer and use it in GitHub Desktop.
Save Xeinaemm/0fb8aa9710926be46fb88cafd4da8247 to your computer and use it in GitHub Desktop.
Task("Restore").Does(() => Restore());
Task("Build").Does(() => Build());
Task("Publish")
.IsDependentOn("Restore")
.IsDependentOn("Build");
RunTarget(Argument<string>("Target", ""));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment