Created
January 18, 2017 09:19
-
-
Save pvandervelde/8ee5a1dc96d0835bb8b3aa6354896ba7 to your computer and use it in GitHub Desktop.
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
<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