f#-fake-4

FAKE: How to define MSBuild properties?

社会主义新天地 提交于 2019-11-28 03:28:52
问题 I want to switch from MSBuild to FAKE. In my MSBuild script I create a Webdeploy package by invoking MSBuild with the properties DeployOnBuild=True and DeployTarget=Package. This will trigger webdeploy to generate a deployment package while the build is running: <MSBuild Projects="@(ItemToBuild)" Targets="Build" Properties="Configuration=$(Configuration); Platform=$(Platform); DeployOnBuild=True; DeployTarget=Package; OutFolder=$(OutFolder)" /> How can I do the same thing with FAKE? I've come