Skip to content

Commit

Permalink
Add initial build script
Browse files Browse the repository at this point in the history
  • Loading branch information
jwood803 committed Sep 19, 2015
1 parent 574461a commit 2fc2aa4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -199,4 +199,6 @@ FakesAssemblies/
*.plg

# Visual Studio 6 workspace options file
*.opt
*.opt

.fake
16 changes: 16 additions & 0 deletions FakeDemo/build.fsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#r "packages/FAKE/tools/FakeLib.dll"
open Fake


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

Target "Deploy" (fun _ ->
trace "Heavy deploy action"
)

"Test" // define the dependencies
==> "Deploy"

Run "Deploy"

0 comments on commit 2fc2aa4

Please sign in to comment.