-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.settings.props
More file actions
1001 lines (882 loc) · 52.7 KB
/
build.settings.props
File metadata and controls
1001 lines (882 loc) · 52.7 KB
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
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0"
DefaultTargets="Run"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Overrides for the build configuration -->
<PropertyGroup>
<!-- A flag that indicates whether or not the build output of the VS projects is redirected to the $(DirBuildBinPlatformConfig) directory. -->
<!-- <RedirectBuildOutputToSingleFolder Condition=" '$(RedirectBuildOutputToSingleFolder)' == '' ">false</RedirectBuildOutputToSingleFolder> -->
<!-- The build configuration (debug / release / ...) that will be used to run all the unit tests and the static verification on -->
<!--<TestConfiguration Condition=" '$(TestConfiguration)' == '' ">release</TestConfiguration>-->
<!-- The build configuration (debug / release / ..) that will be used to create the binaries that should be deployed -->
<!--<ProductionConfiguration Condition=" '$(ProductionConfiguration)' == '' ">release</ProductionConfiguration>-->
<!-- The platform for which the binaries will be build -->
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<!--<PlatformWithoutSpaces>$(Platform.Replace(" ",""))</PlatformWithoutSpaces>-->
</PropertyGroup>
<!--
**** BUILD STEPS ****
-->
<!--
The following ItemGroup defines which steps are taken during the build process. The order of the items in the item group
determines in which order the build steps are executed.
The following default steps are always executed:
- Clearing the existing build artifacts from the workspace and creation of the required directories. Clearing the
existing build artifacts is only executed if the $(ShouldClean) property is set to 'true'.
- Restoring the NuGet packages as specified in the '$(DirWorkspace)\packages.config' file. Additionally also restores the
NuGet packages as specified in the nBuildKit specific 'packages.config' files.
The following build steps are by default provided through the given properties:
$(BuildStepsPrepareGetVersion) - Gathers version information and stores it in a temporary file for use by the rest of the build process.
Currently supported methods of gathering version information are using (in order):
- The version defined by a custom MsBuild task which is defined in a file of which the path is stored
in the 'VersionScriptPath' property. The task should output:
- VersionMajor
- VersionMinor
- VersionPatch
- VersionBuild
- VersionPreRelease
- VersionSemantic
- VersionSemanticFull
- VersionSemanticNuget
- The version stored in an 'version.xml' file which contains an MsBuild property group with
the properties:
- BuildNumber
- VersionMajor
- VersionMinor
- VersionPatch
- VersionBuild
- VersionPreRelease
- The GitVersion tool (https://github.com/ParticularLabs/GitVersion)
- The GitHubFlowVersion tool (https://github.com/JakeGinnivan/GitHubFlowVersion)
$(BuildStepsPrepareReleaseNotes) - Gathers the release notes and stores them for later use during the build process. Release notes
are retrieved with the GitReleaseNotes tool (https://github.com/GitTools/GitReleaseNotes) which
currently allows gathering release notes from GitHub, Jira and YouTrack
$(BuildStepsPrepareVcsInfo) - Stores the Version Control System (VCS) information in a file for later use.
Currently supported version control systems is GIT
$(BuildStepsPrepareRestoreNpm) - Restores all the NPM packages for the project.
$(BuildStepsPrepareRestoreBower) - Restores all the Bower packages for the project.
$(BuildStepsPrepareAssemblyInfo) - Updates all existing AssemblyInfo.cs and AssemblyInfo.vb files with the version numbers, company information,
copyright information and optionally build time and build information.
$(BuildStepsPrepareGenerateFiles) - Generates one or more files from a set of template files.
$(BuildStepsPrepareGenerateLicenses) - Generates an XML file containing the licenses for all the NuGet packages in use for the current build.
$(BuildStepsAnalyzeSourceCcm) - Analyzes the source code files with CCM.
$(BuildStepsAnalyzeSourceSouceMonitor) - Analyzes the source code files with SourceMonitor.
$(BuildStepsBuildVisualStudioSolution) - Builds the binaries from a given Visual Studio solution.
$(BuildStepsUnitTestNUnit) - Executes the unit tests with NUnit and measures code coverage with OpenCover.
$(BuildStepsUnitTestMsTest) - Executes the unit tests with MsTest and measures code coverage with OpenCover.
$(BuildStepsUnitTestVsTest) - Executes the unit tests with VsTest and measures code coverage.
$(BuildStepsAnalyzeBinariesMoma) - Analyzes the binary files with Moma (Mono Migration Analyzer).
$(BuildStepsAnalyzeBinariesFxCop) - Analyzes the binary files with FxCop.
$(BuildStepsBuildApiDocumentationWithSandcastle) - Builds the API documentation with SandCastle from the inline XML documentation comments.
$(BuildStepsPackNuGet) - Generates the NuGet packages.
$(BuildStepsPackZip) - Generates one or more ZIP archives.
Additional build steps can be defined by providing the path to the MsBuild script that should be executed
for that step, e.g. adding a build step that points to the 'c:\stuff\MyCoolScript.msbuild' will execute
that script.
Each script has the following properties passed to it:
$(SharedPropertyFile) - The full path to the settings.props file (i.e. this file).
$(ShouldDisplayDebugLog) - A flag indicating whether or not to display debug log information, usually at the start of the script execution.
$(NBuildKitVersion) - The full version of the nBuildKit library that is executing the build.
$(DirNBuildKitMsBuild) - The full path to the directory that contains the nBuildKit scripts.
$(DirNBuildKitMsBuildShared) - The full path to the directory that contains the shared nBuildkit scripts.
$(DirNBuildKitMsBuildExtensions) - The full path to the directory that contains the nBuildKit extension scripts.
$(DirNBuildKitMsBuildTemplates) - The full path to the directory that contains the nBuildKit templates.
Additionally any properties defined by the 'Properties' section are also pushed up.
-->
<ItemGroup>
<BuildStepsToExecute Include="$(BuildStepsPrepareGetVersion)">
<Properties>
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsPrepareReleaseNotes)">
<Properties>
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsPrepareVcsInfo)">
<Properties>
</Properties>
</BuildStepsToExecute>
<!--
<BuildStepsToExecute Include="$(BuildStepsPrepareRestoreNpm)">
<Properties>
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsPrepareRestoreBower)">
<Properties>
</Properties>
</BuildStepsToExecute>
-->
<BuildStepsToExecute Include="$(BuildStepsPrepareAssemblyInfo)">
<Properties>
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsPrepareGenerateLicenses)">
<Properties>
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsPrepareGenerateFiles)">
<Properties>
</Properties>
</BuildStepsToExecute>
<!--
<BuildStepsToExecute Include="$(BuildStepsAnalyzeSourceCcm)">
<Properties>
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsAnalyzeSourceSouceMonitor)">
<Properties>
</Properties>
</BuildStepsToExecute>
-->
<BuildStepsToExecute Include="$(BuildStepsBuildVisualStudioSolution)">
<Properties>
</Properties>
</BuildStepsToExecute>
<!--
<BuildStepsToExecute Include="$(BuildStepsUnitTestNUnit)">
<Properties>
Configuration=$(TestConfiguration);
Platform=$(Platform)
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsUnitTestMsTest)">
<Properties>
Configuration=$(TestConfiguration);
Platform=$(Platform)
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsUnitTestVsTest)">
<Properties>
Configuration=$(TestConfiguration);
Platform=$(Platform)
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsAnalyzeBinariesMoma)">
<Properties>
Configuration=$(TestConfiguration);
Platform=$(Platform)
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsAnalyzeBinariesFxCop)">
<Properties>
Configuration=$(TestConfiguration);
Platform=$(Platform)
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsBuildApiDocumentationWithSandcastle)">
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform)
</Properties>
</BuildStepsToExecute>
-->
<BuildStepsToExecute Include="$(BuildStepsPackNuGet)">
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform)
</Properties>
</BuildStepsToExecute>
<BuildStepsToExecute Include="$(BuildStepsPackZip)">
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform)
</Properties>
</BuildStepsToExecute>
</ItemGroup>
<!--
Define the scripts that should be executed when any one of the build 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 build step that points to the 'c:\stuff\MyCoolScript.msbuild' will execute
that script.
Each script has the following properties passed to it:
$(SharedPropertyFile) - The full path to the settings.props file (i.e. this file).
$(ShouldDisplayDebugLog) - A flag indicating whether or not to display debug log information, usually at the start of the script execution.
$(NBuildKitVersion) - The full version of the nBuildKit library that is executing the build.
$(DirNBuildKitMsBuild) - The full path to the directory that contains the nBuildKit scripts.
$(DirNBuildKitMsBuildShared) - The full path to the directory that contains the shared nBuildkit scripts.
$(DirNBuildKitMsBuildExtensions) - The full path to the directory that contains the nBuildKit extension scripts.
$(DirNBuildKitMsBuildTemplates) - The full path to the directory that contains the nBuildKit templates.
Additionally any properties defined by the 'Properties' section are also pushed up.
-->
<ItemGroup>
<!--
<BuildFailureStepsToExecute Include="">
<Properties>
</Properties>
</BuildFailureStepsToExecute>
-->
</ItemGroup>
<!--
**** PREPARE - UPDATE ASSEMBLY INFO FILES ****
-->
<ItemGroup>
<!--
<AssemblyInfoFilesToUpdate Include="$(DirSrc)\**\AssemblyInfo.cs" />
<AssemblyInfoFilesToUpdate Include="$(DirSrc)\**\AssemblyInfo.vb" />
-->
</ItemGroup>
<!--
**** PREPARE - GENERATE FILES ****
-->
<!--
The list of all files that should be generated and their template files.
The template file may contain zero or more template parameters as indicated at the top of this
file. Template parameters must be enclosed in '${}'.
Additional parameters can be provided through the 'TemplateTokens' ItemGroup below.
-->
<ItemGroup>
<BuildFilesToGenerate Include="$(DirBuildTemp)\tools\vscoveragetoreportgenerator.readme.txt">
<Template>$(DirSrc)\readme.txt</Template>
<Token>PackageName</Token>
<ReplacementValue>nBuildKit.Tools.VsCoverageToReportGenerator</ReplacementValue>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\nbuildkit.readme.txt">
<Template>$(DirSrc)\readme.txt</Template>
<Token>PackageName</Token>
<ReplacementValue>nBuildKit.MsBuild</ReplacementValue>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\scripts\build\packages.config">
<Template>$(DirSrc)\msbuild\scripts\build\packages.config</Template>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\scripts\test\packages.config">
<Template>$(DirSrc)\msbuild\scripts\test\packages.config</Template>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\scripts\deploy\packages.config">
<Template>$(DirSrc)\msbuild\scripts\deploy\packages.config</Template>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\projects\csharp\import.props">
<Template>$(DirSrc)\msbuild\projects\import.props</Template>
<Token>PackageName</Token>
<ReplacementValue>nBuildKit.MsBuild.Projects.CSharp</ReplacementValue>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\projects\csharp\import.targets">
<Template>$(DirSrc)\msbuild\projects\import.targets</Template>
<Token>PackageName</Token>
<ReplacementValue>nBuildKit.MsBuild.Projects.CSharp</ReplacementValue>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\projects\csharp\nbuildkit.csharp.readme.txt">
<Template>$(DirSrc)\readme.txt</Template>
<Token>PackageName</Token>
<ReplacementValue>nBuildKit.MsBuild.Projects.CSharp</ReplacementValue>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\projects\vbnet\import.props">
<Template>$(DirSrc)\msbuild\projects\import.props</Template>
<Token>PackageName</Token>
<ReplacementValue>nBuildKit.MsBuild.Projects.VBNet</ReplacementValue>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\projects\vbnet\import.targets">
<Template>$(DirSrc)\msbuild\projects\import.targets</Template>
<Token>PackageName</Token>
<ReplacementValue>nBuildKit.MsBuild.Projects.VBNet</ReplacementValue>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\projects\vbnet\nbuildkit.vbnet.readme.txt">
<Template>$(DirSrc)\readme.txt</Template>
<Token>PackageName</Token>
<ReplacementValue>nBuildKit.MsBuild.Projects.VBNet</ReplacementValue>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\projects\wix\import.props">
<Template>$(DirSrc)\msbuild\projects\import.props</Template>
<Token>PackageName</Token>
<ReplacementValue>nBuildKit.MsBuild.Projects.WiX</ReplacementValue>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\projects\wix\import.targets">
<Template>$(DirSrc)\msbuild\projects\import.targets</Template>
<Token>PackageName</Token>
<ReplacementValue>nBuildKit.MsBuild.Projects.WiX</ReplacementValue>
</BuildFilesToGenerate>
<BuildFilesToGenerate Include="$(DirBuildTemp)\msbuild\projects\wix\nbuildkit.wix.readme.txt">
<Template>$(DirSrc)\readme.txt</Template>
<Token>PackageName</Token>
<ReplacementValue>nBuildKit.MsBuild.Projects.WiX</ReplacementValue>
</BuildFilesToGenerate>
</ItemGroup>
<!--
**** SOURCE ANALYSIS - CCM ****
-->
<PropertyGroup>
<!--
The full path to the template file that is used to provide the project information for CCM. Defaults
to the template file included with nBuildKit.
-->
<!--<FileTemplateCcm Condition=" '$(FileTemplateCcm)' == '' ">$(DirNBuildKitMsBuildTemplates)\ccm.xml</FileTemplateCcm>-->
<!--
The full path to the report file generated by CCM. Allows build templates. Allows build templates,
e.g. $(DirBuildLogs)\${ProductName}_ccm.xml.
-->
<!--<FileReportCcm Condition=" '$(FileReportCcm)' == '' ">$(DirBuildLogs)\ccm.xml</FileReportCcm>-->
</PropertyGroup>
<!--
**** SOURCE ANALYSIS - SOURCEMONITOR ****
-->
<PropertyGroup>
<!--
The full path to the template file that is used to provide the project information for SourceMonitor. Defaults
to the template file included with nBuildKit.
-->
<!--<FileTemplateSourceMonitor Condition=" '$(FileTemplateSourceMonitor)' == '' ">$(DirNBuildKitMsBuildTemplates)\sourcemonitor.xml</FileTemplateSourceMonitor>-->
<!--
The full path to the report file generated by SourceMonitor. Allows build templates. Allows build templates,
e.g. $(DirBuildLogs)\${ProductName}_sourcemonitor.xml
-->
<!--<FileReportSourceMonitor Condition=" '$(FileReportSourceMonitor)' == '' ">$(DirBuildLogs)\sourcemonitor.xml</FileReportSourceMonitor>-->
</PropertyGroup>
<!--
**** VISUAL STUDIO BUILD ****
-->
<!--
The item group defining the location of the Vistual Studio solutions that should be build.
The solution path allows build templates, e.g. '$(DirSrc)\${CompanyName}\${ProductName}\MySolution.sln'
-->
<ItemGroup>
<SolutionsToBuild Include="$(DirSrc)\tools\VSCoverageToReportGenerator\VSCoverageToReportGenerator.sln">
<Configuration>$(ProductionConfiguration)</Configuration>
<Platform>$(Platform)</Platform>
<Targets>Rebuild</Targets>
<Properties></Properties>
</SolutionsToBuild>
</ItemGroup>
<PropertyGroup>
<!--
A flag that indicates whether the source files with the company and product information should be generated.
The files will be placed in the source directory (i.e. DirSrc) and will be called CompanyInformation.xx
(cs/vb/wxi) and ProductInformation.xx (cs/vc/wxi).
The CompanyInformation file will contain the Company website URL, the company name and the company name as used
in file paths.
The ProductInformation file will contain the product name, the product description and the product name as used
in file paths.
Any namespaces will be created as <ProductNamespace>.Internals where 'ProductNamespace' is defined
in the current file at the top.
-->
<ShouldGenerateCompanyAndProductInfo>false</ShouldGenerateCompanyAndProductInfo>
<!--
A flag that indicates whether an AssemblyInfo file with the company and copyright information should be generated.
The file will be placed in the Properties directory of the Visual Studio project and will be named
AssemblyInfo.Company.xx (cs/vb). This file will contain:
- The AssemblyCompanyAttribute with the company name
- The AssemblyCopyrightAttribute with the text provided by the ${CopyrightLong} template parameter.
-->
<ShouldGenerateAssemblyCompanyInfo>true</ShouldGenerateAssemblyCompanyInfo>
<!--
A flag that indicates whether an AssemblyInfo file with the version numbers should be generated. The file
will be placed in the Properties directory of the Visual Studio project and will be named
AssemblyInfo.Version.xx (cs/vb). This file will contain:
- The AssemblyVersionAttribute with the version as provided by the ${VersionAssembly} template parameter.
- The AssemblyFileVersionAttribute with the version as provided by the ${VersionAssemblyFile} template parameter.
- The AssemblyInformationalVersionAttribute with the version as provided by the ${VersionProduct} template parameter.
Also indicates that a VersionNumber.wxi should be generated. This file will be placed
in the project folder of the Visual Studio project. This file will contain:
- The ApplicationVersion property with the version as provided by the ${VersionProduct} template parameter.
- The InstallVersion property with the version as provided by the ${VersionInstall} template parameter.
- The ProductVersionFolder property with the version as provided by the ${VersionInstallFilePath} template parameter.
-->
<ShouldGenerateAssemblyVersionInfo>true</ShouldGenerateAssemblyVersionInfo>
<!--
A flag that indicates whether an AssemblyInfo file with the build information should be generated. The file
will be placed in the Properties directory of the Visual Studio project and will be named
AssemblyInfo.BuildInformation.xx (cs/vb). This file will contain
- The AssemblyConfigurationAttribute containing the configuration of the build, e.g. Debug
- The AssemblyBuildTimeAttribute containing the complete date and time that the file was generated (which
should be close enough to the time the assembly was build).
- The assemblyBuildInformationAttribute which contains the build number and VCS revision number.
Note for this file to compile successfully a reference to the Nuclei.Build assembly needs to be added.
This assembly can be found on NuGet.org (http://www.nuget.org/packages/Nuclei.Build/)
-->
<ShouldGenerateAssemblyBuildInfo>true</ShouldGenerateAssemblyBuildInfo>
<!--
A flag that indicates whether an application manifest file should be generated for executables. The
manifest file is placed in the same directory as the Visual Studio project and will be named
<ProjectOutputName>.manifest, e.g. MyCoolApp.exe.manifest.
-->
<ShouldGenerateApplicationManifest>false</ShouldGenerateApplicationManifest>
<!--
A flag that indicates whether the current project is a Test project. The value will be set in the Visual
Studio project files based on whether the project is a test project (as determined by the ProjectType GUID).
This value is defined here just so that there is a value when no other value is specified. Do not comment this
value out unless you know what you are doing!
-->
<!--
Note that {3AC096D0-A1C2-E12C-1390-A8335801FDAB} is the project type GUID for test projects in any language
See here: http://www.codeproject.com/Reference/720512/List-of-Visual-Studio-Project-Type-GUIDs
-->
<IsTest Condition=" '$(IsTest)' == '' ">$(ProjectTypeGuids.Contains('{3AC096D0-A1C2-E12C-1390-A8335801FDAB}'))</IsTest>
</PropertyGroup>
<!-- Build configuration -->
<PropertyGroup>
<!--
A flag indicating whether warnings should be treated as errors by the compiler. This value is set
for all projects that include the MsBuild.Projects.XXXX NuGet package.
-->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!--
The version of the .NET framework at which the assemblies should be targeted. This value is set
for all projects that include the MsBuild.Projects.XXXX NuGet package.
-->
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<!--
The platform against which the code should be compiled. Note that the target should not have space in it,
i.e. AnyCPU, x86, x64 etc.
-->
<PlatformTarget>$(PlatformWithoutSpaces)</PlatformTarget>
</PropertyGroup>
<!-- Execute code analysis after the build -->
<PropertyGroup>
<!--
A flag that indicates whether or not the code analysis should be executed immediately after the compilation
process is complete.
-->
<ShouldPerformCodeAnalysis Condition=" '$(ShouldPerformCodeAnalysis)' == '' ">true</ShouldPerformCodeAnalysis>
<!--
The code analysis rule set that should be used for non-test assemblies.
-->
<CodeAnalysisRuleSet Condition="$(ShouldPerformCodeAnalysis) AND !$(IsTest)">$(SolutionDir)\VSCoverageToReportGenerator.ruleset</CodeAnalysisRuleSet>
<!--
The code analysis rule set that should be used for test assemblies. If no code analysis should be executed on test
assemblies then it can be turned off in the settings for the different build configurations below.
-->
<CodeAnalysisRuleSet Condition="$(ShouldPerformCodeAnalysis) AND $(IsTest)">$(SolutionDir)\VSCoverageToReportGenerator.ruleset</CodeAnalysisRuleSet>
<!--
The culture which will be used by the code analysis when searching for spelling errors. The culture name should
be formatted using the .NET culture format.
-->
<CodeAnalysisCulture Condition="$(ShouldPerformCodeAnalysis)">en-US</CodeAnalysisCulture>
</PropertyGroup>
<!-- Generate the XML documentation file -->
<PropertyGroup>
<!--
A flag indicating whether or not the XML documentation file should be generated during the compilation process.
Note that if 'WarningsAsErrors' is enabled then missing documentation will generate errors that stop the
build process.
If documentation should only be generated for non-test assemblies then add the '!$(IsTest)' condition
to the property.
-->
<GenerateDocumentation>true</GenerateDocumentation>
<!--
The full file path where the XML documentation file should be created.
-->
<DocumentationFile Condition="$(GenerateDocumentation) AND !$(IsTest)">$(OutputPath)\$(AssemblyName).XML</DocumentationFile>
</PropertyGroup>
<!-- Strong name the binaries -->
<PropertyGroup>
<!--
A flag that indicates whether or not the assemblies should be strong named during the compilation process.
-->
<ShouldSign Condition=" '$(ShouldSign)' == '' ">false</ShouldSign>
<SignAssembly Condition="$(ShouldSign)">true</SignAssembly>
<DelaySign Condition="$(ShouldSign)">false</DelaySign>
<!--
The full path of the key file that will be used to sign the assemblies during the compilation process.
-->
<AssemblyOriginatorKeyFile Condition="$(ShouldSign)">$(SOFTWARE_SIGNING_KEY_PATH)</AssemblyOriginatorKeyFile>
</PropertyGroup>
<!--
Debug configuration
-->
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<!--<DebugSymbols>true</DebugSymbols>-->
<!--<DebugType>full</DebugType>-->
<!--<DefineDebug>true</DefineDebug>-->
<!--<DefineTrace>true</DefineTrace>-->
<!--<Optimize>false</Optimize>-->
<!--<RunCodeAnalysis>$(ShouldPerformCodeAnalysis)</RunCodeAnalysis>-->
</PropertyGroup>
<!--
Release configuration
-->
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<!--<DebugSymbols>false</DebugSymbols>-->
<!--<DebugType>pdbonly</DebugType>-->
<!--<DefineDebug>false</DefineDebug>-->
<!--<DefineTrace>true</DefineTrace>-->
<!--<Optimize>true</Optimize>-->
<!--<RunCodeAnalysis>$(ShouldPerformCodeAnalysis)</RunCodeAnalysis>-->
</PropertyGroup>
<!-- Compiler specific configurations -->
<PropertyGroup>
<!--
Indicates what the warning level is for the C# compiler.
-->
<CSharpWarningLevel>4</CSharpWarningLevel>
<!--
Define any additional constants for the C# compiler. Multiple constants should be
separated by a semi-colon (;).
-->
<CSharpConstants>TRACE</CSharpConstants>
<!--
The name of the directory that contains the VB.NET AssemblyInfo and resoure files.
-->
<!--<VbNetAppDesignerFolder>My Project</VbNetAppDesignerFolder>-->
<!--
Indicates if the VB.NET Option Explicit is 'on' or 'off'
-->
<!--<VbNetOptionExplicit>On</VbNetOptionExplicit>-->
<!--
Indicates if the VB.NET Option strict is 'on' or 'off'
-->
<!--<VbNetOptionStrict>On</VbNetOptionStrict>-->
</PropertyGroup>
<!--
The ItemGroup defining the information for the generation of the InternalsVisibleAttribute.
Three different ways of referencing the test projects public key are available. Test assemblies
can be referenced by:
- Providing the snk key that was / is used to sign the test assembly. This is mainly of use
for test assemblies which are compiled at the same time as the target assemblies, i.e. test
assemblies that are part of the same Visual Studio solution.
- Providing the signed test assembly. This is mainly of use for test assemblies that have been
compiled prior to compiling the target assemblies, e.g. third party test assemblies.
- Providing the full public key for the assembly. This is mainly of use for assemblies that
do not exists on disk, e.g. assemblies that are dynamically generated.
Multiple projects can be referenced in the 'projects' section by separating them with a semi-colon (;). Whitespace
can be added if required but it has no influence on the project list.
If the assemblies are not signed it is possible to leave out the signing information, e.g. the 'KeyFile'
property, the 'AssemblyFromPackage' property and the 'PublicKey' property.
-->
<ItemGroup>
<!--
<InternalsVisibleTo Include="MyTestProject">
<Projects>
MyProject1;
MyProject2;
</Projects>
<KeyFile>$(MyKeyFileReference)</KeyFile>
</InternalsVisibleTo>
<InternalsVisibleTo Include="SomeExternalAssembly">
<Projects>
MyProject1;
MyProject2;
</Projects>
<AssemblyFromPackage>SomeExternalAssembly.dll</AssemblyFromPackage>
</InternalsVisibleTo>
<InternalsVisibleTo Include="SomeOtherExternalAssemblyThatDoesNotExistOnDisk">
<Projects>
MyProject1;
MyProject2;
</Projects>
<PublicKey>$(TheFullPublicKeyForTheExternalAssemblyThatDoesNotExistOnDisk)</PublicKey>
</InternalsVisibleTo>
-->
</ItemGroup>
<!--
Define additional scripts that need to be executed prior to the start of the Visual Studio clean process and the
start of the Visual Studio build process.
Scripts are defined by providing the path to the MsBuild script that should be executed,
e.g. 'c:\stuff\MyCoolScript.msbuild'.
Each script has the following properties passed to it:
$(SharedPropertyFile) - The full path to the settings.props file (i.e. this file).
$(Configuration) - The configuratino for the compilation process.
$(Platform) - The platform for the compilation process.
$(ShouldDisplayDebugLog) - A flag indicating whether or not to display debug log information, usually at the start of the script execution.
$(NBuildKitVersion) - The full version of the nBuildKit library that is executing the build.
$(DirNBuildKitMsBuild) - The full path to the directory that contains the nBuildKit scripts.
$(DirNBuildKitMsBuildShared) - The full path to the directory that contains the shared nBuildkit scripts.
$(DirNBuildKitMsBuildExtensions) - The full path to the directory that contains the nBuildKit extension scripts.
$(DirNBuildKitMsBuildTemplates) - The full path to the directory that contains the nBuildKit templates.
Additionally any properties defined by the 'Properties' section are also pushed up.
-->
<ItemGroup>
<!--
<PreCleanScripts Include="">
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform)
</Properties>
</PreCleanScripts>
<PreCompilationScripts Include="">
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform)
</Properties>
</PreCompilationScripts>
-->
</ItemGroup>
<!--
**** UNIT TESTS ****
-->
<PropertyGroup>
<!--
The assembly name prefix for the assemblies containing the unit tests. Allows build templates,
e.g. '${CompanyName}.${ProductName}.Tests'.
-->
<!--<UnitTestAssemblyNamePrefix Condition=" '$(UnitTestAssemblyNamePrefix)' == '' " >Test.Unit</UnitTestAssemblyNamePrefix>-->
<!--
The full path to the location where the MsTest report file should be created. This path can include build templates,
e.g. $(DirBuildLogs)\${CompanyName}\${ProductName}\mytest.trx.
-->
<!--<FileReportMsTest Condition=" '$(FileReportMsTest)' == '' ">$(DirBuildLogs)\mstest.trx</FileReportMsTest>-->
<!--
The full path to the directory where the VsTest report files should be created. This path can include build templates,
e.g. $(DirBuildLogs)\${CompanyName}\${ProductName}.
-->
<!--<DirReportVsTest Condition=" '$(DirReportVsTest)' == '' ">$(DirBuildLogs)\vstest</DirReportVsTest>-->
<!--
The full path to the XML report file that is generated by OpenCover upon completion of the unit test execution.
Allows build templates, e.g. $(DirBuildLogs)\${CompanyName}\${ProductName}\opencover.xml.
-->
<!--<FileReportOpenCoverXml Condition=" '$(FileReportOpenCoverXml)' == '' ">$(DirBuildLogs)\opencover.xml</FileReportOpenCoverXml>-->
<!--
The full path to the CSV report file that is generated by OpenCover upon completion of the unit test execution.
Allows build templates. , e.g. $(DirBuildLogs)\${CompanyName}\${ProductName}\coverage.csv.
-->
<!--<FileReportOpenCoverCsv Condition=" '$(FileReportOpenCoverCsv)' == '' ">$(DirBuildLogs)\coverage.csv</FileReportOpenCoverCsv>-->
</PropertyGroup>
<ItemGroup>
<!--
The ItemGroup items that define which files contain the unit test cases. Paths can include build templates,
e.g. $(DirBuildBinPlatformConfig)\${VersionMajor}.0\**\test*.dll
-->
<!-- <UnitTestAssemblies Include="$(DirSrc)\**\bin\**\$(UnitTestAssemblyNamePrefix)*.dll" /> -->
</ItemGroup>
<ItemGroup>
<!--
The ItemGroup items that define the attributes that indicate code that should be ignored by OpenCover.
-->
<!--<OpenCoverIgnoreAttributes Include="System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute" />-->
<!--<OpenCoverIgnoreAttributes Include="System.Runtime.CompilerServices.CompilerGeneratedAttribute" />-->
</ItemGroup>
<ItemGroup>
<!--
The ItemGroup items that define the filters used by OpenCover.
NOTE: Use the hexadecimal value for * (%2A) to avoid MsBuild trying to make sense out of the text.
-->
<!--<OpenCoverFilters Include="+[$(ProductNamespace)]%2A" />-->
<!--<OpenCoverFilters Include="+[$(ProductNamespace).%2A]%2A" />-->
<!--<OpenCoverFilters Include="-[%2A$(UnitTestAssemblyNamePrefix)%2A]%2A" />-->
<!--<OpenCoverFilters Include="-[NUnit]%2A" />-->
<!--<OpenCoverFilters Include="-[NUnit.%2A]%2A" />-->
</ItemGroup>
<!--
**** BINARY ANALYSIS - MOMA ****
-->
<PropertyGroup>
<!--
The HTML report that is generated by MoMA. Allows build templates, e.g. $(DirReportMoma)\${ProductName}_moma.html.
-->
<!--<FileReportMoma Condition=" '$(FileReportMoma)' == '' ">$(DirReportMoma)\moma.html</FileReportMoma>-->
</PropertyGroup>
<ItemGroup>
<!--
The locations of the files that should be analyzed by MoMA (Mono Migration Analyzer).
-->
<!--
<MomaInputFiles Include="$(DirSrc)\**\bin\**\*.dll"
Exclude="$(DirSrc)\**\bin\**\Test.*.dll" />
<MomaInputFiles Include="$(DirSrc)\**\bin\**\*.exe"/>
-->
</ItemGroup>
<!--
**** BINARY ANALYSIS - FXCOP ****
-->
<PropertyGroup>
<!--
The full path to the FxCop project file.
-->
<!--<FileProjectFxCop Condition=" '$(FileProjectFxCop)' == '' ">UNDEFINED</FileProjectFxCop>-->
<!--
The full path to the FxCop output report. Allows build templates, e.g. $(DirBuildLogs)\${ProductName}_fxcop.xml.
-->
<!--<FileReportFxCop Condition=" '$(FileReportFxCop)' == '' ">$(DirBuildLogs)\fxcop.xml</FileReportFxCop>-->
<!--
The full path to the rules file that indicates which rules FxCop should use to analyse the binaries.
-->
<!--<FileFxCopRuleSet Condition=" '$(FileFxCopRuleSet)' == '' ">$(DirSrc)\codeanalysis.base.ruleset</FileFxCopRuleSet>-->
<!--
The full path to the XML file that contains the custom dictionary for FxCop.
-->
<!--<FxCopCustomDictionary Condition=" '$(FxCopCustomDictionary)' == '' ">$(DirWorkspace)\customdictionary.xml</FxCopCustomDictionary>-->
<!--
The culture that FxCop should use for the spelling rules.
-->
<!--<FxCopCulture Condition=" '$(FxCopCulture)' == '' ">$(CodeAnalysisCulture)</FxCopCulture>-->
<!--
A flag that indicates whether any fxcop analysis errors should be marked as errors or as warnings. If FxCop analysis
errors are marked as errors then any analysis error will stop the build.
-->
<!--<FxCopWarningsAsErrors Condition=" '$(FxCopWarningsAsErrors)' == '' ">false</FxCopWarningsAsErrors>-->
</PropertyGroup>
<ItemGroup>
<!--
The locations of the files that should be analyzed by FxCop.
-->
<!--
<FxCopFiles Include="$(DirSrc)\**\bin\**\*.dll"
Exclude="$(DirSrc)\**\bin\**\Test.*.dll">
<TargetFramework>4.5</TargetFramework>
</FxCopFiles>
<FxCopFiles Include="$(DirSrc)\**\bin\**\*.exe">
<TargetFramework>2.0</TargetFramework>
</FxCopFiles>
-->
</ItemGroup>
<ItemGroup>
<!--
The locations of the assemblies (not including the .NET framework assemblies) which FxCop should
use as reference assemblies.
-->
<!--
<FxCopReferenceFiles Include=""
Exclude="" />
-->
</ItemGroup>
<ItemGroup>
<!--
The directory locations that contain the assemblies (not including the .NET framework assemblies) which
FxCop should use as reference assemblies
-->
<!--
<FxCopReferenceDirectories Include=""
Exclude="" />
-->
</ItemGroup>
<!--
**** BUILD API DOCUMENATION - SANDCASTLE ****
-->
<PropertyGroup>
<!--
The full path to the template file that is used to provide the project information for sandcastle. Defaults to
the template file included with nBuildKit.
-->
<!--<FileTemplateSandcastle Condition=" '$(FileTemplateSandcastle)' == '' ">$(DirNBuildKitMsBuildTemplates)\sandcastle.shfbproj</FileTemplateSandcastle>-->
</PropertyGroup>
<!--
**** PACK - NUGET ****
-->
<PropertyGroup>
<!--
Defines how the version range for a dependency is generated in a NuGet package. Options are:
None - The version range of the dependency is simply the version, e.g. 1.2.3
Major - The version range of the dependency is from the current version up to, but not including, the next major version,
e.g [1.2.3, 2)
Minor - The version range of the dependency is from the current version up to, but not including, the next minor version,
e.g [1.2.3, 1.3)
Patch - The version range of the dependency is from the current version up to, but not including, the next patch version,
e.g [1.2.3, 1.2.4)
-->
<!-- <NuGetDependencyVersionRangeStrategy Condition=" '$(NuGetDependencyVersionRangeStrategy)' == '' ">Major</NuGetDependencyVersionRangeStrategy> -->
</PropertyGroup>
<!--
The item group defining the location and contents of the NuGet packages that are generated during the build.
The IncludedDependencies and the ExcludedDependencies are lists of packages.config files that
should be included (or excluded) in the list of dependencies. Each entry is separated by a semi-colon(;).
If there is a 'packages.config' file in the same directory as the nuspec file then it is assumed that
all references in the 'packages.config' file should be added as dependencies.
All file paths allow build templates, e.g. $(DirSrc)\${ProductName}\myproject.nuspec.
-->
<ItemGroup>
<NuGetPackageSpecs Include="$(DirTemplates)\nbuildkit.msbuild.nuspec">
<ShouldBuildSymbols>false</ShouldBuildSymbols>
</NuGetPackageSpecs>
<NuGetPackageSpecs Include="$(DirTemplates)\nbuildkit.msbuild.projects.csharp.nuspec">
<ShouldBuildSymbols>false</ShouldBuildSymbols>
</NuGetPackageSpecs>
<NuGetPackageSpecs Include="$(DirTemplates)\nbuildkit.msbuild.projects.vbnet.nuspec">
<ShouldBuildSymbols>false</ShouldBuildSymbols>
</NuGetPackageSpecs>
<NuGetPackageSpecs Include="$(DirTemplates)\nbuildkit.msbuild.projects.wix.nuspec">
<ShouldBuildSymbols>false</ShouldBuildSymbols>
</NuGetPackageSpecs>
<NuGetPackageSpecs Include="$(DirTemplates)\nbuildkit.tools.vscoveragetoreportgenerator.nuspec">
<ShouldBuildSymbols>true</ShouldBuildSymbols>
</NuGetPackageSpecs>
</ItemGroup>
<!--
The item group defining the (partial) names of the NuGet packages that only contain design time element and should
thus not be considered dependencies for the generated NuGet packages, even if they are included in the list
of dependencies that should be included.
-->
<ItemGroup>
<!--
<DesignTimeDependencies Include="nBuildKit" />
<DesignTimeDependencies Include="nUnit" />
-->
</ItemGroup>
<!--
**** PACK - ZIP ARCHIVE ****
-->
<!--
The item group defining the location and contents of the archive files that are generated during the build
The IncludedFiles and the ExcludedFiles are actually lists of packages.config files that
should be included (or excluded) in the list of dependencies. Each entry is separated by a semi-colon(;).
All file paths allow build templates, e.g. $(DirBuildDeploy)\myarchive-${VersionSemantic}.zip.
-->
<ItemGroup>
<ArchivePackageSpecs Include="$(DirTemplates)\samples.zipspec" />
</ItemGroup>
<!--
*************************************
* *
* SHARED TOOLS *
* *
*************************************
-->
<!-- Overrides for the tools paths -->
<PropertyGroup>
<!--
The full path to the Visual Studio installation directory
-->
<!-- <ToolsExternalVisualStudioDir Condition=" '$(ToolsExternalVisualStudioDir)' == '' AND Exists('C:\Program Files (x86)\Microsoft Visual Studio 14.0')">C:\Program Files (x86)\Microsoft Visual Studio 14.0</ToolsExternalVisualStudioDir>
<ToolsExternalVisualStudioDir Condition=" '$(ToolsExternalVisualStudioDir)' == '' AND Exists('C:\Program Files (x86)\Microsoft Visual Studio 12.0')">C:\Program Files (x86)\Microsoft Visual Studio 12.0</ToolsExternalVisualStudioDir>
<ToolsExternalVisualStudioDir Condition=" '$(ToolsExternalVisualStudioDir)' == '' AND Exists('C:\Program Files (x86)\Microsoft Visual Studio 11.0')">C:\Program Files (x86)\Microsoft Visual Studio 11.0</ToolsExternalVisualStudioDir> -->
<!--
The full path to the CCM command line executable. If not defined the packages directory is searched.
-->
<!-- <ToolsExternalCcmPath Condition=" '$(ToolsExternalCcmPath)' == '' ">UNDEFINED</ToolsExternalCcmPath> -->
<!--
The full path to the directory that contains the FxCop command line executable
-->
<!-- <ToolsExternalFxCopDir Condition=" '$(ToolsExternalFxCopDir)' == '' AND Exists('$(ToolsExternalVisualStudioDir)\Team Tools\Static Analysis Tools\FxCop')">$(ToolsExternalVisualStudioDir)\Team Tools\Static Analysis Tools\FxCop</ToolsExternalFxCopDir>
<ToolsExternalFxCopDir Condition=" '$(ToolsExternalFxCopDir)' == '' AND Exists('C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop')">C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop</ToolsExternalFxCopDir>
<ToolsExternalFxCopDir Condition=" '$(ToolsExternalFxCopDir)' == '' ">UNDEFINED</ToolsExternalFxCopDir> -->
<!--
The full path to the MoMA command line executable. If not defined the packages directory is searched.
-->
<!-- <ToolsExternalMomaPath Condition=" '$(ToolsExternalMomaPath)' == '' ">UNDEFINED</ToolsExternalMomaPath> -->
<!--
The full path to the MsTest command line executable.
-->
<!-- <ToolsExternalMsTestPath Condition=" '$(ToolsExternalMsTestPath)' == '' AND Exists('$(ToolsExternalVisualStudioDir)\Common7\IDE\MsTest.exe')">$(ToolsExternalVisualStudioDir)\Common7\IDE\MsTest.exe</ToolsExternalMsTestPath>
<ToolsExternalMsTestPath Condition=" '$(ToolsExternalMsTestPath)' == '' AND Exists('C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\MsTest.exe')">C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\MsTest.exe</ToolsExternalMsTestPath>
<ToolsExternalMsTestPath Condition=" '$(ToolsExternalMsTestPath)' == '' ">UNDEFINED</ToolsExternalMsTestPath> -->
<!--
The full path and version to the nUnit command line executable. If not defined the packages directory is searched.
-->
<!-- <ToolsExternalNUnitConsolePath Condition=" '$(ToolsExternalNUnitConsolePath)' == '' ">UNDEFINED</ToolsExternalNUnitConsolePath>
<ToolsExternalNUnitConsoleVersion Condition=" '$(ToolsExternalNUnitConsoleVersion)' == '' ">2.6.4</ToolsExternalNUnitConsoleVersion> -->
<!--
The full path and version to the OpenCover command line executable. If not defined the packages directory is searched.
-->
<!-- <ToolsExternalOpenCoverPath Condition=" '$(ToolsExternalOpenCoverPath)' == '' ">UNDEFINED</ToolsExternalOpenCoverPath>
<ToolsExternalOpenCoverVersion Condition=" '$(ToolsExternalOpenCoverVersion)' == '' ">4.6.519</ToolsExternalOpenCoverVersion>-->
<!--
The full path and version to the ReportGenerator command line executable. If not defined the packages directory is searched.
-->
<!-- <ToolsExternalReportGeneratorPath Condition=" '$(ToolsExternalReportGeneratorPath)' == '' ">UNDEFINED</ToolsExternalReportGeneratorPath>
<ToolsExternalReportGeneratorVersion Condition=" '$(ToolsExternalReportGeneratorVersion)' == '' ">2.4.4</ToolsExternalReportGeneratorVersion>-->
<!--
The full path to the sn.exe command line executable.
-->
<!-- <ToolsExternalSnPath Condition=" '$(ToolsExternalSnPath)' == '' ">UNDEFINED</ToolsExternalSnPath>-->
<!--
The full path to the SourceMonitor command line executable. If not defined the packages directory is searched.
-->
<!-- <ToolsExternalSourceMonitorPath Condition=" '$(ToolsExternalSourceMonitorPath)' == '' ">UNDEFINED</ToolsExternalSourceMonitorPath> -->
<!--
The full path to the VSCoverageToReportGenerator command line executable. If not defined the packages directory is searched.
-->
<!-- <ToolsExternalVSCoverageToReportGeneratorPath Condition=" '$(ToolsExternalVSCoverageToReportGeneratorPath)' == '' ">UNDEFINED</ToolsExternalVSCoverageToReportGeneratorPath> -->
<!--
The full path to the VsTest command line executable.
-->
<!-- <ToolsExternalVsTestPath Condition=" '$(ToolsExternalVsTestPath)' == '' AND Exists('$(ToolsExternalVisualStudioDir)\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe')">$(ToolsExternalVisualStudioDir)\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe</ToolsExternalVsTestPath>
<ToolsExternalVsTestPath Condition=" '$(ToolsExternalVsTestPath)' == '' ">UNDEFINED</ToolsExternalVsTestPath> -->
</PropertyGroup>
<!--
*****************************************
* *
* NBUILDKIT SPECIFIC SETTINGS *
* *
*****************************************
-->
<PropertyGroup>
<!-- Defines whether the current script file has been loaded / imported or not -->
<ExistsBuildSettings>true</ExistsBuildSettings>
</PropertyGroup>