Skip to content

Commit

Permalink
Add comments to script to correspond to post
Browse files Browse the repository at this point in the history
  • Loading branch information
jwood803 committed Sep 21, 2015
1 parent 4125e9f commit c1f0284
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions FakeDemo/build.fsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#r "packages/FAKE/tools/FakeLib.dll"
open Fake
#r "packages/FAKE/tools/FakeLib.dll" // 1
open Fake // 2

Target "Test" (fun _ ->
Target "Test" (fun _ -> // 3
trace "Testing stuff..."
)

Target "Build" (fun _ ->
trace "Heavy build action"
)

"Build" // define the dependencies
"Build" // 4
==> "Test"

Run "Test"
Run "Test" // 5

0 comments on commit c1f0284

Please sign in to comment.