Created
March 2, 2015 20:41
-
-
Save jonathanpeppers/5aea0a1b24a7637bc520 to your computer and use it in GitHub Desktop.
Windows Azure FAKE example
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
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