diff --git a/.gitignore b/.gitignore index cb8ae0f..15863ca 100644 --- a/.gitignore +++ b/.gitignore @@ -199,4 +199,6 @@ FakesAssemblies/ *.plg # Visual Studio 6 workspace options file -*.opt \ No newline at end of file +*.opt + +.fake diff --git a/FakeDemo/build.fsx b/FakeDemo/build.fsx new file mode 100644 index 0000000..2e540d1 --- /dev/null +++ b/FakeDemo/build.fsx @@ -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" \ No newline at end of file