Skip to content

Instantly share code, notes, and snippets.

@jonathanpeppers
Created March 2, 2015 20:41
Show Gist options
  • Save jonathanpeppers/5aea0a1b24a7637bc520 to your computer and use it in GitHub Desktop.
Save jonathanpeppers/5aea0a1b24a7637bc520 to your computer and use it in GitHub Desktop.
Windows Azure FAKE example
let serverParameters = [
("Configuration", "Release")
("Platform", "AnyCPU")
("DeployOnBuild", "True")
("PublishProfile", "myprofile.pubxml")
("VisualStudioVersion", "12.0")
]
//Other variables
Target "server" (fun () ->
MSBuild "" "Build" serverParameters [ serverProject ] |> ignore
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment