Created
March 2, 2015 20:27
-
-
Save jonathanpeppers/29c3b5d7a588a53be538 to your computer and use it in GitHub Desktop.
Basic FAKE Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how did I get here?