forked from ErpNetDocs/tech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.txt
1055 lines (1055 loc) · 328 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
{"message":"Completed Scope:BuildCommand.ExportResourceFiles in 26.0083 milliseconds.","source":"BuildCommand.ExportResourceFiles","date_time":"2020-09-21T11:39:37.6289041Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.1.1"}
{"message":"Completed Scope:BuildCommand.LoadPluginAssemblies in 0.0093 milliseconds.","source":"BuildCommand.LoadPluginAssemblies","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.2.1"}
{"message":"Calculating template hash...","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.3"}
{"message":"New template resource info added, name: 'common.js', hash: 'RfTp0mVjze8Rjs5z4IBTwQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.5"}
{"message":"New template resource info added, name: 'conceptual.extension.js', hash: 'O5nj12Slly0x6dpA9niRzQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.7"}
{"message":"New template resource info added, name: 'conceptual.html.primary.js', hash: 'oSE84IyYym+Y5HQz7KLptg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.9"}
{"message":"New template resource info added, name: 'conceptual.html.primary.tmpl', hash: 'pskz9UmaNMfsivxwroiv6Q=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.11"}
{"message":"New template resource info added, name: 'favicon.ico', hash: 'Zj+bsW+9Mtt+JLxMwC+8mg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.13"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.eot', hash: '9Hafm9t0Zr5lCII5wSBG0Q=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.15"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.svg', hash: 'iYiWiBR711ddYycWDWTnYA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.17"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.ttf', hash: '4Yu/YR8qLkOvwHGqL04VEg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.19"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.woff', hash: '+idyMn9V2BmDAf24vPyBWA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.21"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.woff2', hash: 'RIw0pW1pnCkRetxkxDr/6w=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.23"}
{"message":"New template resource info added, name: 'layout/_master.tmpl', hash: 'ef2C857v5Q5/MdVJbQ01ag=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.25"}
{"message":"New template resource info added, name: 'logo.svg', hash: 'A1k/f11plxhTlKy+YXcqoQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.27"}
{"message":"New template resource info added, name: 'ManagedReference.common.js', hash: 't9pLUU6jDyEUgYEdTaIesA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.29"}
{"message":"New template resource info added, name: 'ManagedReference.extension.js', hash: 'H2VgtKXPjKzKQIDsgqHUug=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.31"}
{"message":"New template resource info added, name: 'ManagedReference.html.primary.js', hash: 'RGtWEKN/XYjSWCvQHEnNFw=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.33"}
{"message":"New template resource info added, name: 'ManagedReference.html.primary.tmpl', hash: 'iG6CD8Q8W6wPp6ZaNhoU4A=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.35"}
{"message":"New template resource info added, name: 'partials/_affix.liquid', hash: 'a9gAku3KfoHOncnuFE8Byw=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.37"}
{"message":"New template resource info added, name: 'partials/_breadcrumb.liquid', hash: 'InV+FsvWrhlK7N7MdqUC+A=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.39"}
{"message":"New template resource info added, name: 'partials/_footer.liquid', hash: 'Bx51SCveXTF3w12OC22xrg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.41"}
{"message":"New template resource info added, name: 'partials/_head.liquid', hash: 'tqRwzbVxTuUax65tl0Hs3Q=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.43"}
{"message":"New template resource info added, name: 'partials/_logo.liquid', hash: 'gqHIuA9mVEKaaGutXTzqqg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.45"}
{"message":"New template resource info added, name: 'partials/_navbar.liquid', hash: '99J5j3CGzjrURAU6MUAKtg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.47"}
{"message":"New template resource info added, name: 'partials/_scripts.liquid', hash: 'wKIa3xcrkYeTuCpqrMMNBQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.49"}
{"message":"New template resource info added, name: 'partials/_toc.liquid', hash: 'UPIJGWUTvGdlie+af73FwQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.51"}
{"message":"New template resource info added, name: 'partials/affix.tmpl.partial', hash: 'fGvS/IV+h3Ava9gV5n1tqQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.53"}
{"message":"New template resource info added, name: 'partials/breadcrumb.tmpl.partial', hash: 'V4Y6qQcJmf+MxjqQRuEGvg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.55"}
{"message":"New template resource info added, name: 'partials/class.header.tmpl.partial', hash: 'esOQLZvN3zCiUbBoqN8Fdg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.57"}
{"message":"New template resource info added, name: 'partials/class.tmpl.partial', hash: 'ZYtQeoL3nU/L1Mg/4hjuPw=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.59"}
{"message":"New template resource info added, name: 'partials/classSubtitle.tmpl.partial', hash: 'H967odS6rCkHpPP97x0a4w=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.61"}
{"message":"New template resource info added, name: 'partials/customMREFContent.tmpl.partial', hash: 'uvGKW1UHs14T4MCS5J0OXQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.63"}
{"message":"New template resource info added, name: 'partials/dd-li.tmpl.partial', hash: 'kk63tvmyhioxAKRGCfqvHg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.65"}
{"message":"New template resource info added, name: 'partials/enum.tmpl.partial', hash: 'w9mJtXUtfF7aZqlCPW3GHw=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.67"}
{"message":"New template resource info added, name: 'partials/footer.tmpl.partial', hash: 'Sd/Tb9uMp0ewJQA94504NQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.69"}
{"message":"New template resource info added, name: 'partials/head.tmpl.partial', hash: 'wFKwouKz5s7IjIv2bAti3A=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.71"}
{"message":"New template resource info added, name: 'partials/li.tmpl.partial', hash: 'qPc+vLHMKdFhRcLwZ9ptOA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.73"}
{"message":"New template resource info added, name: 'partials/logo.tmpl.partial', hash: 'NhNYgx0k48wshh5ICcv4Tw=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6699023Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.75"}
{"message":"New template resource info added, name: 'partials/namespace.tmpl.partial', hash: 'JkzmzRlaS6QlYhfybdSsUg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.77"}
{"message":"New template resource info added, name: 'partials/namespaceSubtitle.tmpl.partial', hash: '69TCqCNgQ2r5Jhy9z7zsZg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.79"}
{"message":"New template resource info added, name: 'partials/navbar.tmpl.partial', hash: 'IcTuAk5T6UUs7Fmx/FkKiQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.81"}
{"message":"New template resource info added, name: 'partials/rest.child.tmpl.partial', hash: 'UTM5BUkMwMSoqQoKqf9GCw=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.83"}
{"message":"New template resource info added, name: 'partials/rest.tmpl.partial', hash: 'aCdWQ9XAEvbHflgV7AwMEA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.85"}
{"message":"New template resource info added, name: 'partials/scripts.tmpl.partial', hash: 'NSqnUOeo2Z//asendoI8KA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.87"}
{"message":"New template resource info added, name: 'partials/searchResults.tmpl.partial', hash: 'mrefuYILH1k3a+GM98QKKQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.89"}
{"message":"New template resource info added, name: 'partials/title.tmpl.partial', hash: '6Jl0VXBqchGZMDyeZ40uow=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.91"}
{"message":"New template resource info added, name: 'partials/toc.tmpl.partial', hash: 'YEmahw2phxEPncXK6MfEdg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.93"}
{"message":"New template resource info added, name: 'partials/uref/class.header.tmpl.partial', hash: '+iyDBuLdn1W5N8pXE63FXA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.95"}
{"message":"New template resource info added, name: 'partials/uref/class.tmpl.partial', hash: 'sFxrgXutWBOa3/w3VC5kyQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.97"}
{"message":"New template resource info added, name: 'partials/uref/enum.tmpl.partial', hash: '7tB3xYThFiIHQj0Lpwm08A=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.99"}
{"message":"New template resource info added, name: 'partials/uref/inheritance.tmpl.partial', hash: 'kseJ5rWiFm3VHT+YsR/p1A=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.101"}
{"message":"New template resource info added, name: 'partials/uref/namespace.tmpl.partial', hash: '83hTuarhxksTHAWPVt/q4Q=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.103"}
{"message":"New template resource info added, name: 'partials/uref/parameters.tmpl.partial', hash: 'voCPngXb7yFCKUETMv+J3g=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.105"}
{"message":"New template resource info added, name: 'RestApi.common.js', hash: 'yYCZhXpgNQCAee5YD40jVg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.107"}
{"message":"New template resource info added, name: 'RestApi.extension.js', hash: 'F+keGApROKUywYjUHh3c/A=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6709045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.109"}
{"message":"New template resource info added, name: 'RestApi.html.primary.js', hash: 'wdeGWbl1nslCJtr9TfZwQw=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6719025Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.111"}
{"message":"New template resource info added, name: 'RestApi.html.primary.tmpl', hash: '041dvUx7PfHZvopAyZmELg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6719025Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.113"}
{"message":"New template resource info added, name: 'search-stopwords.json', hash: 'o2D8fALbHw66h/ZFgeFArQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6719025Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.115"}
{"message":"New template resource info added, name: 'styles/docfx.css', hash: '4OnVA8wVWjmIlZWAOsTJBg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6719025Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.117"}
{"message":"New template resource info added, name: 'styles/docfx.js', hash: 'd1DLfsIFpRMpimazqNDKZA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6719025Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.119"}
{"message":"New template resource info added, name: 'styles/docfx.vendor.css', hash: 'Z8oQh5bahcfO2pcmLr7mug=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6729035Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.121"}
{"message":"New template resource info added, name: 'styles/docfx.vendor.js', hash: 'J3YyueOXLC5fd42mU7gqUQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6789006Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.123"}
{"message":"New template resource info added, name: 'styles/lunr.js', hash: '2k83A84Ag/gFDQDpAKrHsA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.125"}
{"message":"New template resource info added, name: 'styles/lunr.min.js', hash: 'd0y5G2qqW0i3wXUig6kgiA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.127"}
{"message":"New template resource info added, name: 'styles/main.css', hash: '1B2M2Y8AsgTpgAmY7PhCfg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.129"}
{"message":"New template resource info added, name: 'styles/main.js', hash: '15t2k8P+3vbScB+YvWM5Xg=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.131"}
{"message":"New template resource info added, name: 'styles/search-worker.js', hash: 'Xi8vLs85qxGX+h8zu3Pc6Q=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.133"}
{"message":"New template resource info added, name: 'toc.extension.js', hash: 'hBeh5rc09pDO2LfrQCg6VQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.135"}
{"message":"New template resource info added, name: 'toc.html.js', hash: '/QAnlSpPnyypF7HPjpvVog=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.137"}
{"message":"New template resource info added, name: 'toc.html.tmpl', hash: 'gBiU4A9CbZEgljMNVAQTbQ=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.139"}
{"message":"New template resource info added, name: 'token.json', hash: 'HXgYcCrW0Z9A2k4mYxgUrA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.141"}
{"message":"New template resource info added, name: 'UniversalReference.common.js', hash: 'LQXPk/t9ULWBKDrrNrB6BA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.143"}
{"message":"New template resource info added, name: 'UniversalReference.extension.js', hash: '9uqiQknaQygvJXmR2Sa5XA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.145"}
{"message":"New template resource info added, name: 'UniversalReference.html.primary.js', hash: 'nI37V9d5Fump98ltOZO/Ow=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.147"}
{"message":"New template resource info added, name: 'UniversalReference.html.primary.tmpl', hash: 'tAAZZy4MVr+324aDUELk3g=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6799015Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.149"}
{"message":"Template hash is '/2c/uUr8fi1jrpsfkCUl9A=='","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6809017Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.150"}
{"message":"Loading plug-in...","source":"BuildCommand","date_time":"2020-09-21T11:39:37.6839028Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.151"}
{"message":"Completed Scope:BuildCommand.ImportPlugins in 689.2654 milliseconds.","source":"BuildCommand.ImportPlugins","date_time":"2020-09-21T11:39:38.3735084Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.152.1"}
{"message":"6 plug-in(s) loaded.","source":"BuildCommand","date_time":"2020-09-21T11:39:38.3735084Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.153"}
{"message":"\tConceptualDocumentProcessor with build steps (BuildConceptualDocument, CountWord, ValidateConceptualDocumentMetadata)","source":"BuildCommand","date_time":"2020-09-21T11:39:38.3745142Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.154"}
{"message":"\tManagedReferenceDocumentProcessor with build steps (BuildManagedReferenceDocument, ValidateManagedReferenceDocumentMetadata, ApplyOverwriteDocumentForMref, FillReferenceInformation)","source":"BuildCommand","date_time":"2020-09-21T11:39:38.3755118Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.155"}
{"message":"\tResourceDocumentProcessor with build steps (ValidateResourceMetadata)","source":"BuildCommand","date_time":"2020-09-21T11:39:38.3755118Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.156"}
{"message":"\tRestApiDocumentProcessor with build steps (BuildRestApiDocument, ValidateRestApiDocumentMetadata, ApplyOverwriteDocumentForRestApi)","source":"BuildCommand","date_time":"2020-09-21T11:39:38.3755118Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.157"}
{"message":"\tTocDocumentProcessor with build steps (BuildTocDocument)","source":"BuildCommand","date_time":"2020-09-21T11:39:38.3755118Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.158"}
{"message":"\tUniversalReferenceDocumentProcessor with build steps (BuildUniversalReferenceDocument, ApplyOverwriteDocumentForUref, FillReferenceInformation)","source":"BuildCommand","date_time":"2020-09-21T11:39:38.3765079Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.159"}
{"message":"Post processor ExtractSearchIndex loaded.","source":"BuildCommand","date_time":"2020-09-21T11:39:38.3795148Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.160"}
{"message":"No files are found with glob pattern images/**, excluding <none>, under directory \"C:\\Users\\ivanarj\\source\\repos\\tech\"","source":"BuildCommand","date_time":"2020-09-21T11:39:38.4535087Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.161"}
{"message":"Completed GenerateParameters in 76.7174 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T11:39:38.4625125Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.162"}
{"message":"Markdown engine is markdig","source":"BuildCommand","date_time":"2020-09-21T11:39:38.4745535Z","message_severity":"info","code":"MarkdownEngineName","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.163"}
{"message":"Completed GetMarkdownServiceProvider in 1.6996 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T11:39:38.4755134Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.164"}
{"message":"Cannot load build info: 'build.info' not found under 'C:\\Users\\ivanarj\\source\\repos\\tech\\obj\\.cache\\build'","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5773123Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.166"}
{"message":"Completed LoadLastBuildInfo in 4.6267 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5773123Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.167"}
{"message":"Calculating plugin hash...","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5793167Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.168"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ConceptualDocuments, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5793167Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.169"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.Engine, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5803124Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.170"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ManagedReference, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5803124Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.171"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ResourceFiles, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5803124Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.172"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.RestApi, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5803124Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.173"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.SchemaDriven, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5803124Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.174"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.TableOfContents, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5803124Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.175"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.UniversalReference, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5803124Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.176"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.MarkdigEngine, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5803124Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.177"}
{"message":"Plugin hash is 'OJXcQLf3SwGg0oJJ4lixpA=='","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5803124Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.178"}
{"message":"Cannot support incremental post processors, because following post processors don't implement ISupportIncrementalPostProcessor interface: ExtractSearchIndex.","source":"BuildCommand","date_time":"2020-09-21T11:39:38.585677Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.179"}
{"message":"Cannot support incremental post processing, the reason is: should not trace intermediate info.","source":"BuildCommand","date_time":"2020-09-21T11:39:38.5886759Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.180"}
{"message":"Completed Scope:BuildCommand.Prepare metadata in post processor html in 1.4584 milliseconds.","source":"BuildCommand.Prepare metadata in post processor html","date_time":"2020-09-21T11:39:38.5946769Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.181.1"}
{"message":"Completed Scope:BuildCommand.Prepare metadata in post processor ExtractSearchIndex in 0.21 milliseconds.","source":"BuildCommand.Prepare metadata in post processor ExtractSearchIndex","date_time":"2020-09-21T11:39:38.5946769Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.182.1"}
{"message":"Max parallelism is 20.","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T11:39:38.6556761Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateMarkdownService in 0.588 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateMarkdownService","date_time":"2020-09-21T11:39:39.0526801Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.29.1.1"}
{"message":"Config content: {\"ExternalReferencePackages\":[],\"XRefMaps\":[\"embedded:docfx/langwordMapping.yml\"],\"XRefServiceUrls\":[],\"Metadata\":{\"_enableSearch\":true,\"_docfxVersion\":\"2.56.2.0\",\"_appTitle\":\"ERP.net Developer Docs\"},\"MarkdownEngineName\":\"markdig\",\"RootTocPath\":null,\"CustomLinkResolver\":null,\"FALName\":null,\"DisableGitFeatures\":false,\"OverwriteFragmentsRedirectionRules\":[]}|","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ComputeConfigHash","date_time":"2020-09-21T11:39:39.0906771Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.29.2.1.1"}
{"message":"FileMetadata content: {\"dict\":{}}","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ComputeFileMetadataHash","date_time":"2020-09-21T11:39:39.0946774Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.29.2.2.1"}
{"message":"Building the default group fully.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T11:39:39.1016772Z","message_severity":"verbose","code":"IsFullBuild","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.29.2.3"}
{"message":"The reason of full building for the default group is: Cannot build incrementally because last build info is missing.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T11:39:39.1016772Z","message_severity":"verbose","code":"NoAvailableBuildCache","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.29.2.4"}
{"message":"Cannot build incrementally in link phase because template changed (new: /2c/uUr8fi1jrpsfkCUl9A== vs. old: null). Will apply templates and post process all files","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T11:39:39.1016772Z","message_severity":"verbose","code":"TemplateChanged","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.29.2.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.InitFileAttributes in 14.3799 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.InitFileAttributes","date_time":"2020-09-21T11:39:39.1246775Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.29.2.6.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext in 72.0603 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T11:39:39.1266771Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.29.2.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare in 79.1801 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare","date_time":"2020-09-21T11:39:39.1316772Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.29.3"}
{"message":"Processor ConceptualDocumentProcessor (compile phase), total file count: 2, skipped file count: 0.","source":"BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor.ReportModelLoadInfo","date_time":"2020-09-21T11:39:39.5685794Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.30.1.3.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor in 332.6721 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor","date_time":"2020-09-21T11:39:39.5685794Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.30.1.4"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Load in 437.6711 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Load","date_time":"2020-09-21T11:39:39.5685794Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.30.2"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T11:39:39.5736045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.1.1"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T11:39:39.5736045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.1.3"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T11:39:39.5736045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.1.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor in 1.9504 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T11:39:39.5736045Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.1.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ReportDependencyFromLastBuild in 0.0026 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ReportDependencyFromLastBuild","date_time":"2020-09-21T11:39:39.587576Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.LoadPluginContextInfo in 0.9923 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.LoadPluginContextInfo","date_time":"2020-09-21T11:39:39.5895809Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.3.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterUnloadedTocRestructionsFromLastBuild in 0.0023 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterUnloadedTocRestructionsFromLastBuild","date_time":"2020-09-21T11:39:39.5905835Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.4.1"}
{"message":"Building 2 file(s) in ConceptualDocumentProcessor(BuildConceptualDocument=>CountWord=>ValidateConceptualDocumentMetadata)...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:39:39.5955758Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.5.1"}
{"message":"Processor ConceptualDocumentProcessor: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:39:39.5955758Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.5.2"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T11:39:39.5975777Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.5.3.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.BuildConceptualDocument in 0.0635 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.BuildConceptualDocument","date_time":"2020-09-21T11:39:39.5975777Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.5.3.2.1"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T11:39:39.5975777Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.5.3.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.CountWord in 0.0037 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.CountWord","date_time":"2020-09-21T11:39:39.5975777Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.5.3.4.1"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T11:39:39.5975777Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.5.3.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.ValidateConceptualDocumentMetadata in 0.0039 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.ValidateConceptualDocumentMetadata","date_time":"2020-09-21T11:39:39.5975777Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.5.3.6.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild in 1.459 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T11:39:39.5975777Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.5.3.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor in 1.7935 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:39:39.5975777Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.5.4"}
{"message":"Processor ConceptualDocumentProcessor: Building...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:39:39.5975777Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.6.1"}
{"message":"Phase 'BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build.BuildConceptualDocument' runs 2 times with average time of 439.9924 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build","date_time":"2020-09-21T11:39:40.0475818Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.6.2.15"}
{"message":"Phase 'BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build.CountWord' runs 2 times with average time of 0.0282 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build","date_time":"2020-09-21T11:39:40.0475818Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.6.2.16"}
{"message":"Phase 'BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build.ValidateConceptualDocumentMetadata' runs 2 times with average time of 2.0581 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build","date_time":"2020-09-21T11:39:40.0475818Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.6.2.17"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build in 450.1981 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build","date_time":"2020-09-21T11:39:40.0475818Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.6.2.18"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor in 450.2647 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:39:40.0475818Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.6.3"}
{"message":"Dependency graph: 1 unresolved references, following is the top 100: \r\nSourceType: uid, Value: erpnet.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental","date_time":"2020-09-21T11:39:40.0735798Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.8"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental in 597.3662 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental","date_time":"2020-09-21T11:39:40.1680011Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.31.9"}
{"message":"Processor ConceptualDocumentProcessor (link phase), total file count: 2, skipped file count: 0.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges","date_time":"2020-09-21T11:39:40.1710288Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges in 0.8266 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges","date_time":"2020-09-21T11:39:40.1710288Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.1.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.LoadExternalXRefSpec in 0.3539 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.LoadExternalXRefSpec","date_time":"2020-09-21T11:39:40.1720094Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.4.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedFileMap in 2.0969 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedFileMap","date_time":"2020-09-21T11:39:40.1740065Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.3.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedXRefSpec in 2.3638 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedXRefSpec","date_time":"2020-09-21T11:39:40.1740065Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.2.1"}
{"message":"Processor ConceptualDocumentProcessor: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:39:40.1760055Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.5.1"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T11:39:40.1770049Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.5.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.BuildConceptualDocument in 0.0597 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.BuildConceptualDocument","date_time":"2020-09-21T11:39:40.1770049Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.5.2.2.1"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T11:39:40.1770049Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.5.2.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.CountWord in 5.4534 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.CountWord","date_time":"2020-09-21T11:39:40.1820053Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.5.2.4.1"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T11:39:40.1820053Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.5.2.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.ValidateConceptualDocumentMetadata in 0.0089 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.ValidateConceptualDocumentMetadata","date_time":"2020-09-21T11:39:40.1820053Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.5.2.6.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild in 6.7268 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T11:39:40.1820053Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.5.2.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor in 6.8121 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:39:40.1820053Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.5.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Save in 23.9807 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Save","date_time":"2020-09-21T11:39:40.2075707Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.6.1.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor in 24.7101 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:39:40.2075707Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.6.2"}
{"message":"0 external references found in 1 xref maps.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext","date_time":"2020-09-21T11:39:40.2185734Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.7.1"}
{"message":"1 uids are unresolved.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext","date_time":"2020-09-21T11:39:40.230384Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.7.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext in 19.6646 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext","date_time":"2020-09-21T11:39:40.230384Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.7.3"}
{"message":"Normalizing all the object to week type","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject","date_time":"2020-09-21T11:39:40.2333853Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.8.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject in 9.0437 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject","date_time":"2020-09-21T11:39:40.2393891Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.8.2"}
{"message":"Feeding options from template...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions","date_time":"2020-09-21T11:39:40.2403895Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.9.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions in 4.0631 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions","date_time":"2020-09-21T11:39:40.243382Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.9.4"}
{"message":"Updating href...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref","date_time":"2020-09-21T11:39:40.2443835Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.10.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref in 1.4455 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref","date_time":"2020-09-21T11:39:40.2453815Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.10.4"}
{"message":"Applying system metadata to manifest...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata","date_time":"2020-09-21T11:39:40.2453815Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.11.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata in 16.5701 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata","date_time":"2020-09-21T11:39:40.261384Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.11.8"}
{"message":"Applying templates to 2 model(s)...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.2643829Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.1"}
{"message":"Saved resource styles/docfx.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.2703896Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.3"}
{"message":"Saved resource styles/docfx.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.2773853Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.5"}
{"message":"Saved resource styles/docfx.vendor.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.vendor.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.2783867Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.7"}
{"message":"Saved resource styles/docfx.vendor.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.vendor.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.2843883Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.9"}
{"message":"Saved resource styles/lunr.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/lunr.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.2863867Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.11"}
{"message":"Saved resource styles/lunr.min.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/lunr.min.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.2873835Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.13"}
{"message":"Saved resource styles/main.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/main.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.2873835Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.15"}
{"message":"Saved resource styles/main.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/main.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.2894522Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.17"}
{"message":"Saved resource styles/search-worker.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/search-worker.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.2903886Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.19"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.eot that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.eot","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.3113841Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.21"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.svg that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.svg","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.3203856Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.23"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.ttf that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.ttf","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.3293837Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.25"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.woff that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.woff","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.3363837Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.27"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.woff2 that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.woff2","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.345383Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.29"}
{"message":"Saved resource favicon.ico that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\favicon.ico","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.3550821Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.31"}
{"message":"Saved resource logo.svg that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\logo.svg","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.3630832Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.33"}
{"message":"Saved resource search-stopwords.json that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\search-stopwords.json","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.3701606Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.35"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates in 334.1812 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:39:40.5980766Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.12.57"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveExternalXRefSpec in 4.8184 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveExternalXRefSpec","date_time":"2020-09-21T11:39:40.6030804Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.13.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.GetUnloadedManifestItems in 1.693 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.GetUnloadedManifestItems","date_time":"2020-09-21T11:39:40.6080821Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.14.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency in 3.344 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency","date_time":"2020-09-21T11:39:40.6080821Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.14.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateManifest in 0.0914 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateManifest","date_time":"2020-09-21T11:39:40.6080821Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.15.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateFileMap in 1.0972 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateFileMap","date_time":"2020-09-21T11:39:40.610082Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.16.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveContextInfo in 1.7646 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveContextInfo","date_time":"2020-09-21T11:39:40.6110783Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.18.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateXrefMap in 2.5397 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateXrefMap","date_time":"2020-09-21T11:39:40.6110783Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.17.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RelayBuildMessage in 0.0278 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RelayBuildMessage","date_time":"2020-09-21T11:39:40.6110783Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.19.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental in 443.8226 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental","date_time":"2020-09-21T11:39:40.6120772Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.32.20"}
{"message":"Exporting xref map...","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T11:39:40.6180767Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.33"}
{"message":"XRef map exported.","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T11:39:40.668077Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.34"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document in 2013.7444 milliseconds.","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T11:39:40.6700778Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.1.35"}
{"message":"Disposing processor ConceptualDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6700778Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.2"}
{"message":"Disposing build step BuildConceptualDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.3"}
{"message":"Disposing build step CountWord ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.4"}
{"message":"Disposing build step ValidateConceptualDocumentMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.5"}
{"message":"Disposing processor ManagedReferenceDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.6"}
{"message":"Disposing build step ApplyOverwriteDocumentForMref ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.7"}
{"message":"Disposing build step BuildManagedReferenceDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.8"}
{"message":"Disposing build step FillReferenceInformation ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.9"}
{"message":"Disposing build step ValidateManagedReferenceDocumentMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.10"}
{"message":"Disposing processor ResourceDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.11"}
{"message":"Disposing build step ValidateResourceMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.12"}
{"message":"Disposing processor RestApiDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.13"}
{"message":"Disposing build step ApplyOverwriteDocumentForRestApi ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.14"}
{"message":"Disposing build step BuildRestApiDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.15"}
{"message":"Disposing build step ValidateRestApiDocumentMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.16"}
{"message":"Disposing processor TocDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.17"}
{"message":"Disposing build step BuildTocDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6711445Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.18"}
{"message":"Disposing processor UniversalReferenceDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6720795Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.19"}
{"message":"Disposing build step ApplyOverwriteDocumentForUref ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6720795Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.20"}
{"message":"Disposing build step BuildUniversalReferenceDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6720795Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.21"}
{"message":"Disposing build step FillReferenceInformation ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6720795Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.22"}
{"message":"Completed DisposeDocumentProcessors in 1.2347 milliseconds.","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:39:40.6720795Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.183.23"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.RestoreIncrementalManifestItems in 0.1081 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.RestoreIncrementalManifestItems","date_time":"2020-09-21T11:39:40.7264204Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.1.1.1"}
{"message":"Set all incremental flags to false, since cannot support incremental post processing.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PreHandle","date_time":"2020-09-21T11:39:40.7290834Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.1.2.1"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PreHandle in 0.0867 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PreHandle","date_time":"2020-09-21T11:39:40.7290834Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.1.2.2"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing html in 51.1154 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing html","date_time":"2020-09-21T11:39:40.7820779Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.1.3.1.9"}
{"message":"Extracting index data from 2 html files","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing ExtractSearchIndex","date_time":"2020-09-21T11:39:40.786082Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.1.3.2.1"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing ExtractSearchIndex in 22.0551 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing ExtractSearchIndex","date_time":"2020-09-21T11:39:40.8040795Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.1.3.2.4"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors in 73.3945 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors","date_time":"2020-09-21T11:39:40.8040795Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.1.3.3"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PostHandle in 0.006 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PostHandle","date_time":"2020-09-21T11:39:40.8060819Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.1.4.1"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental in 82.9972 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental","date_time":"2020-09-21T11:39:40.8060819Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.1.5"}
{"message":"Completed Process in 84.0286 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:39:40.8060819Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.2"}
{"message":"Completed Dereference in 4.5457 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:39:40.8103069Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.3"}
{"message":"Manifest file saved to manifest.json.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:39:40.8390778Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.4"}
{"message":"Completed SaveManifest in 28.037 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:39:40.8390778Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.5"}
{"message":"Completed Cleanup in 97.1316 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:39:40.9360772Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.6"}
{"message":"Completed Scope:BuildCommand.Postprocess in 264.225 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:39:40.9360772Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.184.7"}
{"message":"Completed building documents in 2556.902 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T11:39:40.9360772Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.185"}
{"message":"Disposing processor html ...","source":"BuildCommand","date_time":"2020-09-21T11:39:40.9370774Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.186"}
{"message":"Disposing processor ExtractSearchIndex ...","source":"BuildCommand","date_time":"2020-09-21T11:39:40.9370774Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.187"}
{"message":"Completed Scope:BuildCommand.Apply Theme in 0.0027 milliseconds.","source":"BuildCommand.Apply Theme","date_time":"2020-09-21T11:39:40.9390812Z","message_severity":"verbose","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.188.1"}
{"message":"Completed Scope:BuildCommand in 3352.3906 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T11:39:40.9390812Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.1.189"}
{"message":"Completed in 3356.8027 milliseconds","date_time":"2020-09-21T11:39:40.9390812Z","message_severity":"info","correlation_id":"5243C262-B966-4905-BF6F-5A11BF9A785C.2"}
{"message":"Completed Scope:BuildCommand.ExportResourceFiles in 22.6454 milliseconds.","source":"BuildCommand.ExportResourceFiles","date_time":"2020-09-21T11:41:12.017304Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.1.1"}
{"message":"Completed Scope:BuildCommand.LoadPluginAssemblies in 0.01 milliseconds.","source":"BuildCommand.LoadPluginAssemblies","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.2.1"}
{"message":"Calculating template hash...","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.3"}
{"message":"New template resource info added, name: 'common.js', hash: 'RfTp0mVjze8Rjs5z4IBTwQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.5"}
{"message":"New template resource info added, name: 'conceptual.extension.js', hash: 'O5nj12Slly0x6dpA9niRzQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.7"}
{"message":"New template resource info added, name: 'conceptual.html.primary.js', hash: 'oSE84IyYym+Y5HQz7KLptg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.9"}
{"message":"New template resource info added, name: 'conceptual.html.primary.tmpl', hash: 'pskz9UmaNMfsivxwroiv6Q=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.11"}
{"message":"New template resource info added, name: 'favicon.ico', hash: 'Zj+bsW+9Mtt+JLxMwC+8mg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.13"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.eot', hash: '9Hafm9t0Zr5lCII5wSBG0Q=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.15"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.svg', hash: 'iYiWiBR711ddYycWDWTnYA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.17"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.ttf', hash: '4Yu/YR8qLkOvwHGqL04VEg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.19"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.woff', hash: '+idyMn9V2BmDAf24vPyBWA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.21"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.woff2', hash: 'RIw0pW1pnCkRetxkxDr/6w=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.23"}
{"message":"New template resource info added, name: 'layout/_master.tmpl', hash: 'ef2C857v5Q5/MdVJbQ01ag=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.25"}
{"message":"New template resource info added, name: 'logo.svg', hash: 'A1k/f11plxhTlKy+YXcqoQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.27"}
{"message":"New template resource info added, name: 'ManagedReference.common.js', hash: 't9pLUU6jDyEUgYEdTaIesA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.29"}
{"message":"New template resource info added, name: 'ManagedReference.extension.js', hash: 'H2VgtKXPjKzKQIDsgqHUug=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.31"}
{"message":"New template resource info added, name: 'ManagedReference.html.primary.js', hash: 'RGtWEKN/XYjSWCvQHEnNFw=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.33"}
{"message":"New template resource info added, name: 'ManagedReference.html.primary.tmpl', hash: 'iG6CD8Q8W6wPp6ZaNhoU4A=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.35"}
{"message":"New template resource info added, name: 'partials/_affix.liquid', hash: 'a9gAku3KfoHOncnuFE8Byw=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.37"}
{"message":"New template resource info added, name: 'partials/_breadcrumb.liquid', hash: 'InV+FsvWrhlK7N7MdqUC+A=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.39"}
{"message":"New template resource info added, name: 'partials/_footer.liquid', hash: 'Bx51SCveXTF3w12OC22xrg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.41"}
{"message":"New template resource info added, name: 'partials/_head.liquid', hash: 'tqRwzbVxTuUax65tl0Hs3Q=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.43"}
{"message":"New template resource info added, name: 'partials/_logo.liquid', hash: 'gqHIuA9mVEKaaGutXTzqqg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.45"}
{"message":"New template resource info added, name: 'partials/_navbar.liquid', hash: '99J5j3CGzjrURAU6MUAKtg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.47"}
{"message":"New template resource info added, name: 'partials/_scripts.liquid', hash: 'wKIa3xcrkYeTuCpqrMMNBQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.49"}
{"message":"New template resource info added, name: 'partials/_toc.liquid', hash: 'UPIJGWUTvGdlie+af73FwQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.51"}
{"message":"New template resource info added, name: 'partials/affix.tmpl.partial', hash: 'fGvS/IV+h3Ava9gV5n1tqQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.53"}
{"message":"New template resource info added, name: 'partials/breadcrumb.tmpl.partial', hash: 'V4Y6qQcJmf+MxjqQRuEGvg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.55"}
{"message":"New template resource info added, name: 'partials/class.header.tmpl.partial', hash: 'esOQLZvN3zCiUbBoqN8Fdg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.57"}
{"message":"New template resource info added, name: 'partials/class.tmpl.partial', hash: 'ZYtQeoL3nU/L1Mg/4hjuPw=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.59"}
{"message":"New template resource info added, name: 'partials/classSubtitle.tmpl.partial', hash: 'H967odS6rCkHpPP97x0a4w=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.61"}
{"message":"New template resource info added, name: 'partials/customMREFContent.tmpl.partial', hash: 'uvGKW1UHs14T4MCS5J0OXQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.63"}
{"message":"New template resource info added, name: 'partials/dd-li.tmpl.partial', hash: 'kk63tvmyhioxAKRGCfqvHg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.65"}
{"message":"New template resource info added, name: 'partials/enum.tmpl.partial', hash: 'w9mJtXUtfF7aZqlCPW3GHw=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.67"}
{"message":"New template resource info added, name: 'partials/footer.tmpl.partial', hash: 'Sd/Tb9uMp0ewJQA94504NQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.69"}
{"message":"New template resource info added, name: 'partials/head.tmpl.partial', hash: 'wFKwouKz5s7IjIv2bAti3A=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.71"}
{"message":"New template resource info added, name: 'partials/li.tmpl.partial', hash: 'qPc+vLHMKdFhRcLwZ9ptOA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.73"}
{"message":"New template resource info added, name: 'partials/logo.tmpl.partial', hash: 'NhNYgx0k48wshh5ICcv4Tw=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.75"}
{"message":"New template resource info added, name: 'partials/namespace.tmpl.partial', hash: 'JkzmzRlaS6QlYhfybdSsUg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.77"}
{"message":"New template resource info added, name: 'partials/namespaceSubtitle.tmpl.partial', hash: '69TCqCNgQ2r5Jhy9z7zsZg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.79"}
{"message":"New template resource info added, name: 'partials/navbar.tmpl.partial', hash: 'IcTuAk5T6UUs7Fmx/FkKiQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.81"}
{"message":"New template resource info added, name: 'partials/rest.child.tmpl.partial', hash: 'UTM5BUkMwMSoqQoKqf9GCw=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.83"}
{"message":"New template resource info added, name: 'partials/rest.tmpl.partial', hash: 'aCdWQ9XAEvbHflgV7AwMEA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.85"}
{"message":"New template resource info added, name: 'partials/scripts.tmpl.partial', hash: 'NSqnUOeo2Z//asendoI8KA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.87"}
{"message":"New template resource info added, name: 'partials/searchResults.tmpl.partial', hash: 'mrefuYILH1k3a+GM98QKKQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.89"}
{"message":"New template resource info added, name: 'partials/title.tmpl.partial', hash: '6Jl0VXBqchGZMDyeZ40uow=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.91"}
{"message":"New template resource info added, name: 'partials/toc.tmpl.partial', hash: 'YEmahw2phxEPncXK6MfEdg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.93"}
{"message":"New template resource info added, name: 'partials/uref/class.header.tmpl.partial', hash: '+iyDBuLdn1W5N8pXE63FXA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.95"}
{"message":"New template resource info added, name: 'partials/uref/class.tmpl.partial', hash: 'sFxrgXutWBOa3/w3VC5kyQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.97"}
{"message":"New template resource info added, name: 'partials/uref/enum.tmpl.partial', hash: '7tB3xYThFiIHQj0Lpwm08A=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.99"}
{"message":"New template resource info added, name: 'partials/uref/inheritance.tmpl.partial', hash: 'kseJ5rWiFm3VHT+YsR/p1A=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.101"}
{"message":"New template resource info added, name: 'partials/uref/namespace.tmpl.partial', hash: '83hTuarhxksTHAWPVt/q4Q=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.103"}
{"message":"New template resource info added, name: 'partials/uref/parameters.tmpl.partial', hash: 'voCPngXb7yFCKUETMv+J3g=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.105"}
{"message":"New template resource info added, name: 'RestApi.common.js', hash: 'yYCZhXpgNQCAee5YD40jVg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.107"}
{"message":"New template resource info added, name: 'RestApi.extension.js', hash: 'F+keGApROKUywYjUHh3c/A=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.109"}
{"message":"New template resource info added, name: 'RestApi.html.primary.js', hash: 'wdeGWbl1nslCJtr9TfZwQw=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.111"}
{"message":"New template resource info added, name: 'RestApi.html.primary.tmpl', hash: '041dvUx7PfHZvopAyZmELg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.113"}
{"message":"New template resource info added, name: 'search-stopwords.json', hash: 'o2D8fALbHw66h/ZFgeFArQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.115"}
{"message":"New template resource info added, name: 'styles/docfx.css', hash: '4OnVA8wVWjmIlZWAOsTJBg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.117"}
{"message":"New template resource info added, name: 'styles/docfx.js', hash: 'd1DLfsIFpRMpimazqNDKZA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.119"}
{"message":"New template resource info added, name: 'styles/docfx.vendor.css', hash: 'Z8oQh5bahcfO2pcmLr7mug=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0593044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.121"}
{"message":"New template resource info added, name: 'styles/docfx.vendor.js', hash: 'J3YyueOXLC5fd42mU7gqUQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0653033Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.123"}
{"message":"New template resource info added, name: 'styles/lunr.js', hash: '2k83A84Ag/gFDQDpAKrHsA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0653033Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.125"}
{"message":"New template resource info added, name: 'styles/lunr.min.js', hash: 'd0y5G2qqW0i3wXUig6kgiA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.127"}
{"message":"New template resource info added, name: 'styles/main.css', hash: '1B2M2Y8AsgTpgAmY7PhCfg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.129"}
{"message":"New template resource info added, name: 'styles/main.js', hash: '15t2k8P+3vbScB+YvWM5Xg=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.131"}
{"message":"New template resource info added, name: 'styles/search-worker.js', hash: 'Xi8vLs85qxGX+h8zu3Pc6Q=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.133"}
{"message":"New template resource info added, name: 'toc.extension.js', hash: 'hBeh5rc09pDO2LfrQCg6VQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.135"}
{"message":"New template resource info added, name: 'toc.html.js', hash: '/QAnlSpPnyypF7HPjpvVog=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.137"}
{"message":"New template resource info added, name: 'toc.html.tmpl', hash: 'gBiU4A9CbZEgljMNVAQTbQ=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.139"}
{"message":"New template resource info added, name: 'token.json', hash: 'HXgYcCrW0Z9A2k4mYxgUrA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.141"}
{"message":"New template resource info added, name: 'UniversalReference.common.js', hash: 'LQXPk/t9ULWBKDrrNrB6BA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.143"}
{"message":"New template resource info added, name: 'UniversalReference.extension.js', hash: '9uqiQknaQygvJXmR2Sa5XA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.145"}
{"message":"New template resource info added, name: 'UniversalReference.html.primary.js', hash: 'nI37V9d5Fump98ltOZO/Ow=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.147"}
{"message":"New template resource info added, name: 'UniversalReference.html.primary.tmpl', hash: 'tAAZZy4MVr+324aDUELk3g=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0663079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.149"}
{"message":"Template hash is '/2c/uUr8fi1jrpsfkCUl9A=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0673044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.150"}
{"message":"Loading plug-in...","source":"BuildCommand","date_time":"2020-09-21T11:41:12.0703007Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.151"}
{"message":"Completed Scope:BuildCommand.ImportPlugins in 66.0077 milliseconds.","source":"BuildCommand.ImportPlugins","date_time":"2020-09-21T11:41:12.1363007Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.152.1"}
{"message":"6 plug-in(s) loaded.","source":"BuildCommand","date_time":"2020-09-21T11:41:12.1363007Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.153"}
{"message":"\tConceptualDocumentProcessor with build steps (BuildConceptualDocument, CountWord, ValidateConceptualDocumentMetadata)","source":"BuildCommand","date_time":"2020-09-21T11:41:12.1363007Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.154"}
{"message":"\tManagedReferenceDocumentProcessor with build steps (BuildManagedReferenceDocument, ValidateManagedReferenceDocumentMetadata, ApplyOverwriteDocumentForMref, FillReferenceInformation)","source":"BuildCommand","date_time":"2020-09-21T11:41:12.1373009Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.155"}
{"message":"\tResourceDocumentProcessor with build steps (ValidateResourceMetadata)","source":"BuildCommand","date_time":"2020-09-21T11:41:12.1373009Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.156"}
{"message":"\tRestApiDocumentProcessor with build steps (BuildRestApiDocument, ValidateRestApiDocumentMetadata, ApplyOverwriteDocumentForRestApi)","source":"BuildCommand","date_time":"2020-09-21T11:41:12.1373009Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.157"}
{"message":"\tTocDocumentProcessor with build steps (BuildTocDocument)","source":"BuildCommand","date_time":"2020-09-21T11:41:12.1373009Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.158"}
{"message":"\tUniversalReferenceDocumentProcessor with build steps (BuildUniversalReferenceDocument, ApplyOverwriteDocumentForUref, FillReferenceInformation)","source":"BuildCommand","date_time":"2020-09-21T11:41:12.1373009Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.159"}
{"message":"Post processor ExtractSearchIndex loaded.","source":"BuildCommand","date_time":"2020-09-21T11:41:12.1403038Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.160"}
{"message":"No files are found with glob pattern images/**, excluding <none>, under directory \"C:\\Users\\ivanarj\\source\\repos\\tech\"","source":"BuildCommand","date_time":"2020-09-21T11:41:12.1873108Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.161"}
{"message":"Completed GenerateParameters in 48.7326 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T11:41:12.1953005Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.162"}
{"message":"Markdown engine is markdig","source":"BuildCommand","date_time":"2020-09-21T11:41:12.2073043Z","message_severity":"info","code":"MarkdownEngineName","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.163"}
{"message":"Completed GetMarkdownServiceProvider in 1.4309 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T11:41:12.2073043Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.164"}
{"message":"Completed LoadLastBuildInfo in 121.7732 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3483048Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.166"}
{"message":"Calculating plugin hash...","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3503018Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.167"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ConceptualDocuments, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3513004Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.168"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.Engine, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3513004Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.169"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ManagedReference, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3513004Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.170"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ResourceFiles, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3513004Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.171"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.RestApi, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3513004Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.172"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.SchemaDriven, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3513004Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.173"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.TableOfContents, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3513004Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.174"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.UniversalReference, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3513004Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.175"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.MarkdigEngine, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3513004Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.176"}
{"message":"Plugin hash is 'OJXcQLf3SwGg0oJJ4lixpA=='","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3513004Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.177"}
{"message":"Cannot support incremental post processors, because following post processors don't implement ISupportIncrementalPostProcessor interface: ExtractSearchIndex.","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3543018Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.178"}
{"message":"Cannot support incremental post processing, the reason is: should not trace intermediate info.","source":"BuildCommand","date_time":"2020-09-21T11:41:12.3573009Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.179"}
{"message":"Completed Scope:BuildCommand.Prepare metadata in post processor html in 1.4239 milliseconds.","source":"BuildCommand.Prepare metadata in post processor html","date_time":"2020-09-21T11:41:12.3633032Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.180.1"}
{"message":"Completed Scope:BuildCommand.Prepare metadata in post processor ExtractSearchIndex in 0.1803 milliseconds.","source":"BuildCommand.Prepare metadata in post processor ExtractSearchIndex","date_time":"2020-09-21T11:41:12.3633032Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.181.1"}
{"message":"Max parallelism is 20.","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T11:41:12.3743036Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateMarkdownService in 0.5598 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateMarkdownService","date_time":"2020-09-21T11:41:12.6763013Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.1.1"}
{"message":"Config content: {\"ExternalReferencePackages\":[],\"XRefMaps\":[\"embedded:docfx/langwordMapping.yml\"],\"XRefServiceUrls\":[],\"Metadata\":{\"_enableSearch\":true,\"_docfxVersion\":\"2.56.2.0\",\"_appTitle\":\"ERP.net Developer Docs\"},\"MarkdownEngineName\":\"markdig\",\"RootTocPath\":null,\"CustomLinkResolver\":null,\"FALName\":null,\"DisableGitFeatures\":false,\"OverwriteFragmentsRedirectionRules\":[]}|","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ComputeConfigHash","date_time":"2020-09-21T11:41:12.7023012Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.1.1"}
{"message":"FileMetadata content: {\"dict\":{}}","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ComputeFileMetadataHash","date_time":"2020-09-21T11:41:12.7043028Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.2.1"}
{"message":"Building the default group incrementally.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T11:41:12.7123014Z","message_severity":"verbose","code":"IsIncrementalBuild","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.3"}
{"message":"Same dependency type with name bookmark has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T11:41:12.7193069Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.4.1.1"}
{"message":"Same dependency type with name file has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T11:41:12.7203042Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.4.1.2"}
{"message":"Same dependency type with name overwrite has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T11:41:12.7203042Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.4.1.3"}
{"message":"Same dependency type with name uid has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T11:41:12.7203042Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.4.1.4"}
{"message":"Same dependency type with name overwriteFragments has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T11:41:12.7203042Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.4.1.5"}
{"message":"Same dependency type with name include has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T11:41:12.7203042Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.4.1.6"}
{"message":"Same dependency type with name metadata has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T11:41:12.7203042Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.4.1.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast in 6.3186 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast","date_time":"2020-09-21T11:41:12.7203042Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.4.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.InitFileAttributes in 3.9118 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.InitFileAttributes","date_time":"2020-09-21T11:41:12.7253013Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.5.1"}
{"message":"Number of files in user-provided change list or detected by last modified time and/or HASH change is 0.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.LoadChanges","date_time":"2020-09-21T11:41:12.7373015Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.6.1"}
{"message":"Number of files in change list is updated to 0 to account for files with file metadata change.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.LoadChanges","date_time":"2020-09-21T11:41:12.7383039Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.6.2"}
{"message":"Number of files in change list is updated to 0 after expanding dependency.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T11:41:12.7473069Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.10"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext in 69.5675 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T11:41:12.7473069Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.2.11"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare in 73.6209 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare","date_time":"2020-09-21T11:41:12.7493025Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.29.3"}
{"message":"Processor ConceptualDocumentProcessor enable incremental build.","source":"BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor","file":"index.md","date_time":"2020-09-21T11:41:12.8264083Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.30.1.1"}
{"message":"Processor ConceptualDocumentProcessor (compile phase), total file count: 2, skipped file count: 2.","source":"BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor.ReportModelLoadInfo","date_time":"2020-09-21T11:41:12.8363025Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.30.1.8.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor in 25.2558 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor","date_time":"2020-09-21T11:41:12.8363025Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.30.1.9"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Load in 87.0359 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Load","date_time":"2020-09-21T11:41:12.8363025Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.30.2"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T11:41:12.8413056Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.1.1"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T11:41:12.8413056Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.1.3"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T11:41:12.8413056Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.1.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor in 1.9079 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T11:41:12.8413056Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.1.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ReportDependencyFromLastBuild in 1.9273 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ReportDependencyFromLastBuild","date_time":"2020-09-21T11:41:12.8563016Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.LoadPluginContextInfo in 1.1633 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.LoadPluginContextInfo","date_time":"2020-09-21T11:41:12.8583042Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.3.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterUnloadedTocRestructionsFromLastBuild in 0.0179 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterUnloadedTocRestructionsFromLastBuild","date_time":"2020-09-21T11:41:12.8593103Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.4.1"}
{"message":"Building 0 file(s) in ConceptualDocumentProcessor(BuildConceptualDocument=>CountWord=>ValidateConceptualDocumentMetadata)...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:41:12.8643047Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.5.1"}
{"message":"Processor ConceptualDocumentProcessor: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:41:12.8643047Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.5.2"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T11:41:12.8653058Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.5.3.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.BuildConceptualDocument in 0.0645 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.BuildConceptualDocument","date_time":"2020-09-21T11:41:12.8653058Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.5.3.2.1"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T11:41:12.8653058Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.5.3.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.CountWord in 0.004 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.CountWord","date_time":"2020-09-21T11:41:12.8653058Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.5.3.4.1"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T11:41:12.8653058Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.5.3.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.ValidateConceptualDocumentMetadata in 0.0054 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.ValidateConceptualDocumentMetadata","date_time":"2020-09-21T11:41:12.8653058Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.5.3.6.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild in 1.4846 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T11:41:12.8653058Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.5.3.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor in 1.8311 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:41:12.8653058Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.5.4"}
{"message":"Processor ConceptualDocumentProcessor: Building...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:41:12.8663051Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.6.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build in 3.3284 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build","date_time":"2020-09-21T11:41:12.8693082Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.6.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor in 3.4674 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:41:12.8693082Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.6.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental in 72.1813 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental","date_time":"2020-09-21T11:41:12.9103016Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.31.7"}
{"message":"Processor ConceptualDocumentProcessor (link phase), total file count: 2, skipped file count: 2.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges","date_time":"2020-09-21T11:41:12.9163016Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges in 4.0986 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges","date_time":"2020-09-21T11:41:12.9163016Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.1.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedXRefSpec in 1.4014 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedXRefSpec","date_time":"2020-09-21T11:41:12.9183046Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedFileMap in 1.5949 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedFileMap","date_time":"2020-09-21T11:41:12.9183046Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.4.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.LoadExternalXRefSpec in 2.3988 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.LoadExternalXRefSpec","date_time":"2020-09-21T11:41:12.919303Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.3.1"}
{"message":"Processor ConceptualDocumentProcessor: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:41:12.9203039Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.5.1"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T11:41:12.9213039Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.5.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.BuildConceptualDocument in 0.0504 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.BuildConceptualDocument","date_time":"2020-09-21T11:41:12.9213039Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.5.2.2.1"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T11:41:12.9213039Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.5.2.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.CountWord in 0.7854 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.CountWord","date_time":"2020-09-21T11:41:12.9223045Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.5.2.4.1"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T11:41:12.9223045Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.5.2.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.ValidateConceptualDocumentMetadata in 0.0071 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.ValidateConceptualDocumentMetadata","date_time":"2020-09-21T11:41:12.9223045Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.5.2.6.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild in 1.9615 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T11:41:12.9223045Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.5.2.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor in 2.0319 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:41:12.9223045Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.5.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Save in 0.7667 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Save","date_time":"2020-09-21T11:41:12.9243027Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.6.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor in 1.3875 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T11:41:12.9243027Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.6.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext in 3.4364 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext","date_time":"2020-09-21T11:41:12.9303113Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.7.1"}
{"message":"Normalizing all the object to week type","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject","date_time":"2020-09-21T11:41:12.9313062Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.8.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject in 0.6857 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject","date_time":"2020-09-21T11:41:12.9313062Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.8.2"}
{"message":"Feeding options from template...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions","date_time":"2020-09-21T11:41:12.9313062Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.9.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions in 0.4222 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions","date_time":"2020-09-21T11:41:12.9313062Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.9.2"}
{"message":"Updating href...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref","date_time":"2020-09-21T11:41:12.9323001Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.10.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref in 0.4263 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref","date_time":"2020-09-21T11:41:12.9323001Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.10.2"}
{"message":"Applying system metadata to manifest...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata","date_time":"2020-09-21T11:41:12.9333012Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.11.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata in 2.3867 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata","date_time":"2020-09-21T11:41:12.9343044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.11.2"}
{"message":"Applying templates to 0 model(s)...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:41:12.9363044Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.12.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates in 3.3309 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T11:41:12.9403037Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.12.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveExternalXRefSpec in 2.9984 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveExternalXRefSpec","date_time":"2020-09-21T11:41:12.9433017Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.13.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.GetUnloadedManifestItems.UpdateItems in 7.0056 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.GetUnloadedManifestItems.UpdateItems","date_time":"2020-09-21T11:41:12.9543044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.1.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.GetUnloadedManifestItems in 9.0954 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.GetUnloadedManifestItems","date_time":"2020-09-21T11:41:12.9543044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.1.2"}
{"message":"Saved resource styles/docfx.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:12.9583048Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.2"}
{"message":"Saved resource styles/docfx.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:12.9593049Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.4"}
{"message":"Saved resource styles/docfx.vendor.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.vendor.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:12.9613053Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.6"}
{"message":"Saved resource styles/docfx.vendor.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.vendor.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:12.9673058Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.8"}
{"message":"Saved resource styles/lunr.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/lunr.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:12.9684834Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.10"}
{"message":"Saved resource styles/lunr.min.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/lunr.min.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:12.9693091Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.12"}
{"message":"Saved resource styles/main.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/main.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:12.9703097Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.14"}
{"message":"Saved resource styles/main.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/main.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:12.9893044Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.16"}
{"message":"Saved resource styles/search-worker.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/search-worker.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:12.9903014Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.18"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.eot that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.eot","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:13.0043036Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.20"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.svg that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.svg","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:13.0133018Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.22"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.ttf that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.ttf","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:13.0213028Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.24"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.woff that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.woff","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:13.0283015Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.26"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.woff2 that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.woff2","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:13.0353029Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.28"}
{"message":"Saved resource favicon.ico that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\favicon.ico","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:13.0413027Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.30"}
{"message":"Saved resource logo.svg that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\logo.svg","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:13.0433068Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.32"}
{"message":"Saved resource search-stopwords.json that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\search-stopwords.json","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:13.0443171Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.34"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies in 89.7612 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.ProcessDependencies","date_time":"2020-09-21T11:41:13.0443171Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.2.35"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency in 100.5901 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency","date_time":"2020-09-21T11:41:13.0443171Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.14.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateManifest in 0.1249 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateManifest","date_time":"2020-09-21T11:41:13.0453403Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.15.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateFileMap in 1.0263 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateFileMap","date_time":"2020-09-21T11:41:13.046309Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.16.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateXrefMap in 1.9805 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateXrefMap","date_time":"2020-09-21T11:41:13.0473079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.18.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveContextInfo in 2.0957 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveContextInfo","date_time":"2020-09-21T11:41:13.0473079Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.17.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RelayBuildMessage in 0.0691 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RelayBuildMessage","date_time":"2020-09-21T11:41:13.0483067Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.19.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental in 137.8858 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental","date_time":"2020-09-21T11:41:13.0483067Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.32.20"}
{"message":"Exporting xref map...","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T11:41:13.0553075Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.33"}
{"message":"XRef map exported.","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T11:41:13.1003028Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.34"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document in 727.2939 milliseconds.","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T11:41:13.1013711Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.1.35"}
{"message":"Disposing processor ConceptualDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.2"}
{"message":"Disposing build step BuildConceptualDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.3"}
{"message":"Disposing build step CountWord ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.4"}
{"message":"Disposing build step ValidateConceptualDocumentMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.5"}
{"message":"Disposing processor ManagedReferenceDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.6"}
{"message":"Disposing build step ApplyOverwriteDocumentForMref ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.7"}
{"message":"Disposing build step BuildManagedReferenceDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.8"}
{"message":"Disposing build step FillReferenceInformation ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.9"}
{"message":"Disposing build step ValidateManagedReferenceDocumentMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.10"}
{"message":"Disposing processor ResourceDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.11"}
{"message":"Disposing build step ValidateResourceMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.12"}
{"message":"Disposing processor RestApiDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.13"}
{"message":"Disposing build step ApplyOverwriteDocumentForRestApi ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1023052Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.14"}
{"message":"Disposing build step BuildRestApiDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1033021Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.15"}
{"message":"Disposing build step ValidateRestApiDocumentMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1033021Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.16"}
{"message":"Disposing processor TocDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1033021Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.17"}
{"message":"Disposing build step BuildTocDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1033021Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.18"}
{"message":"Disposing processor UniversalReferenceDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1033021Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.19"}
{"message":"Disposing build step ApplyOverwriteDocumentForUref ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1033021Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.20"}
{"message":"Disposing build step BuildUniversalReferenceDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1033021Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.21"}
{"message":"Disposing build step FillReferenceInformation ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1033021Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.22"}
{"message":"Completed DisposeDocumentProcessors in 1.2156 milliseconds.","source":"BuildCommand.BuildCore","date_time":"2020-09-21T11:41:13.1033021Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.182.23"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.RestoreIncrementalManifestItems in 0.1014 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.RestoreIncrementalManifestItems","date_time":"2020-09-21T11:41:13.1403008Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.1.1.1"}
{"message":"Set all incremental flags to false, since cannot support incremental post processing.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PreHandle","date_time":"2020-09-21T11:41:13.1433028Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.1.2.1"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PreHandle in 0.0972 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PreHandle","date_time":"2020-09-21T11:41:13.1433028Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.1.2.2"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing html in 122.769 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing html","date_time":"2020-09-21T11:41:13.267303Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.1.3.1.9"}
{"message":"Extracting index data from 2 html files","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing ExtractSearchIndex","date_time":"2020-09-21T11:41:13.2713036Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.1.3.2.1"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing ExtractSearchIndex in 17.9928 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing ExtractSearchIndex","date_time":"2020-09-21T11:41:13.2853061Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.1.3.2.4"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors in 140.95 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors","date_time":"2020-09-21T11:41:13.2853061Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.1.3.3"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PostHandle in 0.0035 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PostHandle","date_time":"2020-09-21T11:41:13.2863057Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.1.4.1"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental in 149.3591 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental","date_time":"2020-09-21T11:41:13.2863057Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.1.5"}
{"message":"Completed Process in 150.3412 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:41:13.2863057Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.2"}
{"message":"Completed Dereference in 9.3293 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:41:13.2963058Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.3"}
{"message":"Manifest file saved to manifest.json.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:41:13.325302Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.4"}
{"message":"Completed SaveManifest in 29.3967 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:41:13.325302Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.5"}
{"message":"Completed Cleanup in 53.3961 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:41:13.3793067Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.6"}
{"message":"Completed Scope:BuildCommand.Postprocess in 275.9624 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T11:41:13.3793067Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.183.7"}
{"message":"Completed building documents in 1238.4989 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T11:41:13.3793067Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.184"}
{"message":"Disposing processor html ...","source":"BuildCommand","date_time":"2020-09-21T11:41:13.3803097Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.185"}
{"message":"Disposing processor ExtractSearchIndex ...","source":"BuildCommand","date_time":"2020-09-21T11:41:13.3803097Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.186"}
{"message":"Completed Scope:BuildCommand.Apply Theme in 0.0036 milliseconds.","source":"BuildCommand.Apply Theme","date_time":"2020-09-21T11:41:13.3813027Z","message_severity":"verbose","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.187.1"}
{"message":"Completed Scope:BuildCommand in 1402.1093 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T11:41:13.3813027Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.1.188"}
{"message":"Completed in 1406.489 milliseconds","date_time":"2020-09-21T11:41:13.3813027Z","message_severity":"info","correlation_id":"A3DE0ADB-BDC4-4185-B571-88678ABB445F.2"}
{"message":"Completed Scope:BuildCommand.ExportResourceFiles in 22.252 milliseconds.","source":"BuildCommand.ExportResourceFiles","date_time":"2020-09-21T12:04:12.7033966Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.1.1"}
{"message":"Completed Scope:BuildCommand.LoadPluginAssemblies in 0.0127 milliseconds.","source":"BuildCommand.LoadPluginAssemblies","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.2.1"}
{"message":"Calculating template hash...","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.3"}
{"message":"New template resource info added, name: 'common.js', hash: 'RfTp0mVjze8Rjs5z4IBTwQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.5"}
{"message":"New template resource info added, name: 'conceptual.extension.js', hash: 'O5nj12Slly0x6dpA9niRzQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.7"}
{"message":"New template resource info added, name: 'conceptual.html.primary.js', hash: 'oSE84IyYym+Y5HQz7KLptg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.9"}
{"message":"New template resource info added, name: 'conceptual.html.primary.tmpl', hash: 'pskz9UmaNMfsivxwroiv6Q=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.11"}
{"message":"New template resource info added, name: 'favicon.ico', hash: 'Zj+bsW+9Mtt+JLxMwC+8mg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.13"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.eot', hash: '9Hafm9t0Zr5lCII5wSBG0Q=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.15"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.svg', hash: 'iYiWiBR711ddYycWDWTnYA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.17"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.ttf', hash: '4Yu/YR8qLkOvwHGqL04VEg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.19"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.woff', hash: '+idyMn9V2BmDAf24vPyBWA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.21"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.woff2', hash: 'RIw0pW1pnCkRetxkxDr/6w=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.23"}
{"message":"New template resource info added, name: 'layout/_master.tmpl', hash: 'ef2C857v5Q5/MdVJbQ01ag=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.25"}
{"message":"New template resource info added, name: 'logo.svg', hash: 'A1k/f11plxhTlKy+YXcqoQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.27"}
{"message":"New template resource info added, name: 'ManagedReference.common.js', hash: 't9pLUU6jDyEUgYEdTaIesA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.29"}
{"message":"New template resource info added, name: 'ManagedReference.extension.js', hash: 'H2VgtKXPjKzKQIDsgqHUug=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.31"}
{"message":"New template resource info added, name: 'ManagedReference.html.primary.js', hash: 'RGtWEKN/XYjSWCvQHEnNFw=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.33"}
{"message":"New template resource info added, name: 'ManagedReference.html.primary.tmpl', hash: 'iG6CD8Q8W6wPp6ZaNhoU4A=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.35"}
{"message":"New template resource info added, name: 'partials/_affix.liquid', hash: 'a9gAku3KfoHOncnuFE8Byw=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.37"}
{"message":"New template resource info added, name: 'partials/_breadcrumb.liquid', hash: 'InV+FsvWrhlK7N7MdqUC+A=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.39"}
{"message":"New template resource info added, name: 'partials/_footer.liquid', hash: 'Bx51SCveXTF3w12OC22xrg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.41"}
{"message":"New template resource info added, name: 'partials/_head.liquid', hash: 'tqRwzbVxTuUax65tl0Hs3Q=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.43"}
{"message":"New template resource info added, name: 'partials/_logo.liquid', hash: 'gqHIuA9mVEKaaGutXTzqqg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.45"}
{"message":"New template resource info added, name: 'partials/_navbar.liquid', hash: '99J5j3CGzjrURAU6MUAKtg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.47"}
{"message":"New template resource info added, name: 'partials/_scripts.liquid', hash: 'wKIa3xcrkYeTuCpqrMMNBQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.49"}
{"message":"New template resource info added, name: 'partials/_toc.liquid', hash: 'UPIJGWUTvGdlie+af73FwQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.51"}
{"message":"New template resource info added, name: 'partials/affix.tmpl.partial', hash: 'fGvS/IV+h3Ava9gV5n1tqQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.53"}
{"message":"New template resource info added, name: 'partials/breadcrumb.tmpl.partial', hash: 'V4Y6qQcJmf+MxjqQRuEGvg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.55"}
{"message":"New template resource info added, name: 'partials/class.header.tmpl.partial', hash: 'esOQLZvN3zCiUbBoqN8Fdg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.57"}
{"message":"New template resource info added, name: 'partials/class.tmpl.partial', hash: 'ZYtQeoL3nU/L1Mg/4hjuPw=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.59"}
{"message":"New template resource info added, name: 'partials/classSubtitle.tmpl.partial', hash: 'H967odS6rCkHpPP97x0a4w=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.61"}
{"message":"New template resource info added, name: 'partials/customMREFContent.tmpl.partial', hash: 'uvGKW1UHs14T4MCS5J0OXQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.63"}
{"message":"New template resource info added, name: 'partials/dd-li.tmpl.partial', hash: 'kk63tvmyhioxAKRGCfqvHg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.65"}
{"message":"New template resource info added, name: 'partials/enum.tmpl.partial', hash: 'w9mJtXUtfF7aZqlCPW3GHw=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.67"}
{"message":"New template resource info added, name: 'partials/footer.tmpl.partial', hash: 'Sd/Tb9uMp0ewJQA94504NQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.69"}
{"message":"New template resource info added, name: 'partials/head.tmpl.partial', hash: 'wFKwouKz5s7IjIv2bAti3A=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.71"}
{"message":"New template resource info added, name: 'partials/li.tmpl.partial', hash: 'qPc+vLHMKdFhRcLwZ9ptOA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.73"}
{"message":"New template resource info added, name: 'partials/logo.tmpl.partial', hash: 'NhNYgx0k48wshh5ICcv4Tw=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.75"}
{"message":"New template resource info added, name: 'partials/namespace.tmpl.partial', hash: 'JkzmzRlaS6QlYhfybdSsUg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.77"}
{"message":"New template resource info added, name: 'partials/namespaceSubtitle.tmpl.partial', hash: '69TCqCNgQ2r5Jhy9z7zsZg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.79"}
{"message":"New template resource info added, name: 'partials/navbar.tmpl.partial', hash: 'IcTuAk5T6UUs7Fmx/FkKiQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.81"}
{"message":"New template resource info added, name: 'partials/rest.child.tmpl.partial', hash: 'UTM5BUkMwMSoqQoKqf9GCw=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.83"}
{"message":"New template resource info added, name: 'partials/rest.tmpl.partial', hash: 'aCdWQ9XAEvbHflgV7AwMEA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.85"}
{"message":"New template resource info added, name: 'partials/scripts.tmpl.partial', hash: 'NSqnUOeo2Z//asendoI8KA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.87"}
{"message":"New template resource info added, name: 'partials/searchResults.tmpl.partial', hash: 'mrefuYILH1k3a+GM98QKKQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.89"}
{"message":"New template resource info added, name: 'partials/title.tmpl.partial', hash: '6Jl0VXBqchGZMDyeZ40uow=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.91"}
{"message":"New template resource info added, name: 'partials/toc.tmpl.partial', hash: 'YEmahw2phxEPncXK6MfEdg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.93"}
{"message":"New template resource info added, name: 'partials/uref/class.header.tmpl.partial', hash: '+iyDBuLdn1W5N8pXE63FXA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.95"}
{"message":"New template resource info added, name: 'partials/uref/class.tmpl.partial', hash: 'sFxrgXutWBOa3/w3VC5kyQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.97"}
{"message":"New template resource info added, name: 'partials/uref/enum.tmpl.partial', hash: '7tB3xYThFiIHQj0Lpwm08A=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.99"}
{"message":"New template resource info added, name: 'partials/uref/inheritance.tmpl.partial', hash: 'kseJ5rWiFm3VHT+YsR/p1A=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.101"}
{"message":"New template resource info added, name: 'partials/uref/namespace.tmpl.partial', hash: '83hTuarhxksTHAWPVt/q4Q=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.103"}
{"message":"New template resource info added, name: 'partials/uref/parameters.tmpl.partial', hash: 'voCPngXb7yFCKUETMv+J3g=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.105"}
{"message":"New template resource info added, name: 'RestApi.common.js', hash: 'yYCZhXpgNQCAee5YD40jVg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.107"}
{"message":"New template resource info added, name: 'RestApi.extension.js', hash: 'F+keGApROKUywYjUHh3c/A=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.109"}
{"message":"New template resource info added, name: 'RestApi.html.primary.js', hash: 'wdeGWbl1nslCJtr9TfZwQw=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.111"}
{"message":"New template resource info added, name: 'RestApi.html.primary.tmpl', hash: '041dvUx7PfHZvopAyZmELg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.113"}
{"message":"New template resource info added, name: 'search-stopwords.json', hash: 'o2D8fALbHw66h/ZFgeFArQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.115"}
{"message":"New template resource info added, name: 'styles/docfx.css', hash: '4OnVA8wVWjmIlZWAOsTJBg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.117"}
{"message":"New template resource info added, name: 'styles/docfx.js', hash: 'd1DLfsIFpRMpimazqNDKZA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.119"}
{"message":"New template resource info added, name: 'styles/docfx.vendor.css', hash: 'Z8oQh5bahcfO2pcmLr7mug=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7454008Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.121"}
{"message":"New template resource info added, name: 'styles/docfx.vendor.js', hash: 'J3YyueOXLC5fd42mU7gqUQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7493955Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.123"}
{"message":"New template resource info added, name: 'styles/lunr.js', hash: '2k83A84Ag/gFDQDpAKrHsA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.125"}
{"message":"New template resource info added, name: 'styles/lunr.min.js', hash: 'd0y5G2qqW0i3wXUig6kgiA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.127"}
{"message":"New template resource info added, name: 'styles/main.css', hash: '1B2M2Y8AsgTpgAmY7PhCfg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.129"}
{"message":"New template resource info added, name: 'styles/main.js', hash: '15t2k8P+3vbScB+YvWM5Xg=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.131"}
{"message":"New template resource info added, name: 'styles/search-worker.js', hash: 'Xi8vLs85qxGX+h8zu3Pc6Q=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.133"}
{"message":"New template resource info added, name: 'toc.extension.js', hash: 'hBeh5rc09pDO2LfrQCg6VQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.135"}
{"message":"New template resource info added, name: 'toc.html.js', hash: '/QAnlSpPnyypF7HPjpvVog=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.137"}
{"message":"New template resource info added, name: 'toc.html.tmpl', hash: 'gBiU4A9CbZEgljMNVAQTbQ=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.139"}
{"message":"New template resource info added, name: 'token.json', hash: 'HXgYcCrW0Z9A2k4mYxgUrA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.141"}
{"message":"New template resource info added, name: 'UniversalReference.common.js', hash: 'LQXPk/t9ULWBKDrrNrB6BA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.143"}
{"message":"New template resource info added, name: 'UniversalReference.extension.js', hash: '9uqiQknaQygvJXmR2Sa5XA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.145"}
{"message":"New template resource info added, name: 'UniversalReference.html.primary.js', hash: 'nI37V9d5Fump98ltOZO/Ow=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.147"}
{"message":"New template resource info added, name: 'UniversalReference.html.primary.tmpl', hash: 'tAAZZy4MVr+324aDUELk3g=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.750403Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.149"}
{"message":"Template hash is '/2c/uUr8fi1jrpsfkCUl9A=='","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7514799Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.150"}
{"message":"Loading plug-in...","source":"BuildCommand","date_time":"2020-09-21T12:04:12.7543954Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.151"}
{"message":"Completed Scope:BuildCommand.ImportPlugins in 67.9271 milliseconds.","source":"BuildCommand.ImportPlugins","date_time":"2020-09-21T12:04:12.8223964Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.152.1"}
{"message":"6 plug-in(s) loaded.","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8223964Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.153"}
{"message":"\tConceptualDocumentProcessor with build steps (BuildConceptualDocument, CountWord, ValidateConceptualDocumentMetadata)","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8233966Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.154"}
{"message":"\tManagedReferenceDocumentProcessor with build steps (BuildManagedReferenceDocument, ValidateManagedReferenceDocumentMetadata, ApplyOverwriteDocumentForMref, FillReferenceInformation)","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8233966Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.155"}
{"message":"\tResourceDocumentProcessor with build steps (ValidateResourceMetadata)","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8233966Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.156"}
{"message":"\tRestApiDocumentProcessor with build steps (BuildRestApiDocument, ValidateRestApiDocumentMetadata, ApplyOverwriteDocumentForRestApi)","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8233966Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.157"}
{"message":"\tTocDocumentProcessor with build steps (BuildTocDocument)","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8243986Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.158"}
{"message":"\tUniversalReferenceDocumentProcessor with build steps (BuildUniversalReferenceDocument, ApplyOverwriteDocumentForUref, FillReferenceInformation)","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8243986Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.159"}
{"message":"Post processor ExtractSearchIndex loaded.","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8273954Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.160"}
{"message":"No files are found with glob pattern images/**, excluding <none>, under directory \"C:\\Users\\ivanarj\\source\\repos\\tech\"","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8733972Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.161"}
{"message":"Completed GenerateParameters in 48.3463 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8813982Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.162"}
{"message":"Markdown engine is markdig","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8943987Z","message_severity":"info","code":"MarkdownEngineName","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.163"}
{"message":"Completed GetMarkdownServiceProvider in 1.4692 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T12:04:12.8943987Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.164"}
{"message":"Completed LoadLastBuildInfo in 106.8037 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0203982Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.166"}
{"message":"Calculating plugin hash...","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0223975Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.167"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ConceptualDocuments, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0223975Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.168"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.Engine, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0223975Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.169"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ManagedReference, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0223975Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.170"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ResourceFiles, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0223975Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.171"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.RestApi, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0223975Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.172"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.SchemaDriven, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0223975Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.173"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.TableOfContents, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0233983Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.174"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.UniversalReference, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0233983Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.175"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.MarkdigEngine, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0233983Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.176"}
{"message":"Plugin hash is 'OJXcQLf3SwGg0oJJ4lixpA=='","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0233983Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.177"}
{"message":"Cannot support incremental post processors, because following post processors don't implement ISupportIncrementalPostProcessor interface: ExtractSearchIndex.","source":"BuildCommand","date_time":"2020-09-21T12:04:13.027398Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.178"}
{"message":"Cannot support incremental post processing, the reason is: should not trace intermediate info.","source":"BuildCommand","date_time":"2020-09-21T12:04:13.0293987Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.179"}
{"message":"Completed Scope:BuildCommand.Prepare metadata in post processor html in 1.39 milliseconds.","source":"BuildCommand.Prepare metadata in post processor html","date_time":"2020-09-21T12:04:13.0354004Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.180.1"}
{"message":"Completed Scope:BuildCommand.Prepare metadata in post processor ExtractSearchIndex in 0.1757 milliseconds.","source":"BuildCommand.Prepare metadata in post processor ExtractSearchIndex","date_time":"2020-09-21T12:04:13.0354004Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.181.1"}
{"message":"Max parallelism is 20.","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T12:04:13.0463963Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateMarkdownService in 0.5643 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateMarkdownService","date_time":"2020-09-21T12:04:13.3393951Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.1.1"}
{"message":"Config content: {\"ExternalReferencePackages\":[],\"XRefMaps\":[\"embedded:docfx/langwordMapping.yml\"],\"XRefServiceUrls\":[],\"Metadata\":{\"_enableSearch\":true,\"_docfxVersion\":\"2.56.2.0\",\"_appTitle\":\"ERP.net Developer Docs\"},\"MarkdownEngineName\":\"markdig\",\"RootTocPath\":null,\"CustomLinkResolver\":null,\"FALName\":null,\"DisableGitFeatures\":false,\"OverwriteFragmentsRedirectionRules\":[]}|","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ComputeConfigHash","date_time":"2020-09-21T12:04:13.3683952Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.1.1"}
{"message":"FileMetadata content: {\"dict\":{}}","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ComputeFileMetadataHash","date_time":"2020-09-21T12:04:13.3703964Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.2.1"}
{"message":"Building the default group incrementally.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T12:04:13.3783985Z","message_severity":"verbose","code":"IsIncrementalBuild","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.3"}
{"message":"Same dependency type with name bookmark has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:04:13.3843979Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.4.1.1"}
{"message":"Same dependency type with name file has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:04:13.3853955Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.4.1.2"}
{"message":"Same dependency type with name overwrite has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:04:13.3853955Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.4.1.3"}
{"message":"Same dependency type with name uid has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:04:13.3853955Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.4.1.4"}
{"message":"Same dependency type with name overwriteFragments has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:04:13.3853955Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.4.1.5"}
{"message":"Same dependency type with name include has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:04:13.3853955Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.4.1.6"}
{"message":"Same dependency type with name metadata has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:04:13.3853955Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.4.1.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast in 6.469 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast","date_time":"2020-09-21T12:04:13.3853955Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.4.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.InitFileAttributes in 17.5896 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.InitFileAttributes","date_time":"2020-09-21T12:04:13.4044245Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.5.1"}
{"message":"Number of files in user-provided change list or detected by last modified time and/or HASH change is 1.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.LoadChanges","date_time":"2020-09-21T12:04:13.4173969Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.6.1"}
{"message":"Number of files in change list is updated to 1 to account for files with file metadata change.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.LoadChanges","date_time":"2020-09-21T12:04:13.4177296Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.6.2"}
{"message":"Number of files in change list is updated to 1 after expanding dependency.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T12:04:13.4303951Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.10"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext in 89.3288 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T12:04:13.4303951Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.2.11"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare in 93.4573 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare","date_time":"2020-09-21T12:04:13.4323987Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.29.3"}
{"message":"Processor TocDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.","source":"BuildCommand.BuildCore.Build Document.Load.TocDocumentProcessor","date_time":"2020-09-21T12:04:13.4953956Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.30.2.1"}
{"message":"Processor ConceptualDocumentProcessor enable incremental build.","source":"BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor","file":"index.md","date_time":"2020-09-21T12:04:13.5063956Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.30.1.1"}
{"message":"Processor ConceptualDocumentProcessor (compile phase), total file count: 2, skipped file count: 2.","source":"BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor.ReportModelLoadInfo","date_time":"2020-09-21T12:04:13.5184033Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.30.1.8.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor in 27.3631 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor","date_time":"2020-09-21T12:04:13.5184033Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.30.1.9"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Load.TocDocumentProcessor in 317.3079 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Load.TocDocumentProcessor","date_time":"2020-09-21T12:04:13.8076854Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.30.2.4"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Load in 375.64 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Load","date_time":"2020-09-21T12:04:13.808683Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.30.3"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:04:13.8146874Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.1.1"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:04:13.8146874Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.1.3"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:04:13.8146874Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.1.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor in 2.6348 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:04:13.8146874Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.1.7"}
{"message":"Processor TocDocumentProcessor, step BuildTocDocument: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:04:13.8276894Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor in 0.1914 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:04:13.8276894Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.2.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ReportDependencyFromLastBuild in 2.5317 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ReportDependencyFromLastBuild","date_time":"2020-09-21T12:04:13.8326898Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.3.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.LoadPluginContextInfo in 1.2518 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.LoadPluginContextInfo","date_time":"2020-09-21T12:04:13.8346898Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.4.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterUnloadedTocRestructionsFromLastBuild in 0.0221 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterUnloadedTocRestructionsFromLastBuild","date_time":"2020-09-21T12:04:13.8356906Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.5.1"}
{"message":"Building 0 file(s) in ConceptualDocumentProcessor(BuildConceptualDocument=>CountWord=>ValidateConceptualDocumentMetadata)...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:04:13.8446901Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.6.1"}
{"message":"Processor ConceptualDocumentProcessor: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:04:13.8446901Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.6.2"}
{"message":"Building 1 file(s) in TocDocumentProcessor(BuildTocDocument)...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:04:13.8456901Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.7.1"}
{"message":"Processor TocDocumentProcessor: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:04:13.8456901Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.7.2"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T12:04:13.8476901Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.6.3.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.BuildConceptualDocument in 0.0796 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.BuildConceptualDocument","date_time":"2020-09-21T12:04:13.8476901Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.6.3.2.1"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T12:04:13.8476901Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.6.3.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.CountWord in 0.006 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.CountWord","date_time":"2020-09-21T12:04:13.8476901Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.6.3.4.1"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T12:04:13.8476901Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.6.3.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.ValidateConceptualDocumentMetadata in 0.0063 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.ValidateConceptualDocumentMetadata","date_time":"2020-09-21T12:04:13.8476901Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.6.3.6.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild in 2.851 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T12:04:13.8476901Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.6.3.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor in 3.3083 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:04:13.8476901Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.6.4"}
{"message":"Processor TocDocumentProcessor, step BuildTocDocument: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild","date_time":"2020-09-21T12:04:13.8486884Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.7.3.1"}
{"message":"Unable to find either toc.yml or toc.md inside concepts/. Make sure the file is included in config file docfx.json!","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild.BuildTocDocument","file":"toc.yml","date_time":"2020-09-21T12:04:13.8776898Z","message_severity":"warning","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.7.3.2.1"}
{"message":"Unable to find either toc.yml or toc.md inside modules/. Make sure the file is included in config file docfx.json!","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild.BuildTocDocument","file":"toc.yml","date_time":"2020-09-21T12:04:13.8786849Z","message_severity":"warning","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.7.3.2.2"}
{"message":"Unable to find either toc.yml or toc.md inside reference/. Make sure the file is included in config file docfx.json!","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild.BuildTocDocument","file":"toc.yml","date_time":"2020-09-21T12:04:13.8786849Z","message_severity":"warning","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.7.3.2.3"}
{"message":"Processor TocDocumentProcessor, step BuildTocDocument: Reloading models...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild.BuildTocDocument","date_time":"2020-09-21T12:04:13.8996848Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.7.3.2.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild.BuildTocDocument in 52.3639 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild.BuildTocDocument","date_time":"2020-09-21T12:04:13.9006838Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.7.3.2.8"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild in 55.1538 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild","date_time":"2020-09-21T12:04:13.9016856Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.7.3.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor in 55.371 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:04:13.9016856Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.7.4"}
{"message":"Processor ConceptualDocumentProcessor: Building...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:04:13.9016856Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.8.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build in 2.796 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build","date_time":"2020-09-21T12:04:13.9046874Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.8.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor in 2.9212 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:04:13.9046874Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.8.3"}
{"message":"Processor TocDocumentProcessor: Building...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:04:13.9046874Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.9.1"}
{"message":"Phase 'BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Build.BuildTocDocument' runs 1 times with average time of 78.6595 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Build","date_time":"2020-09-21T12:04:13.9866861Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.9.2.4"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Build in 81.6017 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Build","date_time":"2020-09-21T12:04:13.9866861Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.9.2.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor in 81.6631 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:04:13.9866861Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.9.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental in 257.4253 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental","date_time":"2020-09-21T12:04:14.0676845Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.31.11"}
{"message":"Processor ConceptualDocumentProcessor (link phase), total file count: 3, skipped file count: 1.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges","date_time":"2020-09-21T12:04:14.2636869Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.1.1"}
{"message":"Processor TocDocumentProcessor (link phase), total file count: 3, skipped file count: 2.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges","date_time":"2020-09-21T12:04:14.264684Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.1.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges in 194.6566 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges","date_time":"2020-09-21T12:04:14.264684Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.1.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedXRefSpec in 1.3972 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedXRefSpec","date_time":"2020-09-21T12:04:14.2656837Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedFileMap in 1.7432 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedFileMap","date_time":"2020-09-21T12:04:14.2666855Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.3.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.LoadExternalXRefSpec in 2.4461 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.LoadExternalXRefSpec","date_time":"2020-09-21T12:04:14.2676828Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.4.1"}
{"message":"Processor ConceptualDocumentProcessor: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:04:14.2686857Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.5.1"}
{"message":"Processor TocDocumentProcessor: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:04:14.2686857Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.6.1"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T12:04:14.2696836Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.5.2.1"}
{"message":"Processor TocDocumentProcessor, step BuildTocDocument: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Postbuild","date_time":"2020-09-21T12:04:14.2696836Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.6.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.BuildConceptualDocument in 0.0511 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.BuildConceptualDocument","date_time":"2020-09-21T12:04:14.2696836Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.5.2.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Postbuild.BuildTocDocument in 0.0072 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Postbuild.BuildTocDocument","date_time":"2020-09-21T12:04:14.2696836Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.6.2.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Postbuild in 1.039 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Postbuild","date_time":"2020-09-21T12:04:14.2696836Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.6.2.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor in 1.1163 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:04:14.2696836Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.6.3"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T12:04:14.2696836Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.5.2.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.CountWord in 39.918 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.CountWord","date_time":"2020-09-21T12:04:14.3096827Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.5.2.4.1"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T12:04:14.3106827Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.5.2.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.ValidateConceptualDocumentMetadata in 0.0087 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.ValidateConceptualDocumentMetadata","date_time":"2020-09-21T12:04:14.3106827Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.5.2.6.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild in 41.3553 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T12:04:14.3106827Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.5.2.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor in 41.4294 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:04:14.3106827Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.5.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Save in 17.4518 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Save","date_time":"2020-09-21T12:04:14.3296871Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.7.1.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor in 18.164 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:04:14.3296871Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.7.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Save in 3.8133 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Save","date_time":"2020-09-21T12:04:14.3336863Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.8.1.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor in 3.9114 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:04:14.3336863Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.8.2"}
{"message":"0 external references found in 1 xref maps.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext","date_time":"2020-09-21T12:04:14.3437444Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.9.1"}
{"message":"1 uids are unresolved.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext","date_time":"2020-09-21T12:04:14.3486881Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.9.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext in 13.2859 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext","date_time":"2020-09-21T12:04:14.3486881Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.9.3"}
{"message":"Normalizing all the object to week type","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject","date_time":"2020-09-21T12:04:14.3496895Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.10.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject in 21.0607 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject","date_time":"2020-09-21T12:04:14.3706892Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.10.2"}
{"message":"Feeding options from template...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions","date_time":"2020-09-21T12:04:14.3706892Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.11.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions in 4.3966 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions","date_time":"2020-09-21T12:04:14.3746916Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.11.5"}
{"message":"Updating href...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref","date_time":"2020-09-21T12:04:14.3756861Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.12.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref in 30.658 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref","date_time":"2020-09-21T12:04:14.4058231Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.12.5"}
{"message":"Applying system metadata to manifest...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata","date_time":"2020-09-21T12:04:14.4058231Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.13.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata in 15.3986 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata","date_time":"2020-09-21T12:04:14.4208277Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.13.13"}
{"message":"Applying templates to 3 model(s)...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.4248273Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.1"}
{"message":"Saved resource styles/docfx.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.4338213Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.3"}
{"message":"Saved resource styles/docfx.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.4358245Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.5"}
{"message":"Saved resource styles/docfx.vendor.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.vendor.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.4378211Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.7"}
{"message":"Saved resource styles/docfx.vendor.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.vendor.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.4448204Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.9"}
{"message":"Saved resource styles/lunr.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/lunr.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.4469796Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.11"}
{"message":"Saved resource styles/lunr.min.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/lunr.min.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.4478238Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.13"}
{"message":"Saved resource styles/main.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/main.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.448823Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.15"}
{"message":"Saved resource styles/main.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/main.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.4498272Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.17"}
{"message":"Saved resource styles/search-worker.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/search-worker.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.4508233Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.19"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.eot that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.eot","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.4738266Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.21"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.svg that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.svg","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.4848223Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.23"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.ttf that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.ttf","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.5008213Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.25"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.woff that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.woff","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.5108265Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.27"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.woff2 that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.woff2","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.5188377Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.29"}
{"message":"Saved resource favicon.ico that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\favicon.ico","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.5278855Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.31"}
{"message":"Saved resource logo.svg that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\logo.svg","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.5288223Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.33"}
{"message":"Saved resource search-stopwords.json that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\search-stopwords.json","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.5308204Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.35"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates in 244.7168 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:04:14.6698271Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.14.59"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveExternalXRefSpec in 3.3708 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveExternalXRefSpec","date_time":"2020-09-21T12:04:14.6728271Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.15.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.GetUnloadedManifestItems.UpdateItems in 5.6278 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.GetUnloadedManifestItems.UpdateItems","date_time":"2020-09-21T12:04:14.6848288Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.16.1.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.GetUnloadedManifestItems in 8.1832 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency.GetUnloadedManifestItems","date_time":"2020-09-21T12:04:14.6848288Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.16.1.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency in 10.2666 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ProcessUnloadedTemplateDependency","date_time":"2020-09-21T12:04:14.6848288Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.16.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateManifest in 0.1507 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateManifest","date_time":"2020-09-21T12:04:14.6848288Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.17.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateFileMap in 1.2481 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateFileMap","date_time":"2020-09-21T12:04:14.6868383Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.18.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveContextInfo in 1.9403 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveContextInfo","date_time":"2020-09-21T12:04:14.6878258Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.20.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateXrefMap in 2.9995 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateXrefMap","date_time":"2020-09-21T12:04:14.6888252Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.19.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RelayBuildMessage in 0.057 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RelayBuildMessage","date_time":"2020-09-21T12:04:14.6888252Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.21.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental in 621.4471 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental","date_time":"2020-09-21T12:04:14.6888252Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.32.22"}
{"message":"Exporting xref map...","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T12:04:14.6968259Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.33"}
{"message":"XRef map exported.","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T12:04:14.7478237Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.34"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document in 1704.2034 milliseconds.","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T12:04:14.7478237Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.1.35"}
{"message":"Disposing processor ConceptualDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7478237Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.2"}
{"message":"Disposing build step BuildConceptualDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7523895Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.3"}
{"message":"Disposing build step CountWord ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7523895Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.4"}
{"message":"Disposing build step ValidateConceptualDocumentMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7523895Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.5"}
{"message":"Disposing processor ManagedReferenceDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7523895Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.6"}
{"message":"Disposing build step ApplyOverwriteDocumentForMref ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7523895Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.7"}
{"message":"Disposing build step BuildManagedReferenceDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.8"}
{"message":"Disposing build step FillReferenceInformation ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.9"}
{"message":"Disposing build step ValidateManagedReferenceDocumentMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.10"}
{"message":"Disposing processor ResourceDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.11"}
{"message":"Disposing build step ValidateResourceMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.12"}
{"message":"Disposing processor RestApiDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.13"}
{"message":"Disposing build step ApplyOverwriteDocumentForRestApi ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.14"}
{"message":"Disposing build step BuildRestApiDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.15"}
{"message":"Disposing build step ValidateRestApiDocumentMetadata ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.16"}
{"message":"Disposing processor TocDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.17"}
{"message":"Disposing build step BuildTocDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.18"}
{"message":"Disposing processor UniversalReferenceDocumentProcessor ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.19"}
{"message":"Disposing build step ApplyOverwriteDocumentForUref ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.20"}
{"message":"Disposing build step BuildUniversalReferenceDocument ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.21"}
{"message":"Disposing build step FillReferenceInformation ...","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.22"}
{"message":"Completed DisposeDocumentProcessors in 1.664 milliseconds.","source":"BuildCommand.BuildCore","date_time":"2020-09-21T12:04:14.7528215Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.182.23"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.RestoreIncrementalManifestItems in 0.1098 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.RestoreIncrementalManifestItems","date_time":"2020-09-21T12:04:14.7998238Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.1.1.1"}
{"message":"Set all incremental flags to false, since cannot support incremental post processing.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PreHandle","date_time":"2020-09-21T12:04:14.8028211Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.1.2.1"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PreHandle in 0.0717 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PreHandle","date_time":"2020-09-21T12:04:14.8028211Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.1.2.2"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing html in 67.7359 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing html","date_time":"2020-09-21T12:04:14.8718244Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.1.3.1.11"}
{"message":"Extracting index data from 2 html files","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing ExtractSearchIndex","date_time":"2020-09-21T12:04:14.875824Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.1.3.2.1"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing ExtractSearchIndex in 14.6976 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors.Processing ExtractSearchIndex","date_time":"2020-09-21T12:04:14.8868203Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.1.3.2.4"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors in 82.6413 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.HandlePostProcessors","date_time":"2020-09-21T12:04:14.8868203Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.1.3.3"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PostHandle in 0.003 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental.PostHandle","date_time":"2020-09-21T12:04:14.8878251Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.1.4.1"}
{"message":"Completed Scope:BuildCommand.Postprocess.HandlePostProcessorsWithIncremental in 91.2016 milliseconds.","source":"BuildCommand.Postprocess.HandlePostProcessorsWithIncremental","date_time":"2020-09-21T12:04:14.8878251Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.1.5"}
{"message":"Completed Process in 92.261 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T12:04:14.8878251Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.2"}
{"message":"Completed Dereference in 5.3075 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T12:04:14.893824Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.3"}
{"message":"Manifest file saved to manifest.json.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T12:04:14.9248266Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.4"}
{"message":"Completed SaveManifest in 31.2374 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T12:04:14.9248266Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.5"}
{"message":"Completed Cleanup in 96.4404 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T12:04:15.0208237Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.6"}
{"message":"Completed Scope:BuildCommand.Postprocess in 268.3143 milliseconds.","source":"BuildCommand.Postprocess","date_time":"2020-09-21T12:04:15.0208237Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.183.7"}
{"message":"Completed building documents in 2194.0451 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T12:04:15.0208237Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.184"}
{"message":"Disposing processor html ...","source":"BuildCommand","date_time":"2020-09-21T12:04:15.0228234Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.185"}
{"message":"Disposing processor ExtractSearchIndex ...","source":"BuildCommand","date_time":"2020-09-21T12:04:15.0228234Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.186"}
{"message":"Completed Scope:BuildCommand.Apply Theme in 0.0063 milliseconds.","source":"BuildCommand.Apply Theme","date_time":"2020-09-21T12:04:15.0238249Z","message_severity":"verbose","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.187.1"}
{"message":"Completed Scope:BuildCommand in 2359.2023 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T12:04:15.0238249Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.1.188"}
{"message":"Completed in 2363.4925 milliseconds","date_time":"2020-09-21T12:04:15.0238249Z","message_severity":"info","correlation_id":"AB0CC41A-35BE-45AF-AC58-6A9C14C83648.2"}
{"message":"Completed Scope:BuildCommand.ExportResourceFiles in 21.7683 milliseconds.","source":"BuildCommand.ExportResourceFiles","date_time":"2020-09-21T12:22:05.3698502Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.1.1"}
{"message":"Completed Scope:BuildCommand.LoadPluginAssemblies in 0.0092 milliseconds.","source":"BuildCommand.LoadPluginAssemblies","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.2.1"}
{"message":"Calculating template hash...","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.3"}
{"message":"New template resource info added, name: 'common.js', hash: 'RfTp0mVjze8Rjs5z4IBTwQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.5"}
{"message":"New template resource info added, name: 'conceptual.extension.js', hash: 'O5nj12Slly0x6dpA9niRzQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.7"}
{"message":"New template resource info added, name: 'conceptual.html.primary.js', hash: 'oSE84IyYym+Y5HQz7KLptg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.9"}
{"message":"New template resource info added, name: 'conceptual.html.primary.tmpl', hash: 'pskz9UmaNMfsivxwroiv6Q=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.11"}
{"message":"New template resource info added, name: 'favicon.ico', hash: 'Zj+bsW+9Mtt+JLxMwC+8mg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.13"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.eot', hash: '9Hafm9t0Zr5lCII5wSBG0Q=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.15"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.svg', hash: 'iYiWiBR711ddYycWDWTnYA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.17"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.ttf', hash: '4Yu/YR8qLkOvwHGqL04VEg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.19"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.woff', hash: '+idyMn9V2BmDAf24vPyBWA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.21"}
{"message":"New template resource info added, name: 'fonts/glyphicons-halflings-regular.woff2', hash: 'RIw0pW1pnCkRetxkxDr/6w=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.23"}
{"message":"New template resource info added, name: 'layout/_master.tmpl', hash: 'ef2C857v5Q5/MdVJbQ01ag=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.25"}
{"message":"New template resource info added, name: 'logo.svg', hash: 'A1k/f11plxhTlKy+YXcqoQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.27"}
{"message":"New template resource info added, name: 'ManagedReference.common.js', hash: 't9pLUU6jDyEUgYEdTaIesA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.29"}
{"message":"New template resource info added, name: 'ManagedReference.extension.js', hash: 'H2VgtKXPjKzKQIDsgqHUug=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.31"}
{"message":"New template resource info added, name: 'ManagedReference.html.primary.js', hash: 'RGtWEKN/XYjSWCvQHEnNFw=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.33"}
{"message":"New template resource info added, name: 'ManagedReference.html.primary.tmpl', hash: 'iG6CD8Q8W6wPp6ZaNhoU4A=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.35"}
{"message":"New template resource info added, name: 'partials/_affix.liquid', hash: 'a9gAku3KfoHOncnuFE8Byw=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.37"}
{"message":"New template resource info added, name: 'partials/_breadcrumb.liquid', hash: 'InV+FsvWrhlK7N7MdqUC+A=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.39"}
{"message":"New template resource info added, name: 'partials/_footer.liquid', hash: 'Bx51SCveXTF3w12OC22xrg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.41"}
{"message":"New template resource info added, name: 'partials/_head.liquid', hash: 'tqRwzbVxTuUax65tl0Hs3Q=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.43"}
{"message":"New template resource info added, name: 'partials/_logo.liquid', hash: 'gqHIuA9mVEKaaGutXTzqqg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.45"}
{"message":"New template resource info added, name: 'partials/_navbar.liquid', hash: '99J5j3CGzjrURAU6MUAKtg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.47"}
{"message":"New template resource info added, name: 'partials/_scripts.liquid', hash: 'wKIa3xcrkYeTuCpqrMMNBQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.49"}
{"message":"New template resource info added, name: 'partials/_toc.liquid', hash: 'UPIJGWUTvGdlie+af73FwQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.51"}
{"message":"New template resource info added, name: 'partials/affix.tmpl.partial', hash: 'fGvS/IV+h3Ava9gV5n1tqQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.53"}
{"message":"New template resource info added, name: 'partials/breadcrumb.tmpl.partial', hash: 'V4Y6qQcJmf+MxjqQRuEGvg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.55"}
{"message":"New template resource info added, name: 'partials/class.header.tmpl.partial', hash: 'esOQLZvN3zCiUbBoqN8Fdg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.57"}
{"message":"New template resource info added, name: 'partials/class.tmpl.partial', hash: 'ZYtQeoL3nU/L1Mg/4hjuPw=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.59"}
{"message":"New template resource info added, name: 'partials/classSubtitle.tmpl.partial', hash: 'H967odS6rCkHpPP97x0a4w=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.61"}
{"message":"New template resource info added, name: 'partials/customMREFContent.tmpl.partial', hash: 'uvGKW1UHs14T4MCS5J0OXQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.63"}
{"message":"New template resource info added, name: 'partials/dd-li.tmpl.partial', hash: 'kk63tvmyhioxAKRGCfqvHg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.65"}
{"message":"New template resource info added, name: 'partials/enum.tmpl.partial', hash: 'w9mJtXUtfF7aZqlCPW3GHw=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.67"}
{"message":"New template resource info added, name: 'partials/footer.tmpl.partial', hash: 'Sd/Tb9uMp0ewJQA94504NQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.69"}
{"message":"New template resource info added, name: 'partials/head.tmpl.partial', hash: 'wFKwouKz5s7IjIv2bAti3A=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.71"}
{"message":"New template resource info added, name: 'partials/li.tmpl.partial', hash: 'qPc+vLHMKdFhRcLwZ9ptOA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.73"}
{"message":"New template resource info added, name: 'partials/logo.tmpl.partial', hash: 'NhNYgx0k48wshh5ICcv4Tw=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.75"}
{"message":"New template resource info added, name: 'partials/namespace.tmpl.partial', hash: 'JkzmzRlaS6QlYhfybdSsUg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.77"}
{"message":"New template resource info added, name: 'partials/namespaceSubtitle.tmpl.partial', hash: '69TCqCNgQ2r5Jhy9z7zsZg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.79"}
{"message":"New template resource info added, name: 'partials/navbar.tmpl.partial', hash: 'IcTuAk5T6UUs7Fmx/FkKiQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.81"}
{"message":"New template resource info added, name: 'partials/rest.child.tmpl.partial', hash: 'UTM5BUkMwMSoqQoKqf9GCw=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.83"}
{"message":"New template resource info added, name: 'partials/rest.tmpl.partial', hash: 'aCdWQ9XAEvbHflgV7AwMEA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.85"}
{"message":"New template resource info added, name: 'partials/scripts.tmpl.partial', hash: 'NSqnUOeo2Z//asendoI8KA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.87"}
{"message":"New template resource info added, name: 'partials/searchResults.tmpl.partial', hash: 'mrefuYILH1k3a+GM98QKKQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.89"}
{"message":"New template resource info added, name: 'partials/title.tmpl.partial', hash: '6Jl0VXBqchGZMDyeZ40uow=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.91"}
{"message":"New template resource info added, name: 'partials/toc.tmpl.partial', hash: 'YEmahw2phxEPncXK6MfEdg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.93"}
{"message":"New template resource info added, name: 'partials/uref/class.header.tmpl.partial', hash: '+iyDBuLdn1W5N8pXE63FXA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.95"}
{"message":"New template resource info added, name: 'partials/uref/class.tmpl.partial', hash: 'sFxrgXutWBOa3/w3VC5kyQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4118512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.97"}
{"message":"New template resource info added, name: 'partials/uref/enum.tmpl.partial', hash: '7tB3xYThFiIHQj0Lpwm08A=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.99"}
{"message":"New template resource info added, name: 'partials/uref/inheritance.tmpl.partial', hash: 'kseJ5rWiFm3VHT+YsR/p1A=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.101"}
{"message":"New template resource info added, name: 'partials/uref/namespace.tmpl.partial', hash: '83hTuarhxksTHAWPVt/q4Q=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.103"}
{"message":"New template resource info added, name: 'partials/uref/parameters.tmpl.partial', hash: 'voCPngXb7yFCKUETMv+J3g=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.105"}
{"message":"New template resource info added, name: 'RestApi.common.js', hash: 'yYCZhXpgNQCAee5YD40jVg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.107"}
{"message":"New template resource info added, name: 'RestApi.extension.js', hash: 'F+keGApROKUywYjUHh3c/A=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.109"}
{"message":"New template resource info added, name: 'RestApi.html.primary.js', hash: 'wdeGWbl1nslCJtr9TfZwQw=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.111"}
{"message":"New template resource info added, name: 'RestApi.html.primary.tmpl', hash: '041dvUx7PfHZvopAyZmELg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.113"}
{"message":"New template resource info added, name: 'search-stopwords.json', hash: 'o2D8fALbHw66h/ZFgeFArQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.115"}
{"message":"New template resource info added, name: 'styles/docfx.css', hash: '4OnVA8wVWjmIlZWAOsTJBg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.117"}
{"message":"New template resource info added, name: 'styles/docfx.js', hash: 'd1DLfsIFpRMpimazqNDKZA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.119"}
{"message":"New template resource info added, name: 'styles/docfx.vendor.css', hash: 'Z8oQh5bahcfO2pcmLr7mug=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4128546Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.121"}
{"message":"New template resource info added, name: 'styles/docfx.vendor.js', hash: 'J3YyueOXLC5fd42mU7gqUQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4138556Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.123"}
{"message":"New template resource info added, name: 'styles/lunr.js', hash: '2k83A84Ag/gFDQDpAKrHsA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4138556Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.125"}
{"message":"New template resource info added, name: 'styles/lunr.min.js', hash: 'd0y5G2qqW0i3wXUig6kgiA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4138556Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.127"}
{"message":"New template resource info added, name: 'styles/main.css', hash: '1B2M2Y8AsgTpgAmY7PhCfg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4138556Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.129"}
{"message":"New template resource info added, name: 'styles/main.js', hash: '15t2k8P+3vbScB+YvWM5Xg=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4138556Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.131"}
{"message":"New template resource info added, name: 'styles/search-worker.js', hash: 'Xi8vLs85qxGX+h8zu3Pc6Q=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4138556Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.133"}
{"message":"New template resource info added, name: 'toc.extension.js', hash: 'hBeh5rc09pDO2LfrQCg6VQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4138556Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.135"}
{"message":"New template resource info added, name: 'toc.html.js', hash: '/QAnlSpPnyypF7HPjpvVog=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4138556Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.137"}
{"message":"New template resource info added, name: 'toc.html.tmpl', hash: 'gBiU4A9CbZEgljMNVAQTbQ=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4138556Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.139"}
{"message":"New template resource info added, name: 'token.json', hash: 'HXgYcCrW0Z9A2k4mYxgUrA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4138556Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.141"}
{"message":"New template resource info added, name: 'UniversalReference.common.js', hash: 'LQXPk/t9ULWBKDrrNrB6BA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4138556Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.143"}
{"message":"New template resource info added, name: 'UniversalReference.extension.js', hash: '9uqiQknaQygvJXmR2Sa5XA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4151951Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.145"}
{"message":"New template resource info added, name: 'UniversalReference.html.primary.js', hash: 'nI37V9d5Fump98ltOZO/Ow=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4151951Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.147"}
{"message":"New template resource info added, name: 'UniversalReference.html.primary.tmpl', hash: 'tAAZZy4MVr+324aDUELk3g=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4151951Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.149"}
{"message":"Template hash is '/2c/uUr8fi1jrpsfkCUl9A=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4158516Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.150"}
{"message":"Loading plug-in...","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4188578Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.151"}
{"message":"Completed Scope:BuildCommand.ImportPlugins in 69.5916 milliseconds.","source":"BuildCommand.ImportPlugins","date_time":"2020-09-21T12:22:05.485854Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.152.1"}
{"message":"6 plug-in(s) loaded.","source":"BuildCommand","date_time":"2020-09-21T12:22:05.485854Z","message_severity":"info","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.153"}
{"message":"\tConceptualDocumentProcessor with build steps (BuildConceptualDocument, CountWord, ValidateConceptualDocumentMetadata)","source":"BuildCommand","date_time":"2020-09-21T12:22:05.485854Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.154"}
{"message":"\tManagedReferenceDocumentProcessor with build steps (BuildManagedReferenceDocument, ValidateManagedReferenceDocumentMetadata, ApplyOverwriteDocumentForMref, FillReferenceInformation)","source":"BuildCommand","date_time":"2020-09-21T12:22:05.485854Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.155"}
{"message":"\tResourceDocumentProcessor with build steps (ValidateResourceMetadata)","source":"BuildCommand","date_time":"2020-09-21T12:22:05.485854Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.156"}
{"message":"\tRestApiDocumentProcessor with build steps (BuildRestApiDocument, ValidateRestApiDocumentMetadata, ApplyOverwriteDocumentForRestApi)","source":"BuildCommand","date_time":"2020-09-21T12:22:05.485854Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.157"}
{"message":"\tTocDocumentProcessor with build steps (BuildTocDocument)","source":"BuildCommand","date_time":"2020-09-21T12:22:05.485854Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.158"}
{"message":"\tUniversalReferenceDocumentProcessor with build steps (BuildUniversalReferenceDocument, ApplyOverwriteDocumentForUref, FillReferenceInformation)","source":"BuildCommand","date_time":"2020-09-21T12:22:05.485854Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.159"}
{"message":"Post processor ExtractSearchIndex loaded.","source":"BuildCommand","date_time":"2020-09-21T12:22:05.4928514Z","message_severity":"info","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.160"}
{"message":"No files are found with glob pattern images/**, excluding <none>, under directory \"C:\\Users\\ivanarj\\source\\repos\\tech\"","source":"BuildCommand","date_time":"2020-09-21T12:22:05.5398498Z","message_severity":"info","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.161"}
{"message":"Completed GenerateParameters in 49.0609 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T12:22:05.5488495Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.162"}
{"message":"Markdown engine is markdig","source":"BuildCommand","date_time":"2020-09-21T12:22:05.5608511Z","message_severity":"info","code":"MarkdownEngineName","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.163"}
{"message":"Completed GetMarkdownServiceProvider in 1.5066 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T12:22:05.5608511Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.164"}
{"message":"Completed LoadLastBuildInfo in 108.4293 milliseconds.","source":"BuildCommand","date_time":"2020-09-21T12:22:05.6888539Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.166"}
{"message":"Calculating plugin hash...","source":"BuildCommand","date_time":"2020-09-21T12:22:05.6908519Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.167"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ConceptualDocuments, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:22:05.691859Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.168"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.Engine, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:22:05.691859Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.169"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ManagedReference, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:22:05.691859Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.170"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.ResourceFiles, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:22:05.691859Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.171"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.RestApi, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:22:05.691859Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.172"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.SchemaDriven, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:22:05.691859Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.173"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.TableOfContents, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:22:05.691859Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.174"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.Build.UniversalReference, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:22:05.691859Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.175"}
{"message":"New assembly info added: 'Microsoft.DocAsCode.MarkdigEngine, Version=2.56.2.0, Culture=neutral, PublicKeyToken=null'. Detailed file version: '2.56.2.200727006'","source":"BuildCommand","date_time":"2020-09-21T12:22:05.691859Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.176"}
{"message":"Plugin hash is 'OJXcQLf3SwGg0oJJ4lixpA=='","source":"BuildCommand","date_time":"2020-09-21T12:22:05.691859Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.177"}
{"message":"Cannot support incremental post processors, because following post processors don't implement ISupportIncrementalPostProcessor interface: ExtractSearchIndex.","source":"BuildCommand","date_time":"2020-09-21T12:22:05.6948537Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.178"}
{"message":"Cannot support incremental post processing, the reason is: should not trace intermediate info.","source":"BuildCommand","date_time":"2020-09-21T12:22:05.6978498Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.179"}
{"message":"Completed Scope:BuildCommand.Prepare metadata in post processor html in 1.3594 milliseconds.","source":"BuildCommand.Prepare metadata in post processor html","date_time":"2020-09-21T12:22:05.7028526Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.180.1"}
{"message":"Completed Scope:BuildCommand.Prepare metadata in post processor ExtractSearchIndex in 0.1764 milliseconds.","source":"BuildCommand.Prepare metadata in post processor ExtractSearchIndex","date_time":"2020-09-21T12:22:05.7038571Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.181.1"}
{"message":"Max parallelism is 20.","source":"BuildCommand.BuildCore.Build Document","date_time":"2020-09-21T12:22:05.7138511Z","message_severity":"info","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateMarkdownService in 0.5672 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateMarkdownService","date_time":"2020-09-21T12:22:06.0048525Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.1.1"}
{"message":"Config content: {\"ExternalReferencePackages\":[],\"XRefMaps\":[\"embedded:docfx/langwordMapping.yml\"],\"XRefServiceUrls\":[],\"Metadata\":{\"_enableSearch\":true,\"_docfxVersion\":\"2.56.2.0\",\"_appTitle\":\"ERP.net Developer Docs\"},\"MarkdownEngineName\":\"markdig\",\"RootTocPath\":null,\"CustomLinkResolver\":null,\"FALName\":null,\"DisableGitFeatures\":false,\"OverwriteFragmentsRedirectionRules\":[]}|","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ComputeConfigHash","date_time":"2020-09-21T12:22:06.0308512Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.1.1"}
{"message":"FileMetadata content: {\"dict\":{}}","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ComputeFileMetadataHash","date_time":"2020-09-21T12:22:06.0328514Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.2.1"}
{"message":"Building the default group incrementally.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T12:22:06.0398496Z","message_severity":"verbose","code":"IsIncrementalBuild","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.3"}
{"message":"Same dependency type with name bookmark has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:22:06.0458496Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.4.1.1"}
{"message":"Same dependency type with name file has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:22:06.0468489Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.4.1.2"}
{"message":"Same dependency type with name overwrite has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:22:06.0468489Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.4.1.3"}
{"message":"Same dependency type with name uid has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:22:06.0468489Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.4.1.4"}
{"message":"Same dependency type with name overwriteFragments has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:22:06.0468489Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.4.1.5"}
{"message":"Same dependency type with name include has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:22:06.0468489Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.4.1.6"}
{"message":"Same dependency type with name metadata has already been registered, ignored.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast.RegisterDependencyTypeFromLastBuild","date_time":"2020-09-21T12:22:06.0468489Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.4.1.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast in 6.0892 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.ConstructDgFromLast","date_time":"2020-09-21T12:22:06.0468489Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.4.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.InitFileAttributes in 86.0438 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.InitFileAttributes","date_time":"2020-09-21T12:22:06.1342966Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.5.1"}
{"message":"Number of files in user-provided change list or detected by last modified time and/or HASH change is 15.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.LoadChanges","date_time":"2020-09-21T12:22:06.1482928Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.6.1"}
{"message":"Number of files in change list is updated to 15 to account for files with file metadata change.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext.LoadChanges","date_time":"2020-09-21T12:22:06.1492996Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.6.2"}
{"message":"Number of files in change list is updated to 15 after expanding dependency.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T12:22:06.1612966Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.10"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext in 154.631 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare.CreateIncrementalBuildContext","date_time":"2020-09-21T12:22:06.1612966Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.2.11"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Prepare in 158.9109 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Prepare","date_time":"2020-09-21T12:22:06.1633026Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.29.3"}
{"message":"Processor TocDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.","source":"BuildCommand.BuildCore.Build Document.Load.TocDocumentProcessor","date_time":"2020-09-21T12:22:06.2422948Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.30.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Load.TocDocumentProcessor in 362.6625 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Load.TocDocumentProcessor","date_time":"2020-09-21T12:22:06.6012947Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.30.1.9"}
{"message":"Processor ConceptualDocumentProcessor enable incremental build.","source":"BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor","file":"index.md","date_time":"2020-09-21T12:22:06.6072942Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.30.2.1"}
{"message":"Processor ConceptualDocumentProcessor (compile phase), total file count: 12, skipped file count: 2.","source":"BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor.ReportModelLoadInfo","date_time":"2020-09-21T12:22:06.6162945Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.30.2.28.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor in 15.3352 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Load.ConceptualDocumentProcessor","date_time":"2020-09-21T12:22:06.6162945Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.30.2.29"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.Load in 453.1746 milliseconds.","source":"BuildCommand.BuildCore.Build Document.Load","date_time":"2020-09-21T12:22:06.6172942Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.30.3"}
{"message":"Processor TocDocumentProcessor, step BuildTocDocument: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:22:06.6212922Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.1.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor in 1.7268 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:22:06.6212922Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.1.3"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:22:06.6212922Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.2.1"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:22:06.6212922Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.2.3"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Registering DependencyType...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:22:06.6212922Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.2.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor in 0.2046 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterDependencyTypeFromProcessor","date_time":"2020-09-21T12:22:06.6212922Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.2.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ReportDependencyFromLastBuild in 2.0724 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ReportDependencyFromLastBuild","date_time":"2020-09-21T12:22:06.6372924Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.3.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.LoadPluginContextInfo in 1.4223 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.LoadPluginContextInfo","date_time":"2020-09-21T12:22:06.6392937Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.4.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterUnloadedTocRestructionsFromLastBuild in 0.0189 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.RegisterUnloadedTocRestructionsFromLastBuild","date_time":"2020-09-21T12:22:06.6402935Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.5.1"}
{"message":"Building 6 file(s) in TocDocumentProcessor(BuildTocDocument)...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:22:06.6452941Z","message_severity":"info","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.6.1"}
{"message":"Processor TocDocumentProcessor: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:22:06.6452941Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.6.2"}
{"message":"Building 10 file(s) in ConceptualDocumentProcessor(BuildConceptualDocument=>CountWord=>ValidateConceptualDocumentMetadata)...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:22:06.6452941Z","message_severity":"info","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.7.1"}
{"message":"Processor ConceptualDocumentProcessor: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:22:06.6452941Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.7.2"}
{"message":"Processor TocDocumentProcessor, step BuildTocDocument: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild","date_time":"2020-09-21T12:22:06.6462958Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.6.3.1"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T12:22:06.6472956Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.7.3.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.BuildConceptualDocument in 0.1232 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.BuildConceptualDocument","date_time":"2020-09-21T12:22:06.6472956Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.7.3.2.1"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T12:22:06.6472956Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.7.3.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.CountWord in 0.0084 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.CountWord","date_time":"2020-09-21T12:22:06.6472956Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.7.3.4.1"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Prebuilding...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T12:22:06.6472956Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.7.3.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.ValidateConceptualDocumentMetadata in 0.007 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild.ValidateConceptualDocumentMetadata","date_time":"2020-09-21T12:22:06.6472956Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.7.3.6.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild in 1.6156 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Prebuild","date_time":"2020-09-21T12:22:06.6472956Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.7.3.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor in 1.7401 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:22:06.6472956Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.7.4"}
{"message":"Processor TocDocumentProcessor, step BuildTocDocument: Reloading models...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild.BuildTocDocument","date_time":"2020-09-21T12:22:06.6812941Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.6.3.2.19"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild.BuildTocDocument in 35.4585 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild.BuildTocDocument","date_time":"2020-09-21T12:22:06.6822972Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.6.3.2.20"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild in 36.8022 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Prebuild","date_time":"2020-09-21T12:22:06.6822972Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.6.3.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor in 37.1514 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:22:06.6822972Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.6.4"}
{"message":"Processor TocDocumentProcessor: Building...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:22:06.6832964Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.8.1"}
{"message":"Phase 'BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Build.BuildTocDocument' runs 6 times with average time of 76.3605833333333 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Build","date_time":"2020-09-21T12:22:06.7662942Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.8.2.19"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Build in 83.4834 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor.Build","date_time":"2020-09-21T12:22:06.7662942Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.8.2.20"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor in 83.5656 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:22:06.7662942Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.8.3"}
{"message":"Processor ConceptualDocumentProcessor: Building...","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:22:06.7662942Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.9.1"}
{"message":"Phase 'BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build.BuildConceptualDocument' runs 10 times with average time of 232.76072 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build","date_time":"2020-09-21T12:22:07.0002995Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.9.2.71"}
{"message":"Phase 'BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build.CountWord' runs 10 times with average time of 0.00951 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build","date_time":"2020-09-21T12:22:07.0002995Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.9.2.72"}
{"message":"Phase 'BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build.ValidateConceptualDocumentMetadata' runs 10 times with average time of 0.4287 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build","date_time":"2020-09-21T12:22:07.0002995Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.9.2.73"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build in 234.122 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor.Build","date_time":"2020-09-21T12:22:07.0002995Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.9.2.74"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor in 234.1695 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:22:07.0002995Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.9.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental in 514.9034 milliseconds.","source":"BuildCommand.BuildCore.Build Document.CompilePhaseHandlerWithIncremental","date_time":"2020-09-21T12:22:07.1332927Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.31.26"}
{"message":"Processor TocDocumentProcessor (link phase), total file count: 18, skipped file count: 12.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges","date_time":"2020-09-21T12:22:07.1392919Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.1.1"}
{"message":"Processor ConceptualDocumentProcessor (link phase), total file count: 18, skipped file count: 8.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges","date_time":"2020-09-21T12:22:07.1392919Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.1.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges in 4.4579 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ReloadModelsPerChanges","date_time":"2020-09-21T12:22:07.1392919Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.1.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedXRefSpec in 1.8697 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedXRefSpec","date_time":"2020-09-21T12:22:07.1412932Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedFileMap in 1.7405 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.RegisterUnloadedFileMap","date_time":"2020-09-21T12:22:07.1412932Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.4.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.LoadExternalXRefSpec in 2.432 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.LoadExternalXRefSpec","date_time":"2020-09-21T12:22:07.1422933Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.3.1"}
{"message":"Processor TocDocumentProcessor: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:22:07.1435344Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.5.1"}
{"message":"Processor TocDocumentProcessor, step BuildTocDocument: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Postbuild","date_time":"2020-09-21T12:22:07.1444592Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.5.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Postbuild.BuildTocDocument in 0.0495 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Postbuild.BuildTocDocument","date_time":"2020-09-21T12:22:07.1452945Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.5.2.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Postbuild in 1.0698 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Postbuild","date_time":"2020-09-21T12:22:07.1452945Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.5.2.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor in 1.1427 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:22:07.1452945Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.5.3"}
{"message":"Processor ConceptualDocumentProcessor: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:22:07.1452945Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.6.1"}
{"message":"Processor ConceptualDocumentProcessor, step BuildConceptualDocument: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T12:22:07.1452945Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.6.2.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.BuildConceptualDocument in 0.0075 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.BuildConceptualDocument","date_time":"2020-09-21T12:22:07.1452945Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.6.2.2.1"}
{"message":"Processor ConceptualDocumentProcessor, step CountWord: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T12:22:07.1452945Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.6.2.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.CountWord in 3.1099 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.CountWord","date_time":"2020-09-21T12:22:07.1482965Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.6.2.4.1"}
{"message":"Processor ConceptualDocumentProcessor, step ValidateConceptualDocumentMetadata: Postbuilding...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T12:22:07.1482965Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.6.2.5"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.ValidateConceptualDocumentMetadata in 0.0067 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild.ValidateConceptualDocumentMetadata","date_time":"2020-09-21T12:22:07.1482965Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.6.2.6.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild in 3.302 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Postbuild","date_time":"2020-09-21T12:22:07.1482965Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.6.2.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor in 3.3609 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:22:07.1482965Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.6.3"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Save in 11.7447 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor.Save","date_time":"2020-09-21T12:22:07.1622933Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.7.1.7"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor in 12.4023 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.TocDocumentProcessor","date_time":"2020-09-21T12:22:07.1622933Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.7.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Save in 7.831 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor.Save","date_time":"2020-09-21T12:22:07.170293Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.8.1.11"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor in 7.8959 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ConceptualDocumentProcessor","date_time":"2020-09-21T12:22:07.170293Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.8.2"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext in 3.0343 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateContext","date_time":"2020-09-21T12:22:07.1752974Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.9.1"}
{"message":"Normalizing all the object to week type","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject","date_time":"2020-09-21T12:22:07.1763014Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.10.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject in 23.9014 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.NormalizeToObject","date_time":"2020-09-21T12:22:07.1992928Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.10.2"}
{"message":"Feeding options from template...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions","date_time":"2020-09-21T12:22:07.2003013Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.11.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions in 3.9653 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.FeedOptions","date_time":"2020-09-21T12:22:07.2032913Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.11.18"}
{"message":"Updating href...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref","date_time":"2020-09-21T12:22:07.2043811Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.12.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref in 19.7082 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.UpdateHref","date_time":"2020-09-21T12:22:07.2232934Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.12.18"}
{"message":"Applying system metadata to manifest...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata","date_time":"2020-09-21T12:22:07.2242941Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.13.1"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata in 32.326 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.ApplySystemMetadata","date_time":"2020-09-21T12:22:07.256294Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.13.60"}
{"message":"Applying templates to 16 model(s)...","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.2582931Z","message_severity":"info","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.1"}
{"message":"Saved resource styles/docfx.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.2642957Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.3"}
{"message":"Saved resource styles/docfx.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.2662948Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.5"}
{"message":"Saved resource styles/docfx.vendor.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.vendor.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.2672943Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.7"}
{"message":"Saved resource styles/docfx.vendor.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/docfx.vendor.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.2732985Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.9"}
{"message":"Saved resource styles/lunr.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/lunr.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.2742967Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.11"}
{"message":"Saved resource styles/lunr.min.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/lunr.min.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.2752968Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.13"}
{"message":"Saved resource styles/main.css that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/main.css","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.2763003Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.15"}
{"message":"Saved resource styles/main.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/main.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.2763003Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.17"}
{"message":"Saved resource styles/search-worker.js that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\styles/search-worker.js","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.2772992Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.19"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.eot that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.eot","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.2912929Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.21"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.svg that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.svg","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.3002959Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.23"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.ttf that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.ttf","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.3082988Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.25"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.woff that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.woff","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.3152958Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.27"}
{"message":"Saved resource fonts/glyphicons-halflings-regular.woff2 that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\fonts/glyphicons-halflings-regular.woff2","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.3242982Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.29"}
{"message":"Saved resource favicon.ico that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\favicon.ico","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.3292936Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.31"}
{"message":"Saved resource logo.svg that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\logo.svg","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.3312968Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.33"}
{"message":"Saved resource search-stopwords.json that template dependants on to C:\\Users\\ivanarj\\source\\repos\\tech\\docs\\search-stopwords.json","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.3322943Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.35"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates in 243.2595 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.Apply Templates","date_time":"2020-09-21T12:22:07.5022925Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.14.182"}
{"message":"Completed Scope:BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveExternalXRefSpec in 4.2665 milliseconds.","source":"BuildCommand.BuildCore.Build Document.LinkPhaseHandlerWithIncremental.SaveExternalXRefSpec","date_time":"2020-09-21T12:22:07.5062956Z","message_severity":"verbose","correlation_id":"F4DC6E91-E889-4B14-A3F7-D91090E94472.1.182.1.32.15.1"}