This repository has been archived by the owner on Jul 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.settings.props
720 lines (658 loc) · 26.9 KB
/
deploy.settings.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
<?xml version="1.0" encoding="utf-8"?>
<Project
DefaultTargets="Run"
ToolsVersion="14.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
**** PREPARE - COPY FILES ****
-->
<ItemGroup Condition=" '$(ShouldLoadNuGetFilesToCopy)' == 'true' ">
<!--
<NuGetFilesToCopy Include="My.Cool.NuGet.Package">
<Include>**/*.*</Include>
<Destinations>$(DirBuildTemp)</Destinations>
</NuGetFilesToCopy>
-->
</ItemGroup>
<ItemGroup Condition=" '$(ShouldLoadHttpFilesToCopy)' == 'true' AND '@(HttpFilesToCopy)' == '' ">
<!--
<HttpFilesToCopy Include="">
<Destination></Destination>
<GpgKey></GpgKey>
<Hash></Hash>
<HashAlgorithm></HashAlgorithm>
<HashFile></HashFile>
<Name></Name>
<Password></Password>
<SignatureFile></SignatureFile>
<UseDefaultCredentials></UseDefaultCredentials>
<UserName></UserName>
<Unzip></Unzip>
</HttpFilesToCopy>
-->
</ItemGroup>
<ItemGroup Condition=" '$(ShouldLoadFilesToCopy)' == 'true' ">
<!--
<FilesToCopy Include="">
<Destination></Destination>
</FilesToCopy>
-->
</ItemGroup>
<ItemGroup Condition=" '$(ShouldLoadArchiveFilesToCopy)' == 'true' ">
<!--
<ArchiveFilesToCopy Include="">
<Destination></Destination>
<GpgKey></GpgKey>
<Hash></Hash>
<HashAlgorithm></HashAlgorithm>
<HashFile></HashFile>
<SignatureFile></SignatureFile>
</ArchiveFilesToCopy>
-->
</ItemGroup>
<!--
**** PUSHTO - DIRECTORY / FILESERVER ****
-->
<!--
The ItemGroup defining the files that should be pushed to a given deployment directory.
The IncludedFiles and the ExcludedFiles are lists of files that
should be included (or excluded) in the list of files to deploy. Each entry is separated by a semi-colon(;).
The PushToDirectorySpecs, IncludedFiles and ExcludedFiles all allow the insertion of build templates,
e.g. \\MyServer\${ProductNameInFilePath}\${VersionSemantic}
-->
<ItemGroup Condition=" '$(ShouldLoadPushToDirectorySpecs)' == 'true' ">
<!--<PushToDirectorySpecs Include="\\MyServer\${ProductNameInFilePath}\${VersionSemantic}">
<IncludedFiles>
$(DirBuildDeploy)\myfile.zip
</IncludedFiles>
<ExcludedFiles>
</ExcludedFiles>
</PushToDirectorySpecs>-->
</ItemGroup>
<!--
**** PUSHTO - HTTP / FTP SERVER ****
-->
<!--
The ItemGroup defining the files that should be pushed to a given HTTP or FTP server.
The IncludedFiles and the ExcludedFiles are lists of files that
should be included (or excluded) in the list of files to deploy. Each entry is separated by a semi-colon(;).
The PushToWebSpecs, IncludedFiles and ExcludedFiles all allow the insertion of build templates,
e.g. \\MyServer\${ProductNameInFilePath}\${VersionSemantic}
-->
<ItemGroup Condition=" '$(ShouldLoadPushToWebSpecs)' == 'true' ">
<!--
<PushToWebSpecs Include="http://myserver/${ProductNameInFilePath}/${VersionSemantic}">
<IncludedFiles>
$(DirBuildDeploy)\myfile.zip
</IncludedFiles>
<ExcludedFiles>
</ExcludedFiles>
<Password></Password>
<UseDefaultCredentials></UseDefaultCredentials>
<UserName></UserName>
</PushToWebSpecs>
-->
</ItemGroup>
<!--
**** PUSHTO - NUGET ****
-->
<PropertyGroup>
<!--
The URL to which all NuGet packages should be pushed. By default it pushes to nuget.org.
If the repository needs authentication then the API key should be defined via an environment variable:
NuGetApiKey - The NuGet API key for the NuGet feed
-->
<!--<NuGetSourceUrl>UNDEFINED</NuGetSourceUrl>-->
</PropertyGroup>
<!--
The ItemGroup defining which packages should be pushed up to the NuGet package source.
Allows build templates, e.g. $(DirBuildDeploy)\${VersionSemantic}\*.nupkg.
-->
<ItemGroup Condition=" '$(ShouldLoadNuGetPackagesToPush)' == 'true' ">
<!--
<NuGetPackagesToPush
Condition=" '$(DirBuildDeploy)' != '' "
Include="$(DirBuildDeploy)\*.nupkg"
Exclude="$(DirBuildDeploy)\*.symbols.nupkg" />
-->
</ItemGroup>
<!--
**** PUSHTO - SYMBOL SERVER ****
-->
<!--
The ItemGroup defining which symbol packages should be pushed up to the symbol server.
Allows build templates, e.g. $(DirBuildDeploy)\${VersionSemantic}\*.symbols.nupkg.
-->
<PropertyGroup>
<!--
The URL to which all NuGet symbol packages should be pushed. If the repository needs authentication then
the API key should be defined via an environment variable:
NuGetApiKey - The NuGet API key for the NuGet feed
-->
<!--<NuGetSymbolSourceUrl>UNDEFINED</NuGetSymbolSourceUrl>-->
<!--
The URL / UNC path to which all the symbol packages should be pushed.
-->
<!--<SymbolServerUncPath>UNDEFINED</SymbolServerUncPath>-->
</PropertyGroup>
<ItemGroup Condition=" '$(ShouldLoadSymbolPackagesToPush)' == 'true' ">
<!--
<SymbolPackagesToPush
Condition=" '$(DirBuildDeploy)' != '' "
Include="$(DirBuildDeploy)\*.symbols.nupkg" />
-->
</ItemGroup>
<!--
**** PUSHTO - GITHUB RELEASE ****
-->
<!--
The ItemGroup defining the files that should be pushed to a GitHub release. All properties
except for the Repository allow the use of build templates, e.g. $(DirBuildDeploy)\myarchive-${VersionSemantic}.zip
-->
<ItemGroup Condition=" '$(ShouldLoadPushToGitHubReleaseSpecs)' == 'true' ">
<!--
<PushToGitHubReleaseSpecs Include="${VersionSemantic} - My release">
<Repository>MyCoolProject</Repository>
<Description>${ReleaseNotes}</Description>
<IncludedFiles>
$(DirBuildDeploy)\myarchive-${VersionSemantic}.zip
</IncludedFiles>
<ExcludedFiles>
</ExcludedFiles>
</PushToGitHubReleaseSpecs>
-->
</ItemGroup>
<!--
**** PUSHTO - GIT BRANCH ****
-->
<!--
The ItemGroup defining the files that should be pushed to a GIT branch. All properties
allow the use of build templates, e.g. $(DirBuildDeploy)\myarchive-${VersionSemantic}.zip
-->
<ItemGroup Condition=" '$(ShouldLoadPushToGitBranchSpecs)' == 'true' ">
<PushToGitBranchSpecs
Condition=" '$(DirBuildDeploy)' != '' "
Include="$(DirBuildDeploy)\${ProductName}-${VersionSemantic}.zip">
<Repository>git@github.com:Calvinverse/calvinverse.github.io.git</Repository>
<Branch>master</Branch>
<ExtractZipFiles>true</ExtractZipFiles>
<CommitMessage>Updating the documentation for ${VersionSemantic}</CommitMessage>
</PushToGitBranchSpecs>
</ItemGroup>
<!--
**** PUSHTO - GIT REPOSITORY ****
-->
<!--
The ItemGroup defining the zip files containing a git workspace that should be pushed to a GIT repository.
All properties allow the use of build templates, e.g. $(DirBuildDeploy)\myarchive-${VersionSemantic}.zip
-->
<ItemGroup Condition=" '$(ShouldLoadPushToGitRepositorySpecs)' == 'true' ">
<!--
<PushToGitRepositorySpecs
Condition=" '$(DirBuildDeploy)' != '' "
Include="$(DirBuildDeploy)\myarchive-${VersionSemantic}.zip">
<Repository>$(GitRemoteRepository)</Repository>
</PushToGitRepositorySpecs>
-->
</ItemGroup>
<!--
**** DEPLOY STEPS ****
-->
<PropertyGroup>
<!-- Indicate if an error in the pre-step actions should fail the deploy -->
<!-- <FailDeployOnPreStepFailure>false</FailDeployOnPreStepFailure> -->
<!-- Indicate if an error in the post-step actions should fail the deploy -->
<!-- <FailDeployOnPostStepFailure>false</FailDeployOnPostStepFailure> -->
<!-- Indicate if an error in the pre-step actions should immediately stop the deploy -->
<!-- <StopDeployOnPreStepFailure>false</StopDeployOnPreStepFailure> -->
<!-- Indicate if an error in the post-step actions should immediately stop the deploy -->
<!-- <StopDeployOnPostStepFailure>false</StopDeployOnPostStepFailure> -->
</PropertyGroup>
<!--
A list of all additional scripts and their targets that should be executed before each of the selected deploy steps. Globally defined
pre-steps will be executed prior to the presteps of the individual steps.
The metadata to the script that is about to be executed is passed to each pre-step under the following properties:
- StepDescription : The full description of the step to be executed.
- StepId : The ID of the step. In general the name of the property that references the step file.
- StepName : The name of the step.
- StepPath : The full path to the script file for the step.
Additionally all the standard properties as seen below and the properties for the given deploy step are passed in.
-->
<ItemGroup Condition=" '$(ShouldLoadDeployPreStepsToExecute)' == 'true' ">
<!--
<DeployPreStepsToExecute Include="">
<Properties>
</Properties>
</DeployPreStepsToExecute>
-->
</ItemGroup>
<!--
A list of all additional scripts and their targets that should be executed after each of the selected deploy steps. Globally defined
post-steps will be executed after the poststeps of the individual steps.
The metadata to the script that is about to be executed is passed to each pre-step under the following properties:
- StepDescription : The full description of the step to be executed.
- StepId : The ID of the step. In general the name of the property that references the step file.
- StepName : The name of the step.
- StepPath : The full path to the script file for the step.
Additionally all the standard properties as seen below and the properties for the given deploy step are passed in.
-->
<ItemGroup Condition=" '$(ShouldLoadDeployPostStepsToExecute)' == 'true' ">
<!--
<DeployPostStepsToExecute Include="">
<Properties>
</Properties>
</DeployPostStepsToExecute>
-->
</ItemGroup>
<!--
The following ItemGroup defines which steps are taken during the deploy process. The order of the items in the item group
determines in which order the deploy steps are executed.
Each deploy step can define the following items:
- Properties - The semi-colon separated set of properties that should be passed to the script.
Properties are written as 'key=value'.
- Groups - All the groups that a given step belongs to. The user can elect to only run deploy steps for a given group.
- PreSteps - A semi-colon separated list of all additional scripts and their targets that should be executed before
the selected deploy step.
- PostSteps - A semi-colon separated list of all additional scripts and their targets that should be executed after
the selected deploy step.
The metadata to the script that is about to be executed is passed to each pre-step under the following properties:
- StepDescription : The full description of the step to be executed.
- StepId : The ID of the step. In general the name of the property that references the step file.
- StepName : The name of the step.
- StepPath : The full path to the script file for the step.
Additionally all the standard properties as seen below and the properties for the given deploy step are passed in.
The following ItemGroup defines which steps are taken during the deploy process. The order of the items in the item group
determines in which order the deploy steps are executed.
Additional deploy steps can be defined by providing the path to the MsBuild script that should be executed
for that step, e.g. adding a deploy step that points to the 'c:\stuff\MyCoolScript.msbuild' will execute
that script.
Any properties defined by the 'Properties' section are pushed up.
-->
<ItemGroup Condition=" '$(ShouldLoadDeployStepsToExecute)' == 'true' ">
<!--
<DeployStepsToExecute Include="$(DeployStepsBuildTargetsAssembly)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
prepare;
prepare.bootstrap;
</Groups>
<Id>DeployStepsBuildTargetsAssembly</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
</Properties>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsGenerateTargetsFile)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
prepare;
prepare.bootstrap;
</Groups>
<Id>DeployStepsGenerateTargetsFile</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
</Properties>
</DeployStepsToExecute>
-->
<DeployStepsToExecute Include="$(DeployStepsRestoreNuGet)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
prepare;
prepare.restore;
prepare.restore.nuget;
</Groups>
<Id>DeployStepsRestoreNuGet</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
</Properties>
</DeployStepsToExecute>
<!--
The following steps need to be executed on the original branch (i.e. the branch we are interested in
building.
-->
<DeployStepsToExecute Include="$(DeployStepsPrepareVcsBranch)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
prepare;
prepare.buildserver;
prepare.buildserver.vcssetbranch;
</Groups>
<Id>DeployStepsPrepareVcsBranch</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
</Properties>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsPrepareGetIssueIds)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
prepare;
prepare.get;
prepare.get.issueids;
</Groups>
<Id>DeployStepsPrepareGetIssueIds</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
</Properties>
</DeployStepsToExecute>
<!--
All steps from here on may be executed on a different branch than the orginal branch we we started the
build on because we might have done some merging / restoring from a different repository.
-->
<DeployStepsToExecute Include="$(DeployStepsPrepareGetVersion)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
prepare;
prepare.get;
prepare.get.version;
</Groups>
<Id>DeployStepsPrepareGetVersion</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
</Properties>
</DeployStepsToExecute>
<!--
<DeployStepsToExecute Include="$(DeployStepsPrepareTagVcs)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
prepare;
prepare.vcs;
prepare.vcs.tag;
</Groups>
<Id>DeployStepsPrepareTagVcs</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform);
</Properties>
</DeployStepsToExecute>
-->
<DeployStepsToExecute Include="$(DeployStepsPrepareCopyNuGet)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
prepare;
prepare.copy;
prepare.copy.nuget;
</Groups>
<Id>DeployStepsPrepareCopyNuGet</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
</Properties>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsPrepareCopyHttp)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
prepare;
prepare.copy;
prepare.copy.url;
</Groups>
<Id>DeployStepsPrepareCopyHttp</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
</Properties>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsPrepareCopyFiles)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
prepare;
prepare.copy;
prepare.copy.files;
</Groups>
<Id>DeployStepsPrepareCopyFiles</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
</Properties>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsPrepareCopyArchive)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
prepare;
prepare.copy;
prepare.copy.archive;
</Groups>
<Id>DeployStepsPrepareCopyArchive</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
</Properties>
</DeployStepsToExecute>
<!--
<DeployStepsToExecute Include="$(DeployStepsPushToTags)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
deploy;
deploy.vcs.tags;
</Groups>
<Id>DeployStepsPushToTags</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform);
</Properties>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsPushToNuget)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
deploy;
deploy.package.nuget;
</Groups>
<Id>DeployStepsPushToNuget</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform);
</Properties>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsPushToDirectory)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
deploy;
deploy.package.directory;
</Groups>
<Id>DeployStepsPushToDirectory</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform);
</Properties>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsPushToHttp)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
deploy;
deploy.package.http;
</Groups>
<Id>DeployStepsPushToHttp</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform);
</Properties>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsPushToSymbolServer)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
deploy;
deploy.package.symbols;
</Groups>
<Id>DeployStepsPushToSymbolServer</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform);
</Properties>
</DeployStepsToExecute>
<DeployStepsToExecute Include="$(DeployStepsPushToGitHubRelease)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
deploy;
deploy.github;
</Groups>
<Id>DeployStepsPushToGitHubRelease</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform);
</Properties>
</DeployStepsToExecute>
-->
<DeployStepsToExecute
Condition=" '$(IsMasterBranch)' == 'true' "
Include="$(DeployStepsPushToGitBranch)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
deploy;
deploy.vcs.git.branch;
</Groups>
<Id>DeployStepsPushToGitBranch</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform);
</Properties>
</DeployStepsToExecute>
<!--
<DeployStepsToExecute Include="$(DeployStepsPushToGitRepository)">
<ExecuteAfter></ExecuteAfter>
<ExecuteBefore></ExecuteBefore>
<Groups>
deploy;
deploy.vcs.git.repository;
</Groups>
<Id>DeployStepsPushToGitRepository</Id>
<PostSteps>
</PostSteps>
<PreSteps>
</PreSteps>
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform);
</Properties>
</DeployStepsToExecute>
-->
</ItemGroup>
<!--
Define the scripts that should be executed when any one of the deploy steps fails.
Steps can be defined by providing the path to the MsBuild script that should be executed
for that step, e.g. adding a deploy step that points to the 'c:\stuff\MyCoolScript.msbuild' will execute
that script.
Any properties defined by the 'Properties' section are pushed up.
-->
<ItemGroup Condition=" '$(ShouldLoadDeployFailureStepsToExecute)' == 'true' ">
<!--
<DeployFailureStepsToExecute Include="">
<Properties>
</Properties>
</DeployFailureStepsToExecute>
-->
</ItemGroup>
<!--
The following item group stores metadata describing the custom deploy steps that are executed in the deploy process.
By providing this metadata it is possible for pre- and post-step actions to more clearly determine which step
they were attached to.
-->
<ItemGroup Condition=" '$(ShouldLoadAvailableStepMetadata)' == 'true' ">
<!--
<AvailableStepMetadata Include="$([System.IO.Path]::GetFileName('$(DirWorkspace)\my.deploy.step.msbuild'))">
<Description>
The description for my cool deploy step
</Description>
<Id></Id>
<Name>My deploy step</Name>
<Path>$(DirWorkspace)\my.deploy.step.msbuild</Path>
</AvailableStepMetadata>
-->
</ItemGroup>
<!--
*************************************
* *
* SHARED TOOLS *
* *
*************************************
-->
<!-- Overrides for the tools paths -->
<PropertyGroup>
</PropertyGroup>
<!--
*****************************************
* *
* NBUILDKIT SPECIFIC SETTINGS *
* *
*****************************************
-->
<PropertyGroup>
<!-- Defines whether the current script file has been loaded / imported or not -->
<ExistsDeploySettings>true</ExistsDeploySettings>
<!-- Defines the version number of the configuration file -->
<NBuildKitConfigurationVersion>0.10</NBuildKitConfigurationVersion>
</PropertyGroup>
</Project>