Skip to content

Instantly share code, notes, and snippets.

@domgreen
Created April 16, 2011 17:07
Show Gist options
  • Save domgreen/923300 to your computer and use it in GitHub Desktop.
Save domgreen/923300 to your computer and use it in GitHub Desktop.
Build Targets that depend on packaging targets for cloud and local deployment
<Target Name="CloudDeploy" DependsOnTargets="CorePublish" Condition=" '$(DeployType)' == 'Cloud' ">
...
</Target>
<Target Name="LocalDeploy" DependsOnTargets="CorePackageComputeService" Condition=" '$(DeployType)' == 'Local' ">
...
</Target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment