Skip to content

Instantly share code, notes, and snippets.

@jguertl
Created May 18, 2015 13:42
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 jguertl/4b257144d35de799e6a0 to your computer and use it in GitHub Desktop.
Save jguertl/4b257144d35de799e6a0 to your computer and use it in GitHub Desktop.
FAKE Tutorial
#r "tools/FAKE/tools/FakeLib.dll" // include Fake lib
open Fake
Target "Test" (fun _ ->
trace "Testing stuff..."
)
Target "Deploy" (fun _ ->
trace "Heavy deploy action"
)
"Test" // define the dependencies
==> "Deploy"
Run "Deploy"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment