This repository has been archived by the owner on Jan 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
log.txt
2791 lines (2751 loc) · 282 KB
/
log.txt
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
C:\Users\Aleksander\Documents\GitHub\SpotiFire>tools\nant\nant -debug
NAnt 0.92 (Build 0.92.4543.0; release; 09.06.2012)
Copyright (C) 2001-2012 Gerry Shaw
http://nant.sourceforge.net
[loadtasks] Scanning directory "C:\Users\Aleksander\Documents\GitHub\SpotiFire\extensions\common\neutral" for extension assemblies.
[loadtasks] Scanning assembly "NAnt.CompressionTasks" for extensions.
[loadtasks] Creating TaskBuilder for GUnzip
[loadtasks] Adding task 'gunzip' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.CompressionTasks.dll:NAnt.Compression.Tasks.GUnzip
[loadtasks] Creating TaskBuilder for TarTask
[loadtasks] Adding task 'tar' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.CompressionTasks.dll:NAnt.Compression.Tasks.TarTask
[loadtasks] Creating TaskBuilder for UnTarTask
[loadtasks] Adding task 'untar' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.CompressionTasks.dll:NAnt.Compression.Tasks.UnTarTask
[loadtasks] Creating TaskBuilder for UnZipTask
[loadtasks] Adding task 'unzip' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.CompressionTasks.dll:NAnt.Compression.Tasks.UnZipTask
[loadtasks] Creating TaskBuilder for ZipTask
[loadtasks] Adding task 'zip' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.CompressionTasks.dll:NAnt.Compression.Tasks.ZipTask
[loadtasks] Scanning assembly "NAnt.DotNetTasks" for extensions.
[loadtasks] Found method GetResourceCulture.
[loadtasks] Creating TaskBuilder for AssemblyInfoTask
[loadtasks] Adding task 'asminfo' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.AssemblyInfoTask
[loadtasks] Creating TaskBuilder for AssemblyLinkerTask
[loadtasks] Adding task 'al' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.AssemblyLinkerTask
[loadtasks] Creating TaskBuilder for CscTask
[loadtasks] Adding task 'csc' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.CscTask
[loadtasks] Creating TaskBuilder for DelaySignTask
[loadtasks] Adding task 'delay-sign' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.DelaySignTask
[loadtasks] Creating TaskBuilder for IlasmTask
[loadtasks] Adding task 'ilasm' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.IlasmTask
[loadtasks] Creating TaskBuilder for JscTask
[loadtasks] Adding task 'jsc' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.JscTask
[loadtasks] Creating TaskBuilder for LicenseTask
[loadtasks] Adding task 'license' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.LicenseTask
[loadtasks] Creating TaskBuilder for NDocTask
[loadtasks] Adding task 'ndoc' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.NDocTask
[loadtasks] Creating TaskBuilder for RegsvcsTask
[loadtasks] Adding task 'regsvcs' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.RegsvcsTask
[loadtasks] Creating TaskBuilder for ResGenTask
[loadtasks] Adding task 'resgen' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.ResGenTask
[loadtasks] Creating TaskBuilder for ScriptTask
[loadtasks] Adding task 'script' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.ScriptTask
[loadtasks] Creating TaskBuilder for VbcTask
[loadtasks] Adding task 'vbc' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.VbcTask
[loadtasks] Creating TaskBuilder for VjcTask
[loadtasks] Adding task 'vjc' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.DotNetTasks.dll:NAnt.DotNet.Tasks.VjcTask
[loadtasks] Scanning assembly "NAnt.NUnit1Tasks" for extensions.
[loadtasks] Creating TaskBuilder for NUnitTask
[loadtasks] Adding task 'nunit' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.NUnit1Tasks.dll:NAnt.NUnit1.Tasks.NUnitTask
[loadtasks] Scanning assembly "NAnt.NUnit2Tasks" for extensions.
[loadtasks] Creating TaskBuilder for NUnit2Task
[loadtasks] Adding task 'nunit2' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.NUnit2Tasks.dll:NAnt.NUnit2.Tasks.NUnit2Task
[loadtasks] Scanning assembly "NAnt.SourceControlTasks" for extensions.
[loadtasks] Creating TaskBuilder for ChangeLogTask
[loadtasks] Adding task 'cvs-changelog' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.SourceControlTasks.dll:NAnt.SourceControl.Tasks.ChangeLogTask
[loadtasks] Creating TaskBuilder for CheckoutTask
[loadtasks] Adding task 'cvs-checkout' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.SourceControlTasks.dll:NAnt.SourceControl.Tasks.CheckoutTask
[loadtasks] Creating TaskBuilder for CvsPass
[loadtasks] Adding task 'cvs-pass' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.SourceControlTasks.dll:NAnt.SourceControl.Tasks.CvsPass
[loadtasks] Creating TaskBuilder for CvsTask
[loadtasks] Adding task 'cvs' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.SourceControlTasks.dll:NAnt.SourceControl.Tasks.CvsTask
[loadtasks] Creating TaskBuilder for ExportTask
[loadtasks] Adding task 'cvs-export' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.SourceControlTasks.dll:NAnt.SourceControl.Tasks.ExportTask
[loadtasks] Creating TaskBuilder for RTagTask
[loadtasks] Adding task 'cvs-rtag' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.SourceControlTasks.dll:NAnt.SourceControl.Tasks.RTagTask
[loadtasks] Creating TaskBuilder for TagTask
[loadtasks] Adding task 'cvs-tag' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.SourceControlTasks.dll:NAnt.SourceControl.Tasks.TagTask
[loadtasks] Creating TaskBuilder for UpdateTask
[loadtasks] Adding task 'cvs-update' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.SourceControlTasks.dll:NAnt.SourceControl.Tasks.UpdateTask
[loadtasks] Scanning assembly "NAnt.VisualCppTasks" for extensions.
[loadtasks] Found method QuoteArgumentValue.
[loadtasks] Found method GetObjOutputFile.
[loadtasks] Found method QuoteArgumentValue.
[loadtasks] Found method ProcessTrailingBackslash.
[loadtasks] Found method DuplicateTrailingBackslash.
[loadtasks] Found method FixTrailingBackslash.
[loadtasks] Found method CleanTrailingBackslash.
[loadtasks] Found method QuoteArgumentValue.
[loadtasks] Creating TaskBuilder for ClTask
[loadtasks] Adding task 'cl' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.VisualCppTasks.dll:NAnt.VisualCpp.Tasks.ClTask
[loadtasks] Creating TaskBuilder for LibTask
[loadtasks] Adding task 'lib' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.VisualCppTasks.dll:NAnt.VisualCpp.Tasks.LibTask
[loadtasks] Creating TaskBuilder for LinkTask
[loadtasks] Adding task 'link' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.VisualCppTasks.dll:NAnt.VisualCpp.Tasks.LinkTask
[loadtasks] Creating TaskBuilder for McTask
[loadtasks] Adding task 'mc' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.VisualCppTasks.dll:NAnt.VisualCpp.Tasks.McTask
[loadtasks] Creating TaskBuilder for MidlTask
[loadtasks] Adding task 'midl' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.VisualCppTasks.dll:NAnt.VisualCpp.Tasks.MidlTask
[loadtasks] Creating TaskBuilder for RcTask
[loadtasks] Adding task 'rc' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.VisualCppTasks.dll:NAnt.VisualCpp.Tasks.RcTask
[loadtasks] Scanning assembly "NAnt.VSNetTasks" for extensions.
[loadtasks] Found method GetRelatedFiles.
[loadtasks] Found method op_Equality.
[loadtasks] Found method op_Inequality.
[loadtasks] Found method Parse.
[loadtasks] Found method IsEnterpriseTemplateProject.
[loadtasks] Found method LoadGuid.
[loadtasks] Found method IsSupported.
[loadtasks] Found method IsSupported.
[loadtasks] Found method GetProjectGuid.
[loadtasks] Found method IsSupported.
[loadtasks] Found method CreateCLArgumentMap.
[loadtasks] Found method CreateLinkerArgumentMap.
[loadtasks] Found method CreateMidlArgumentMap.
[loadtasks] Found method LoadGuid.
[loadtasks] Found method IsSupported.
[loadtasks] Found method GetFileContentsStatic.
[loadtasks] Creating TaskBuilder for SolutionTask
[loadtasks] Adding task 'solution' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.VSNetTasks.dll:NAnt.VSNet.Tasks.SolutionTask
[loadtasks] Scanning assembly "NAnt.Win32Tasks" for extensions.
[loadtasks] Found method ExtractTypeLibPath.
[loadtasks] Creating TaskBuilder for AxImpTask
[loadtasks] Adding task 'aximp' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Win32Tasks.dll:NAnt.Win32.Tasks.AxImpTask
[loadtasks] Creating TaskBuilder for LocateSdkTask
[loadtasks] Adding task 'locatesdk' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Win32Tasks.dll:NAnt.Win32.Tasks.LocateSdkTask
[loadtasks] Creating TaskBuilder for MonoRegistryTask
[loadtasks] Adding task 'monoregistry' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Win32Tasks.dll:NAnt.Win32.Tasks.MonoRegistryTask
[loadtasks] Creating TaskBuilder for ReadRegistryTask
[loadtasks] Adding task 'readregistry' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Win32Tasks.dll:NAnt.Win32.Tasks.ReadRegistryTask
[loadtasks] Creating TaskBuilder for RegAsmTask
[loadtasks] Adding task 'regasm' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Win32Tasks.dll:NAnt.Win32.Tasks.RegAsmTask
[loadtasks] Creating TaskBuilder for TlbExpTask
[loadtasks] Adding task 'tlbexp' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Win32Tasks.dll:NAnt.Win32.Tasks.TlbExpTask
[loadtasks] Creating TaskBuilder for TlbImpTask
[loadtasks] Adding task 'tlbimp' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Win32Tasks.dll:NAnt.Win32.Tasks.TlbImpTask
[loadtasks] Scanning assembly "Nant.XmlStripTasks" for extensions.
[loadtasks] Creating TaskBuilder for XmlStripTask
[loadtasks] Adding task 'xmlstrip' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\Nant.XmlStripTasks.dll:XmlStrip.XmlStripTask
[loadtasks] Creating TaskBuilder for XmlMergeTask
[loadtasks] Adding task 'xmlmerge' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\Nant.XmlStripTasks.dll:XmlStrip.XmlMergeTask
[loadtasks] Scanning assembly "NAnt.Core" for extensions.
[loadtasks] Found method InitializeBuildElement.
[loadtasks] Found method GetFullName.
[loadtasks] Found method GetName.
[loadtasks] Found method GetLocation.
[loadtasks] Found method GetCodeBase.
[loadtasks] Found method GetEscapedCodeBase.
[loadtasks] Found method GetFullName.
[loadtasks] Found method GetName.
[loadtasks] Found method GetVersion.
[loadtasks] Found method Parse.
[loadtasks] Found method ToString.
[loadtasks] Found method ToInt.
[loadtasks] Found method ToDouble.
[loadtasks] Found method ConvertToString.
[loadtasks] Found method ToDateTime.
[loadtasks] Found method ToBoolean.
[loadtasks] Found method Now.
[loadtasks] Found method GetYear.
[loadtasks] Found method GetMonth.
[loadtasks] Found method GetDay.
[loadtasks] Found method GetHour.
[loadtasks] Found method GetMinute.
[loadtasks] Found method GetSecond.
[loadtasks] Found method GetMillisecond.
[loadtasks] Found method GetTicks.
[loadtasks] Found method GetDayOfWeek.
[loadtasks] Found method GetDayOfYear.
[loadtasks] Found method GetDaysInMonth.
[loadtasks] Found method IsLeapYear.
[loadtasks] Found method Parse.
[loadtasks] Found method ToString.
[loadtasks] Found method ToString.
[loadtasks] Found method GetCurrentDirectory.
[loadtasks] Found method GetHostName.
[loadtasks] Found method Parse.
[loadtasks] Found method ToString.
[loadtasks] Found method GetFolderPath.
[loadtasks] Found method GetMachineName.
[loadtasks] Found method GetOperatingSystem.
[loadtasks] Found method GetUserName.
[loadtasks] Found method GetVariable.
[loadtasks] Found method VariableExists.
[loadtasks] Found method GetVersion.
[loadtasks] Found method NewLine.
[loadtasks] Found method GetCompanyName.
[loadtasks] Found method GetFileVersion.
[loadtasks] Found method GetProductName.
[loadtasks] Found method GetProductVersion.
[loadtasks] Found method Parse.
[loadtasks] Found method ToString.
[loadtasks] Found method Parse.
[loadtasks] Found method ToString.
[loadtasks] Found method Round.
[loadtasks] Found method Floor.
[loadtasks] Found method Ceiling.
[loadtasks] Found method Abs.
[loadtasks] Found method IsWin32.
[loadtasks] Found method IsWindows.
[loadtasks] Found method IsUnix.
[loadtasks] Found method GetPlatform.
[loadtasks] Found method GetVersion.
[loadtasks] Found method ToString.
[loadtasks] Found method Combine.
[loadtasks] Found method ChangeExtension.
[loadtasks] Found method GetDirectoryName.
[loadtasks] Found method GetExtension.
[loadtasks] Found method GetFileName.
[loadtasks] Found method GetFileNameWithoutExtension.
[loadtasks] Found method GetPathRoot.
[loadtasks] Found method GetTempFileName.
[loadtasks] Found method GetTempPath.
[loadtasks] Found method HasExtension.
[loadtasks] Found method IsPathRooted.
[loadtasks] Found method GetLength.
[loadtasks] Found method Substring.
[loadtasks] Found method StartsWith.
[loadtasks] Found method EndsWith.
[loadtasks] Found method ToLower.
[loadtasks] Found method ToUpper.
[loadtasks] Found method Replace.
[loadtasks] Found method Contains.
[loadtasks] Found method IndexOf.
[loadtasks] Found method LastIndexOf.
[loadtasks] Found method PadLeft.
[loadtasks] Found method PadRight.
[loadtasks] Found method Trim.
[loadtasks] Found method TrimStart.
[loadtasks] Found method TrimEnd.
[loadtasks] Found method GetTotalDays.
[loadtasks] Found method GetTotalHours.
[loadtasks] Found method GetTotalMinutes.
[loadtasks] Found method GetTotalSeconds.
[loadtasks] Found method GetTotalMilliseconds.
[loadtasks] Found method GetDays.
[loadtasks] Found method GetHours.
[loadtasks] Found method GetMinutes.
[loadtasks] Found method GetSeconds.
[loadtasks] Found method GetMilliseconds.
[loadtasks] Found method GetTicks.
[loadtasks] Found method FromDays.
[loadtasks] Found method FromHours.
[loadtasks] Found method FromMinutes.
[loadtasks] Found method FromSeconds.
[loadtasks] Found method FromMilliseconds.
[loadtasks] Found method FromTicks.
[loadtasks] Found method Parse.
[loadtasks] Found method ToString.
[loadtasks] Found method GetMajor.
[loadtasks] Found method GetMinor.
[loadtasks] Found method GetBuild.
[loadtasks] Found method GetRevision.
[loadtasks] Found method Parse.
[loadtasks] Found method ToString.
[loadtasks] Found method WriteSchema.
[loadtasks] Found method FindMoreRecentLastWriteTime.
[loadtasks] Found method FindMoreRecentLastWriteTime.
[loadtasks] Found method TranslatePath.
[loadtasks] Found method CopyFile.
[loadtasks] Found method MoveFile.
[loadtasks] Found method ReadFile.
[loadtasks] Found method GetTempDirectory.
[loadtasks] Found method CombinePaths.
[loadtasks] Found method GetFullPath.
[loadtasks] Found method GetHomeDirectory.
[loadtasks] Found method ResolveFile.
[loadtasks] Found method GetTypeFromString.
[loadtasks] Found method RegisterSharedAssembly.
[loadtasks] Found method GetString.
[loadtasks] Found method GetString.
[loadtasks] Found method GetString.
[loadtasks] Found method EndsWith.
[loadtasks] Found method IsNullOrEmpty.
[loadtasks] Found method ConvertEmptyToNull.
[loadtasks] Found method ConvertNullToEmpty.
[loadtasks] Found method Join.
[loadtasks] Found method Clone.
[loadtasks] Found method Main.
[loadtasks] Found method ShowProjectHelp.
[loadtasks] Found method GetBuildFileName.
[loadtasks] Found method CreateLogger.
[loadtasks] Found method CreateListener.
[loadtasks] Found method Synchronized.
[loadtasks] Found method Synchronized.
[loadtasks] Found method IsVolumeCaseSensitive.
[loadtasks] Found method get_IsWindows.
[loadtasks] Found method get_TaskBuilders.
[loadtasks] Found method get_DataTypeBuilders.
[loadtasks] Found method get_FilterBuilders.
[loadtasks] Found method ScanAssembly.
[loadtasks] Found method ScanAssembly.
[loadtasks] Found method ScanDir.
[loadtasks] Found method CreateTask.
[loadtasks] Found method CreateFilter.
[loadtasks] Found method CreateDataType.
[loadtasks] Creating FilterBuilder for "ExpandProperties".
[loadtasks] Adding filter "expandproperties" from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Filters.ExpandProperties.
[loadtasks] Creating FilterBuilder for "ReplaceString".
[loadtasks] Adding filter "replacestring" from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Filters.ReplaceString.
[loadtasks] Creating FilterBuilder for "ReplaceTokens".
[loadtasks] Adding filter "replacetokens" from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Filters.ReplaceTokens.
[loadtasks] Creating FilterBuilder for "TabsToSpaces".
[loadtasks] Adding filter "tabstospaces" from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Filters.TabsToSpaces.
[loadtasks] Creating TaskBuilder for AttribTask
[loadtasks] Adding task 'attrib' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.AttribTask
[loadtasks] Creating TaskBuilder for AvailableTask
[loadtasks] Adding task 'available' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.AvailableTask
[loadtasks] Creating TaskBuilder for CallTask
[loadtasks] Adding task 'call' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.CallTask
[loadtasks] Creating TaskBuilder for ChooseTask
[loadtasks] Adding task 'choose' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.ChooseTask
[loadtasks] Creating TaskBuilder for CopyTask
[loadtasks] Adding task 'copy' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.CopyTask
[loadtasks] Creating TaskBuilder for DeleteTask
[loadtasks] Adding task 'delete' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.DeleteTask
[loadtasks] Creating TaskBuilder for DescriptionTask
[loadtasks] Adding task 'description' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.DescriptionTask
[loadtasks] Creating TaskBuilder for EchoTask
[loadtasks] Adding task 'echo' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.EchoTask
[loadtasks] Creating TaskBuilder for ExecTask
[loadtasks] Adding task 'exec' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.ExecTask
[loadtasks] Creating TaskBuilder for FailTask
[loadtasks] Adding task 'fail' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.FailTask
[loadtasks] Creating TaskBuilder for GetTask
[loadtasks] Adding task 'get' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.GetTask
[loadtasks] Creating TaskBuilder for IfTask
[loadtasks] Adding task 'if' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.IfTask
[loadtasks] Creating TaskBuilder for IfNotTask
[loadtasks] Adding task 'ifnot' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.IfNotTask
[loadtasks] Creating TaskBuilder for IncludeTask
[loadtasks] Adding task 'include' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.IncludeTask
[loadtasks] Creating TaskBuilder for LoadFileTask
[loadtasks] Adding task 'loadfile' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.LoadFileTask
[loadtasks] Creating TaskBuilder for LoadTasksTask
[loadtasks] Adding task 'loadtasks' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.LoadTasksTask
[loadtasks] Creating TaskBuilder for LoopTask
[loadtasks] Adding task 'foreach' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.LoopTask
[loadtasks] Creating TaskBuilder for MailTask
[loadtasks] Adding task 'mail' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.MailTask
[loadtasks] Creating TaskBuilder for MkDirTask
[loadtasks] Adding task 'mkdir' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.MkDirTask
[loadtasks] Creating TaskBuilder for MoveTask
[loadtasks] Adding task 'move' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.MoveTask
[loadtasks] Creating TaskBuilder for NAntSchemaTask
[loadtasks] Adding task 'nantschema' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.NAntSchemaTask
[loadtasks] Creating TaskBuilder for NAntTask
[loadtasks] Adding task 'nant' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.NAntTask
[loadtasks] Creating TaskBuilder for PropertyTask
[loadtasks] Adding task 'property' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.PropertyTask
[loadtasks] Creating TaskBuilder for RegexTask
[loadtasks] Adding task 'regex' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.RegexTask
[loadtasks] Creating TaskBuilder for SetEnvTask
[loadtasks] Adding task 'setenv' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.SetEnvTask
[loadtasks] Creating TaskBuilder for SleepTask
[loadtasks] Adding task 'sleep' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.SleepTask
[loadtasks] Creating TaskBuilder for StyleTask
[loadtasks] Adding task 'style' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.StyleTask
[loadtasks] Creating TaskBuilder for SysInfoTask
[loadtasks] Adding task 'sysinfo' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.SysInfoTask
[loadtasks] Creating TaskBuilder for TouchTask
[loadtasks] Adding task 'touch' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.TouchTask
[loadtasks] Creating TaskBuilder for TryCatchTask
[loadtasks] Adding task 'trycatch' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.TryCatchTask
[loadtasks] Creating TaskBuilder for TStampTask
[loadtasks] Adding task 'tstamp' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.TStampTask
[loadtasks] Creating TaskBuilder for UpToDateTask
[loadtasks] Adding task 'uptodate' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.UpToDateTask
[loadtasks] Creating TaskBuilder for XmlPeekTask
[loadtasks] Adding task 'xmlpeek' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.XmlPeekTask
[loadtasks] Creating TaskBuilder for XmlPokeTask
[loadtasks] Adding task 'xmlpoke' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.Core.dll:NAnt.Core.Tasks.XmlPokeTask
[loadtasks] Scanning assembly "NAnt.MSNetTasks" for extensions.
[loadtasks] Creating TaskBuilder for IldasmTask
[loadtasks] Adding task 'ildasm' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.MSNetTasks.dll:NAnt.MSNet.Tasks.IldasmTask
[loadtasks] Creating TaskBuilder for ServiceControllerTask
[loadtasks] Adding task 'servicecontroller' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant\NAnt.MSNetTasks.dll:NAnt.MSNet.Tasks.ServiceControllerTask
[loadtasks] Scanning assembly "NAnt.MSBuild" for extensions.
Buildfile: file:///C:/Users/Aleksander/Documents/GitHub/SpotiFire/SpotiFire.build
Target framework: Microsoft .NET Framework 4.5
Base Directory: C:\Users\Aleksander\Documents\GitHub\SpotiFire.
Target(s) specified: build-all
[loadtasks] Scanning assembly "NAnt.Contrib.Tasks" for extensions.
[loadtasks] Found method IsInstalled.
[loadtasks] Found method IsInstalled.
[loadtasks] Found method IsRunning.
[loadtasks] Found method IsStopped.
[loadtasks] Found method IsPaused.
[loadtasks] Found method GetStatus.
[loadtasks] Found method GetDisplayName.
[loadtasks] Found method GetServiceName.
[loadtasks] Found method GetUserName.
[loadtasks] Found method GetClient.
[loadtasks] Found method SetVariable.
[loadtasks] Found method GetChangelistNumber.
[loadtasks] Found method GetChangelistNumber.
[loadtasks] Found method CreateLabel.
[loadtasks] Found method CreateClient.
[loadtasks] Found method GetP4Info.
[loadtasks] Found method getProcessOutput.
[loadtasks] Found method RunProcess.
[loadtasks] Found method RunProcess.
[loadtasks] Found method FormatMessage.
[loadtasks] Found method CopyFile.
[loadtasks] Found method MoveFile.
[loadtasks] Found method GetRelativePath.
[loadtasks] Creating TaskBuilder for Deploy
[loadtasks] Adding task 'btsdeploy' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Deploy
[loadtasks] Creating TaskBuilder for Export
[loadtasks] Adding task 'btsexport' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Export
[loadtasks] Creating TaskBuilder for Host
[loadtasks] Adding task 'btshost' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Host
[loadtasks] Creating TaskBuilder for Import
[loadtasks] Adding task 'btsimport' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Import
[loadtasks] Creating TaskBuilder for Orchestration
[loadtasks] Adding task 'btsorchestration' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Orchestration
[loadtasks] Creating TaskBuilder for ReceiveLocation
[loadtasks] Adding task 'btsreceivelocation' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.ReceiveLocation
[loadtasks] Creating TaskBuilder for Reset
[loadtasks] Adding task 'btsreset' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Reset
[loadtasks] Creating TaskBuilder for SendPort
[loadtasks] Adding task 'btssendport' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.SendPort
[loadtasks] Creating TaskBuilder for Unbind
[loadtasks] Adding task 'btsunbind' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Unbind
[loadtasks] Creating TaskBuilder for Undeploy
[loadtasks] Adding task 'btsundeploy' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Undeploy
[loadtasks] Creating TaskBuilder for ClearCaseCatCs
[loadtasks] Adding task 'cccatcs' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseCatCs
[loadtasks] Creating TaskBuilder for ClearCaseCheckIn
[loadtasks] Adding task 'cccheckin' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn
[loadtasks] Creating TaskBuilder for ClearCaseCheckOut
[loadtasks] Adding task 'cccheckout' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut
[loadtasks] Creating TaskBuilder for ClearCaseLock
[loadtasks] Adding task 'cclock' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock
[loadtasks] Creating TaskBuilder for ClearCaseMkElem
[loadtasks] Adding task 'ccmkelem' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem
[loadtasks] Creating TaskBuilder for ClearCaseMkLabel
[loadtasks] Adding task 'ccmklabel' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkLabel
[loadtasks] Creating TaskBuilder for ClearCaseMkLbType
[loadtasks] Adding task 'ccmklbtype' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkLbType
[loadtasks] Creating TaskBuilder for ClearCaseRmType
[loadtasks] Adding task 'ccrmtype' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseRmType
[loadtasks] Creating TaskBuilder for ClearCaseUnCheckOut
[loadtasks] Adding task 'ccuncheckout' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseUnCheckOut
[loadtasks] Creating TaskBuilder for ClearCaseUnLock
[loadtasks] Adding task 'ccunlock' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseUnLock
[loadtasks] Creating TaskBuilder for ClearCaseUpdate
[loadtasks] Adding task 'ccupdate' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseUpdate
[loadtasks] Creating TaskBuilder for GrepTask
[loadtasks] Adding task 'grep' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Grep.GrepTask
[loadtasks] Creating TaskBuilder for CheckpointTask
[loadtasks] Adding task 'mkscheckpoint' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Mks.CheckpointTask
[loadtasks] Creating TaskBuilder for GetTask
[loadtasks] Adding task 'mksget' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Mks.GetTask
[loadtasks] Creating TaskBuilder for ChangesTask
[loadtasks] Adding task 'mkschanges' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Mks.ChangesTask
[loadtasks] Creating TaskBuilder for MsiTask
[loadtasks] Adding task 'msi' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Msi.MsiTask
[loadtasks] Creating TaskBuilder for MsmTask
[loadtasks] Adding task 'msm' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Msi.MsmTask
[loadtasks] Creating TaskBuilder for NUnit2ReportTask
[loadtasks] Adding task 'nunit2report' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.NUnit2Report.NUnit2ReportTask
[loadtasks] Creating TaskBuilder for P4Add
[loadtasks] Adding task 'p4add' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Add
[loadtasks] Creating TaskBuilder for P4Change
[loadtasks] Adding task 'p4change' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Change
[loadtasks] Creating TaskBuilder for P4Client
[loadtasks] Adding task 'p4client' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Client
[loadtasks] Creating TaskBuilder for P4Delete
[loadtasks] Adding task 'p4delete' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Delete
[loadtasks] Creating TaskBuilder for P4Edit
[loadtasks] Adding task 'p4edit' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Edit
[loadtasks] Creating TaskBuilder for P4Info
[loadtasks] Adding task 'p4info' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Info
[loadtasks] Creating TaskBuilder for P4Label
[loadtasks] Adding task 'p4label' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Label
[loadtasks] Creating TaskBuilder for P4Labelsync
[loadtasks] Adding task 'p4labelsync' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Labelsync
[loadtasks] Creating TaskBuilder for P4Print
[loadtasks] Adding task 'p4print' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Print
[loadtasks] Creating TaskBuilder for P4Reopen
[loadtasks] Adding task 'p4reopen' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Reopen
[loadtasks] Creating TaskBuilder for P4Revert
[loadtasks] Adding task 'p4revert' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Revert
[loadtasks] Creating TaskBuilder for P4Set
[loadtasks] Adding task 'p4set' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Set
[loadtasks] Creating TaskBuilder for P4Submit
[loadtasks] Adding task 'p4submit' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Submit
[loadtasks] Creating TaskBuilder for P4Sync
[loadtasks] Adding task 'p4sync' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Sync
[loadtasks] Creating TaskBuilder for PVCSAddFilesTask
[loadtasks] Adding task 'pvcsaddfiles' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSAddFilesTask
[loadtasks] Creating TaskBuilder for PVCSAddUserTask
[loadtasks] Adding task 'pvcsadduser' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSAddUserTask
[loadtasks] Creating TaskBuilder for PVCSAssignGroupTask
[loadtasks] Adding task 'pvcsassigngroup' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSAssignGroupTask
[loadtasks] Creating TaskBuilder for PVCSChangeGroupTask
[loadtasks] Adding task 'pvcschangegroup' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSChangeGroupTask
[loadtasks] Creating TaskBuilder for PVCSCreateProjectTask
[loadtasks] Adding task 'pvcscreateproject' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSCreateProjectTask
[loadtasks] Creating TaskBuilder for PVCSDeleteGroupTask
[loadtasks] Adding task 'pvcsdeletegroup' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSDeleteGroupTask
[loadtasks] Creating TaskBuilder for PVCSDeleteLabelTask
[loadtasks] Adding task 'pvcsdeletelabel' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSDeleteLabelTask
[loadtasks] Creating TaskBuilder for PVCSDeleteTask
[loadtasks] Adding task 'pvcsdelete' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSDeleteTask
[loadtasks] Creating TaskBuilder for PVCSDeleteUsersTask
[loadtasks] Adding task 'pvcsdeleteusers' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSDeleteUsersTask
[loadtasks] Creating TaskBuilder for PVCSGetTask
[loadtasks] Adding task 'pvcsget' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSGetTask
[loadtasks] Creating TaskBuilder for PVCSLabelTask
[loadtasks] Adding task 'pvcslabel' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSLabelTask
[loadtasks] Creating TaskBuilder for PVCSLockTask
[loadtasks] Adding task 'pvcslock' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSLockTask
[loadtasks] Creating TaskBuilder for PVCSPromoteGroupTask
[loadtasks] Adding task 'pvcspromotegroup' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSPromoteGroupTask
[loadtasks] Creating TaskBuilder for PVCSPutTask
[loadtasks] Adding task 'pvcsput' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSPutTask
[loadtasks] Creating TaskBuilder for PVCSRenameLabelTask
[loadtasks] Adding task 'pvcsrenamelabel' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSRenameLabelTask
[loadtasks] Creating TaskBuilder for PVCSUnlockTask
[loadtasks] Adding task 'pvcsunlock' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSUnlockTask
[loadtasks] Creating TaskBuilder for AddTask
[loadtasks] Adding task 'vssadd' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.AddTask
[loadtasks] Creating TaskBuilder for CheckinTask
[loadtasks] Adding task 'vsscheckin' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.CheckinTask
[loadtasks] Creating TaskBuilder for CheckoutTask
[loadtasks] Adding task 'vsscheckout' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.CheckoutTask
[loadtasks] Creating TaskBuilder for DeleteTask
[loadtasks] Adding task 'vssdelete' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.DeleteTask
[loadtasks] Creating TaskBuilder for DiffTask
[loadtasks] Adding task 'vssdiff' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.DiffTask
[loadtasks] Creating TaskBuilder for GetTask
[loadtasks] Adding task 'vssget' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.GetTask
[loadtasks] Creating TaskBuilder for History
[loadtasks] Adding task 'vsshistory' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.History
[loadtasks] Creating TaskBuilder for LabelTask
[loadtasks] Adding task 'vsslabel' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.LabelTask
[loadtasks] Creating TaskBuilder for UndoCheckoutTask
[loadtasks] Adding task 'vssundocheckout' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.UndoCheckoutTask
[loadtasks] Creating TaskBuilder for StarTeamAutoLabel
[loadtasks] Adding task 'stautolabel' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.StarTeam.StarTeamAutoLabel
[loadtasks] Creating TaskBuilder for StarTeamCheckin
[loadtasks] Adding task 'stcheckin' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.StarTeam.StarTeamCheckin
[loadtasks] Creating TaskBuilder for StarTeamCheckout
[loadtasks] Adding task 'stcheckout' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.StarTeam.StarTeamCheckout
[loadtasks] Creating TaskBuilder for StarTeamLabel
[loadtasks] Adding task 'stlabel' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.StarTeam.StarTeamLabel
[loadtasks] Creating TaskBuilder for StarTeamList
[loadtasks] Adding task 'stlist' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.StarTeam.StarTeamList
[loadtasks] Creating TaskBuilder for SSCMBatch
[loadtasks] Adding task 'sscmbatch' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMBatch
[loadtasks] Creating TaskBuilder for SSCMBranch
[loadtasks] Adding task 'sscmbranch' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMBranch
[loadtasks] Creating TaskBuilder for SSCMCheckin
[loadtasks] Adding task 'sscmcheckin' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMCheckin
[loadtasks] Creating TaskBuilder for SSCMCheckout
[loadtasks] Adding task 'sscmcheckout' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMCheckout
[loadtasks] Creating TaskBuilder for SSCMFreeze
[loadtasks] Adding task 'sscmfreeze' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMFreeze
[loadtasks] Creating TaskBuilder for SSCMGet
[loadtasks] Adding task 'sscmget' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMGet
[loadtasks] Creating TaskBuilder for SSCMLabel
[loadtasks] Adding task 'sscmlabel' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMLabel
[loadtasks] Creating TaskBuilder for SSCMUnFreeze
[loadtasks] Adding task 'sscmunfreeze' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMUnFreeze
[loadtasks] Creating TaskBuilder for SvnCheckoutTask
[loadtasks] Adding task 'svn-checkout' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Svn.SvnCheckoutTask
[loadtasks] Creating TaskBuilder for SvnTask
[loadtasks] Adding task 'svn' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Svn.SvnTask
[loadtasks] Creating TaskBuilder for SvnUpdateTask
[loadtasks] Adding task 'svn-update' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Svn.SvnUpdateTask
[loadtasks] Creating TaskBuilder for ApplicationPool
[loadtasks] Adding task 'iisapppool' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Web.ApplicationPool
[loadtasks] Creating TaskBuilder for CreateVirtualDirectory
[loadtasks] Adding task 'mkiisdir' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Web.CreateVirtualDirectory
[loadtasks] Creating TaskBuilder for DeleteVirtualDirectory
[loadtasks] Adding task 'deliisdir' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Web.DeleteVirtualDirectory
[loadtasks] Creating TaskBuilder for VirtualDirectoryInfo
[loadtasks] Adding task 'iisdirinfo' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Web.VirtualDirectoryInfo
[loadtasks] Creating TaskBuilder for ADSIGetPropertyTask
[loadtasks] Adding task 'adsigetprop' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ADSIGetPropertyTask
[loadtasks] Creating TaskBuilder for ADSISetPropertyTask
[loadtasks] Adding task 'adsisetprop' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ADSISetPropertyTask
[loadtasks] Creating TaskBuilder for Astyle
[loadtasks] Adding task 'astyle' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Astyle
[loadtasks] Creating TaskBuilder for ChangeDirectory
[loadtasks] Adding task 'cd' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ChangeDirectory
[loadtasks] Creating TaskBuilder for ChecksumTask
[loadtasks] Adding task 'checksum' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ChecksumTask
[loadtasks] Creating TaskBuilder for CodeStatsTask
[loadtasks] Adding task 'codestats' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.CodeStatsTask
[loadtasks] Creating TaskBuilder for COMRegisterTask
[loadtasks] Adding task 'comregister' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.COMRegisterTask
[loadtasks] Creating TaskBuilder for ConcatTask
[loadtasks] Adding task 'concat' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ConcatTask
[loadtasks] Creating TaskBuilder for DependsTask
[loadtasks] Adding task 'depends' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.DependsTask
[loadtasks] Creating TaskBuilder for DicsoTask
[loadtasks] Adding task 'disco' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.DicsoTask
[loadtasks] Creating TaskBuilder for FxCopTask
[loadtasks] Adding task 'fxcop' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.FxCopTask
[loadtasks] Creating TaskBuilder for GacInstallTask
[loadtasks] Adding task 'gac-install' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.GacInstallTask
[loadtasks] Creating TaskBuilder for GacTask
[loadtasks] Adding task 'gac' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.GacTask
[loadtasks] Creating TaskBuilder for GacUninstallTask
[loadtasks] Adding task 'gac-uninstall' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.GacUninstallTask
[loadtasks] Creating TaskBuilder for HxCompTask
[loadtasks] Adding task 'hxcomp' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.HxCompTask
[loadtasks] Creating TaskBuilder for HxRegTask
[loadtasks] Adding task 'hxreg' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.HxRegTask
[loadtasks] Creating TaskBuilder for IniReadTask
[loadtasks] Adding task 'iniread' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.IniReadTask
[loadtasks] Creating TaskBuilder for IniWriteTask
[loadtasks] Adding task 'iniwrite' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.IniWriteTask
[loadtasks] Creating TaskBuilder for KillTask
[loadtasks] Adding task 'kill' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.KillTask
[loadtasks] Creating TaskBuilder for LoadPropertiesTask
[loadtasks] Adding task 'loadproperties' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.LoadPropertiesTask
[loadtasks] Creating TaskBuilder for MgmtClassGenTask
[loadtasks] Adding task 'mgmtclassgen' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.MgmtClassGenTask
[loadtasks] Creating TaskBuilder for MsbuildTask
[loadtasks] Adding task 'msbuild' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.MsbuildTask
[loadtasks] Creating TaskBuilder for NGenTask
[loadtasks] Adding task 'ngen' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.NGenTask
[loadtasks] Creating TaskBuilder for NUnitReportTask
[loadtasks] Adding task 'nunitreport' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.NUnitReportTask
[loadtasks] Creating TaskBuilder for RecordTask
[loadtasks] Adding task 'record' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.RecordTask
[loadtasks] Creating TaskBuilder for RegasmTask
[loadtasks] Creating TaskBuilder for ScpTask
[loadtasks] Adding task 'scp' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ScpTask
[loadtasks] Creating TaskBuilder for SlingshotTask
[loadtasks] Adding task 'slingshot' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SlingshotTask
[loadtasks] Creating TaskBuilder for SqlTask
[loadtasks] Adding task 'sql' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SqlTask
[loadtasks] Creating TaskBuilder for TypedCollectionTask
[loadtasks] Adding task 'typedcollection' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.TypedCollectionTask
[loadtasks] Creating TaskBuilder for ValidateXmlTask
[loadtasks] Adding task 'validatexml' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ValidateXmlTask
[loadtasks] Creating TaskBuilder for Vb6Task
[loadtasks] Adding task 'vb6' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Vb6Task
[loadtasks] Creating TaskBuilder for VersionTask
[loadtasks] Adding task 'version' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.VersionTask
[loadtasks] Creating TaskBuilder for WaitForExitTask
[loadtasks] Adding task 'waitforexit' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.WaitForExitTask
[loadtasks] Creating TaskBuilder for WsdlTask
[loadtasks] Adding task 'wsdl' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.WsdlTask
[loadtasks] Creating TaskBuilder for XsdTask
[loadtasks] Adding task 'xsd' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nantcontrib\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.XsdTask
[loadtasks] Scanning assembly "NAnt.NuGet.Tasks" for extensions.
[loadtasks] Found method GetTarget.
[loadtasks] Found method GetTarget.
[loadtasks] Found method op_Implicit.
[loadtasks] Found method op_Implicit.
[loadtasks] Creating TaskBuilder for NugetGetDependenciesTask
[loadtasks] Adding task 'nuget-get-dependencies' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant.nuget\NAnt.NuGet.Tasks.dll:NAnt.NuGet.Tasks.Tasks.NugetGetDependenciesTask
[loadtasks] Creating TaskBuilder for NugetGetFilesTask
[loadtasks] Adding task 'nuget-get-files' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant.nuget\NAnt.NuGet.Tasks.dll:NAnt.NuGet.Tasks.Tasks.NugetGetFilesTask
[loadtasks] Creating TaskBuilder for NugetPackTask
[loadtasks] Adding task 'nuget-pack' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant.nuget\NAnt.NuGet.Tasks.dll:NAnt.NuGet.Tasks.Tasks.NugetPackTask
[loadtasks] Creating TaskBuilder for NugetPublishTask
[loadtasks] Adding task 'nuget-publish' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant.nuget\NAnt.NuGet.Tasks.dll:NAnt.NuGet.Tasks.Tasks.NugetPublishTask
[loadtasks] Creating TaskBuilder for NugetUpdateTask
[loadtasks] Adding task 'nuget-update' from C:\Users\Aleksander\Documents\GitHub\SpotiFire\tools\nant.nuget\NAnt.NuGet.Tasks.dll:NAnt.NuGet.Tasks.Tasks.NugetUpdateTask
Build sequence for target `build-all' is init, build, build-extras, build-all
Complete build sequence is init, build, build-extras, build-all, post-build, debug, nuget-pack, post-debug, release, post-release, clean
init:
Build sequence for target `debug' is debug
Complete build sequence is debug, init, post-build, nuget-pack, post-debug, release, post-release, build, build-extras, build-all, clean
Build sequence for target `debug' is debug
Complete build sequence is debug, init, post-build, nuget-pack, post-debug, release, post-release, build, build-extras, build-all, clean
debug:
[version] Build number '0.1.32.16'.
build:
[nuget-get-dependencies] Found installed package NLog version 2.0.0.2000
[nuget-get-dependencies] Found 1 dependencies
[nuget-get-files] Repo: C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages, Count: 3
[nuget-get-files] Found package NLog with 16 file(s) - NuGet.OptimizedZipPackage
[nuget-get-files] - Found compatible file NLog.dll (lib\net40\NLog.dll) - C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll
[nuget-get-files] - Found compatible file NLog.xml (lib\net40\NLog.xml) - C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.xml
[nuget-get-files] Found 2 file(s) and 1 reference(s)
Adding a assemblyfileset reference with id 'all_refs'.
[mkdir] Creating directory 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\bin\SpotiFire_0.1.32.16-debug\SpotiFire'.
[mkdir] Creating directory 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Album.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmpEFC0.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Album.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Album.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmpEFC0.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Album.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Albumbrowse.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmpF462.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Albumbrowse.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Albumbrowse.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmpF462.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Albumbrowse.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Artist.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmpF8D6.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Artist.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Artist.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmpF8D6.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Artist.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Artistbrowse.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmpFD2B.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Artistbrowse.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Artistbrowse.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmpFD2B.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Artistbrowse.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Enums.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp160.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Enums.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Enums.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp160.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Enums.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\EventArgs.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp5B5.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/EventArgs.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\EventArgs.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp5B5.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] EventArgs.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Image.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp9FA.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Image.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Image.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp9FA.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Image.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Inbox.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmpE6E.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Inbox.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Inbox.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmpE6E.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Inbox.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Link.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp12F1.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Link.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Link.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp12F1.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Link.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Playlist.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp17C2.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Playlist.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Playlist.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp17C2.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Playlist.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Playlistcontainer.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp1C55.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Playlistcontainer.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Playlistcontainer.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp1C55.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Playlistcontainer.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Search.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp2117.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Search.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Search.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp2117.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Search.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Session.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp25AA.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Session.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Session.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp25AA.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Session.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Stdafx.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp2A9B.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Stdafx.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Stdafx.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp2A9B.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Stdafx.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Track.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp2EEF.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/Track.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\Track.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp2EEF.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] Track.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\User.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp3373.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/User.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.LibSpotify\User.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp3373.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] User.cpp
[cl] 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\tmp.obj' does not exist, recompiling.
[cl] Compiling 1 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'.
[cl] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp37E7.tmp.
[cl] /c
[cl] /clr /LN /doc"C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/tmp.xdc" /EHa /MP /GS /Zi /D _UNICODE /D UNICODE /D INTEGRATED
[cl] /FU "C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[cl] /Fd"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] /Fo"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire/"
[cl] "C:\Users\Aleksander\Documents\GitHub\SpotiFire/obj/SpotiFire_0.1.32.16-debug/SpotiFire/tmp.cpp"
[cl]
[cl] Starting 'cl (@"C:\Users\Aleksander\AppData\Local\Temp\tmp37E7.tmp" /nologo)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[cl] tmp.cpp
[asminfo] Output file 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\tmp-assembly-info.cs' does not exist, rebuilding.
[asminfo] Generated file 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\tmp-assembly-info.cs'.
[csc] Output file 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\SpotiFire.netmodule' does not exist, rebuilding.
[csc] Compiling 12 files to 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\SpotiFire.netmodule'.
[csc] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp3D16.tmp.
[csc] /fullpaths
[csc] "/doc:C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\managed.xml"
[csc] /nologo
[csc] "/target:module"
[csc] "/out:C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\SpotiFire.netmodule"
[csc] /nowarn:1684,1591
[csc] "/reference:C:\Users\Aleksander\Documents\GitHub\SpotiFire\packages\NLog.2.0.0.2000\lib\net40\NLog.dll"
[csc] "/addmodule:C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\tmp.obj"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\obj\Release\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\obj\Release\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\obj\Release\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\AwaitHelper.cs"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\LinkExtensions.cs"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\PlayQueue.cs"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\Spotify.cs"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\SpotifyLibExtensions.cs"
[csc] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\tmp-assembly-info.cs"
[csc]
[csc] Starting 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe (@"C:\Users\Aleksander\AppData\Local\Temp\tmp3D16.tmp")' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[csc] c:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\tmp.obj: warning CS3013: Added modules must be marked with the CLSCompliant attribute to match the assembly
[csc] c:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\tmp-assembly-info.cs(23,40): warning CS0618: 'System.Security.Permissions.SecurityAction.RequestMinimum' is obsolete: 'Assembly level declarative security is obsolete and is no longer enforced by the CLR by default. See http://go.microsoft.com/fwlink/?LinkID=155570 for more information.'
[csc] c:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\PlayQueue.cs(423,17): warning CS0168: The variable 'size' is declared but never used
[csc] c:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\PlayQueue.cs(423,23): warning CS0168: The variable 'length' is declared but never used
[csc] c:\Users\Aleksander\Documents\GitHub\SpotiFire\SpotiFire.SpotifyLib\PlayQueue.cs(543,19): warning CS0168: The variable 't' is declared but never used
[link] Output file 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\SpotiFire.dll' does not exist, relinking.
[link] Linking 19 files.
[link] Contents of C:\Users\Aleksander\AppData\Local\Temp\tmp3E3F.tmp.
[link] /OUT:"C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\SpotiFire.dll"
[link] /LTCG /FIXED:NO /CLRIMAGETYPE:IJW /NOENTRY /DLL /ignore:4248
[link] /nologo
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Album.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Albumbrowse.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Artist.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Artistbrowse.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Enums.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\EventArgs.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Image.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Inbox.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Link.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Playlist.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Playlistcontainer.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Search.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Session.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\SpotiFire.netmodule"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Stdafx.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\tmp.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\Track.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\User.obj"
[link] "C:\Users\Aleksander\Documents\GitHub\SpotiFire/libspotify.lib"
[link]
[link] Starting 'link (@"C:\Users\Aleksander\AppData\Local\Temp\tmp3E3F.tmp" /DEBUG)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire'
[link] Generating code
[link] Finished generating code
[exec] Starting 'xdcmake.exe (/nologo C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\*.xdc /assembly:SpotiFire.dll /out:SpotiFire.xml)' in 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire'
[xmlstrip] Attempting to load XML document in file 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\SpotiFire.xml'.
[xmlstrip] XML document in file 'C:\Users\Aleksander\Documents\GitHub\SpotiFire\obj\SpotiFire_0.1.32.16-debug\SpotiFire\SpotiFire.xml' loaded successfully.
[xmlstrip] Selecting nodes with XPath expression '/doc/members/member[not(contains(@name, 'SpotiFire'))]'.
[xmlstrip] Found '314' nodes matching XPath expression '/doc/members/member[not(contains(@name, 'SpotiFire'))]'.
[xmlstrip] Deleting nodes.
[xmlstrip] Deleting node '0'.
[xmlstrip] Deleting node '1'.
[xmlstrip] Deleting node '2'.
[xmlstrip] Deleting node '3'.
[xmlstrip] Deleting node '4'.
[xmlstrip] Deleting node '5'.
[xmlstrip] Deleting node '6'.
[xmlstrip] Deleting node '7'.
[xmlstrip] Deleting node '8'.
[xmlstrip] Deleting node '9'.
[xmlstrip] Deleting node '10'.
[xmlstrip] Deleting node '11'.
[xmlstrip] Deleting node '12'.
[xmlstrip] Deleting node '13'.
[xmlstrip] Deleting node '14'.
[xmlstrip] Deleting node '15'.
[xmlstrip] Deleting node '16'.
[xmlstrip] Deleting node '17'.
[xmlstrip] Deleting node '18'.
[xmlstrip] Deleting node '19'.
[xmlstrip] Deleting node '20'.
[xmlstrip] Deleting node '21'.
[xmlstrip] Deleting node '22'.
[xmlstrip] Deleting node '23'.
[xmlstrip] Deleting node '24'.
[xmlstrip] Deleting node '25'.
[xmlstrip] Deleting node '26'.
[xmlstrip] Deleting node '27'.
[xmlstrip] Deleting node '28'.
[xmlstrip] Deleting node '29'.
[xmlstrip] Deleting node '30'.
[xmlstrip] Deleting node '31'.
[xmlstrip] Deleting node '32'.
[xmlstrip] Deleting node '33'.
[xmlstrip] Deleting node '34'.
[xmlstrip] Deleting node '35'.
[xmlstrip] Deleting node '36'.
[xmlstrip] Deleting node '37'.
[xmlstrip] Deleting node '38'.
[xmlstrip] Deleting node '39'.
[xmlstrip] Deleting node '40'.
[xmlstrip] Deleting node '41'.
[xmlstrip] Deleting node '42'.
[xmlstrip] Deleting node '43'.
[xmlstrip] Deleting node '44'.
[xmlstrip] Deleting node '45'.
[xmlstrip] Deleting node '46'.