Skip to content

Instantly share code, notes, and snippets.

@pvandervelde
Created January 18, 2017 09:19
Show Gist options
  • Save pvandervelde/8ee5a1dc96d0835bb8b3aa6354896ba7 to your computer and use it in GitHub Desktop.
Save pvandervelde/8ee5a1dc96d0835bb8b3aa6354896ba7 to your computer and use it in GitHub Desktop.
<ItemGroup>
<DeployStepsToExecute Include="$(DeployStepsPrepareVcsBranch)">
<Properties>
</Properties>
<Groups>
Prepare;
</Groups>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsPrepareGetVersion)">
<Properties>
</Properties>
<Groups>
Prepare;
</Groups>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsPrepareGetIssueIds)">
<Properties>
</Properties>
<Groups>
Prepare;
</Groups>
</DeployStepsToExecute>
<DeployStepsToExecute
Include="$(DirWorkspace)\deploy.pushto.appveyor.msbuild">
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform);
</Properties>
<Groups>
AppVeyor;
Push;
</Groups>
</DeployStepsToExecute>
<DeployStepsToExecute
Condition=" '$(BranchGitExpected)' == 'master' "
Include="$(DeployStepsPushToGitBranch)">
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform);
</Properties>
<Groups>
Git;
Push;
</Groups>
</DeployStepsToExecute>
</ItemGroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment