Skip to content

Instantly share code, notes, and snippets.

@jonathanpeppers
Created March 2, 2015 20:27
Show Gist options
  • Save jonathanpeppers/29c3b5d7a588a53be538 to your computer and use it in GitHub Desktop.
Save jonathanpeppers/29c3b5d7a588a53be538 to your computer and use it in GitHub Desktop.
Basic FAKE Script
#r @".nuget/FAKE.3.5.4/tools/FakeLib.dll"
open Fake
open BuildHelpers
open Fake.XamarinHelper
//A list of constants here
Target "server-tests" (fun () ->
MSBuild "" "Build" testParameters [ serverSolution ] |> ignore
)
Target "server" (fun () ->
MSBuild "" "Build" serverParameters [ serverProject ] |> ignore
)
"server-tests" ==> "server"
RunTarget()
@sawysauce9
Copy link

how did I get here?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment