Skip to content

Commit

Permalink
Remove comments from part 1
Browse files Browse the repository at this point in the history
  • Loading branch information
jwood803 committed Sep 22, 2015
1 parent e60ea63 commit 6478c41
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions FakeDemo/build.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#r "packages/FAKE/tools/FakeLib.dll" // 1
open Fake // 2
#r "packages/FAKE/tools/FakeLib.dll"
open Fake
open Fake.XamarinHelper

let buildDir = "FakeDemo/bin/Debug"
Expand All @@ -8,12 +8,12 @@ Target "Clean" (fun _ ->
CleanDir buildDir
)

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

Target "BuildPcl" (fun _ ->
//RestorePackages ()
RestorePackages ()

!! "FakeDemo.csproj"
|> MSBuild "FakeDemo/bin/Debug" "Build" [ ("Configuration", "Debug"); ("Platform", "Any CPU") ]
Expand All @@ -36,12 +36,11 @@ Target "Build-Droid" (fun _ ->
|> Log "----Android build output----"
)

"BuildPcl" // 4
"BuildPcl"
==> "Clean"
==> "Test"

"Build-Droid"
==> "Build-iOS"


RunTargetOrDefault "Test" // 5
RunTargetOrDefault "Test"

0 comments on commit 6478c41

Please sign in to comment.