-
Notifications
You must be signed in to change notification settings - Fork 12
/
upgrade-assistant.clef
1668 lines (1668 loc) · 683 KB
/
upgrade-assistant.clef
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
{"@t":"2021-10-24T19:05:24.0422394Z","@mt":"Hosting starting","@l":"Debug","EventId":{"Id":1,"Name":"Starting"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2021-10-24T19:05:24.0665130Z","@mt":"Configuration loaded from context base directory: {BaseDirectory}","@l":"Debug","BaseDirectory":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleRunner"}
{"@t":"2021-10-24T19:05:24.0838173Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"NuGet","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\nuget","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:05:24.0858469Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Default","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\default","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:05:24.0863454Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"VB","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\vb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:05:24.0872247Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Web","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\web","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:05:24.0877473Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"MAUI","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\maui","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:05:24.0882231Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"windows","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:05:24.0896770Z","@mt":"Loaded {Count} extensions","Count":6,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:05:24.1105963Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1110202Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1118333Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1126821Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1130636Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions.Internal, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1143470Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1160873Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1169309Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1180210Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1189317Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1207152Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1217389Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1233921Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.ProjectModel, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1240052Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1247806Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1250784Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.ComponentModel, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1254513Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1265133Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1267455Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1270602Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1278030Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1281694Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1283277Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1321563Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1326255Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1327776Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1333666Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1337560Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1339175Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1344861Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1348926Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1352847Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1355880Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1357580Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1360170Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Configuration.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1363894Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options.ConfigurationExtensions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1370744Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1374717Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1376287Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1383091Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Source, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1387007Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1388485Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1394528Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1398563Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1400956Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1402615Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1406801Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1422169Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1425166Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1433690Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1438858Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Bcl.AsyncInterfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1459043Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1461038Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions.Internal, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1465629Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options.DataAnnotations, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1483738Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1490605Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1494899Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Bcl.AsyncInterfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1496923Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1533147Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.FileProviders.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1541841Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Text.Json, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1544295Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1547477Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.FileProviders.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1557415Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1563986Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1571085Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1572980Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1578088Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.Workspaces, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1584748Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.CodeFixes, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1591301Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.Workspaces, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1593151Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1594352Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1608831Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_VB2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1611933Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_VB2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1616784Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_VB2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1622434Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_VB2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1630238Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1633294Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1636942Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1639054Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1642954Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1649661Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1654035Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1656107Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1659638Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1666162Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.AspNetCore.Razor.Language, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1686105Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1688526Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1692752Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1700077Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"DiffPlex, Version=1.6.3.0, Culture=neutral, PublicKeyToken=1d35e91d1bd7bc0f","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1704450Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1713554Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_MAUI2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1716815Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_MAUI2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1720934Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_MAUI2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1726050Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_MAUI2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1727895Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_MAUI2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1731240Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.Workspaces, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_MAUI2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1743735Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_MAUI2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1752725Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_windows2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1755671Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_windows2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1758955Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_windows2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1761156Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_windows2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1764966Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Bcl.AsyncInterfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_windows2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1772887Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_windows2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1795017Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_windows2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1808909Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_MAUI2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1818397Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1861803Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.Workspaces, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1871425Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1886566Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_VB2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1899302Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1904630Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1936108Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1945248Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.Workspaces, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1947053Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1956802Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1958653Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1969457Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1990544Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.1999367Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.2005821Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.2007655Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.2011503Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.2342761Z","@mt":"Using Visual Studio v{VsVersion} [{VsPath}]","@l":"Debug","VsVersion":"16.11.31729.503","VsPath":"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.VisualStudioFinder"}
{"@t":"2021-10-24T19:05:24.5313014Z","@mt":"Using MSBuild from {Path}","Path":"C:\\Program Files\\dotnet\\sdk\\5.0.402\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2021-10-24T19:05:24.5325962Z","@mt":"Using Visual Studio install from {Path} [v{Version}]","Path":"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community","Version":16,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2021-10-24T19:05:24.7539622Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Credentials, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.7544381Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.7552896Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Configuration, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.7559349Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.7568390Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.7848424Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.9278336Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.9288047Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:24.9492415Z","@mt":"Generating context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2021-10-24T19:05:24.9866396Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.resources, Version=15.1.0.0, Culture=en-US, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2021-10-24T19:05:24.9920561Z","@mt":"Initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2021-10-24T19:05:26.0152062Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.Tasks.Core.resources, Version=15.1.0.0, Culture=en-US, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2021-10-24T19:05:26.0354151Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj' with message: C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:05:26.2044219Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\LISUnitTests\\LISUnitTests.csproj' with message: C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:05:26.2083631Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:05:26.4079946Z","@mt":"Done initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2021-10-24T19:05:26.4197243Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:26.4208979Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:26.4243178Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_windows2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:26.4308052Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Linq, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:26.5507972Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Linq.Async, Version=5.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263","Extension":"UA_windows2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:26.5556614Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Linq.Async, Version=5.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:26.5960606Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net5.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
{"@t":"2021-10-24T19:05:26.5999928Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net5.0-windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2021-10-24T19:05:26.6036012Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2021-10-24T19:05:27.3061357Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2021-10-24T19:05:27.3695039Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Nothing to do. None of the projects specified contain packages to restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2021-10-24T19:05:27.4853185Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj' with message: C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:05:27.5171787Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\LISUnitTests\\LISUnitTests.csproj' with message: C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:05:27.5175501Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:05:27.5743437Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:27.5754344Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:27.5771704Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:27.5792515Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:27.5805934Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:27.5821182Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.5852617Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Net.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.5879038Z","@mt":"Found package sources: {PackageSources}","@l":"Debug","PackageSources":["https://api.nuget.org/v3/index.json [https://api.nuget.org/v3/index.json]"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetPackageSourceFactory"}
{"@t":"2021-10-24T19:05:27.5889773Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.5892869Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Linq, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.5949242Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Concurrent, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.5972016Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.6277742Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.6311312Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Security.Cryptography.Algorithms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.6314610Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Security.Cryptography.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.6419294Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Net.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.6465391Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.IO.FileSystem, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.6478669Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.7447511Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Net.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.7453814Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Concurrent, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:27.7642178Z","@mt":"[NuGet] GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2021-10-24T19:05:28.2635847Z","@mt":"[NuGet] OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 494ms","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2021-10-24T19:05:28.3606477Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:28.3927463Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:28.3952159Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.3.246501","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2021-10-24T19:05:28.3999471Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:28.4019028Z","@mt":"[NuGet] GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.windows.compatibility/index.json","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2021-10-24T19:05:28.5239004Z","@mt":"[NuGet] OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.windows.compatibility/index.json 121ms","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2021-10-24T19:05:28.7283646Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:28.8129425Z","@mt":"Adding {PackageName} {Version}","PackageName":"Microsoft.Windows.Compatibility","Version":"5.0.2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.WindowsCompatReferenceAnalyzer"}
{"@t":"2021-10-24T19:05:28.8155574Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:28.8169477Z","@mt":"None of the tfms match packages from {PackageName}","@l":"Debug","PackageName":"System.Configuration.ConfigurationManager","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2021-10-24T19:05:28.8170280Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:28.8443137Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\LISUnitTests\\LISUnitTests.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2021-10-24T19:05:29.5617348Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2021-10-24T19:05:29.6673403Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Nothing to do. None of the projects specified contain packages to restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2021-10-24T19:05:29.7525285Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj' with message: C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:05:29.7773950Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\LISUnitTests\\LISUnitTests.csproj' with message: C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:05:29.7777486Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:05:29.8502631Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:29.8504697Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:29.8505343Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:29.8506037Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:29.8506431Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:29.8512201Z","@mt":"[NuGet] GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2021-10-24T19:05:29.9043209Z","@mt":"[NuGet] OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 53ms","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2021-10-24T19:05:29.9103358Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.3.246501","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2021-10-24T19:05:29.9133120Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:29.9133610Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:29.9134816Z","@mt":"None of the tfms match packages from {PackageName}","@l":"Debug","PackageName":"System.Configuration.ConfigurationManager","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2021-10-24T19:05:29.9135158Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2021-10-24T19:05:29.9271654Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Linq.Async, Version=5.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:29.9285251Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"UniversaLIS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2021-10-24T19:05:29.9447651Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.Common, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:29.9452309Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:30.4024725Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.CSharp, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:30.4029816Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.VisualBasic, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:30.4140569Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:30.4153598Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.VisualBasic, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:30.4159873Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.CSharp, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:30.4182637Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.CSharp, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_MAUI2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:31.3545709Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"UniversaLIS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2021-10-24T19:05:31.3573934Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"LISUnitTests","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2021-10-24T19:05:31.4673818Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"LISUnitTests","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2021-10-24T19:05:31.4725213Z","@mt":"Default font in Windows Forms has been changed from Microsoft Sans Serif to Seg Segoe UI, in order to change the default font use the API - Application.SetDefaultFont(Font font). For more details see here - https://devblogs.microsoft.com/dotnet/whats-new-in-windows-forms-in-net-6-0-preview-5/#application-wide-default-font","@l":"Warning","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsDefaultFontUpdater"}
{"@t":"2021-10-24T19:05:31.5824851Z","@mt":"Hosting started","@l":"Debug","EventId":{"Id":2,"Name":"Started"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2021-10-24T19:05:31.5855333Z","@mt":"Hosting stopping","@l":"Debug","EventId":{"Id":3,"Name":"Stopping"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2021-10-24T19:05:31.5859034Z","@mt":"Hosting stopped","@l":"Debug","EventId":{"Id":4,"Name":"Stopped"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2021-10-24T19:05:31.5899191Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_NuGet2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:31.5901193Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Default2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:31.5901573Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_VB2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:31.5901777Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Web2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:31.5901950Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_MAUI2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:05:31.5902117Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_windows2dc44513e47c4db6845cc20db65efc29","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.0045928Z","@mt":"Hosting starting","@l":"Debug","EventId":{"Id":1,"Name":"Starting"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2021-10-24T19:07:02.0488723Z","@mt":"Configuration loaded from context base directory: {BaseDirectory}","@l":"Debug","BaseDirectory":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleRunner"}
{"@t":"2021-10-24T19:07:02.0839679Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"NuGet","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\nuget","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:07:02.0849015Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Default","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\default","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:07:02.0856060Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"VB","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\vb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:07:02.0863762Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Web","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\web","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:07:02.0868329Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"MAUI","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\maui","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:07:02.0872445Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"windows","Location":"C:\\Users\\Roy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.246501\\upgrade-assistant\\0.3.246501\\tools\\net5.0\\any\\extensions\\windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:07:02.0892126Z","@mt":"Loaded {Count} extensions","Count":6,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2021-10-24T19:07:02.1070590Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1073487Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1080008Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1085558Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1087536Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions.Internal, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1094906Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1112846Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1118772Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1127358Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1134770Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1149544Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1157170Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1173348Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.ProjectModel, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1179903Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1187633Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1190431Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.ComponentModel, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1193410Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1203703Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1205869Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1208422Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1215205Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1219317Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1251267Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1256987Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1261195Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1262538Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1269302Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1276193Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1277541Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1282194Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1286055Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1288680Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1290616Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1291666Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1293314Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Configuration.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1295503Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options.ConfigurationExtensions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1300269Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1304242Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1305496Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1309917Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Source, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1313911Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1315211Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1319595Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1323539Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1325106Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1326172Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1329290Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1341898Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1345769Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1352170Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1356191Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Bcl.AsyncInterfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1370869Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1372782Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions.Internal, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1375957Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options.DataAnnotations, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1389795Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1395120Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1398248Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Bcl.AsyncInterfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1401625Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1434494Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.FileProviders.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1444276Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Text.Json, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1446357Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1448871Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.FileProviders.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1457588Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1463868Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1471445Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1475071Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1479621Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.Workspaces, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1485603Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.CodeFixes, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1492195Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.Workspaces, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1496325Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1497325Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1511047Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_VBfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1513838Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_VBfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1518882Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_VBfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1523929Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_VBfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1531584Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1534299Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1537483Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1541399Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1544828Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1550800Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1555314Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1557095Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1559752Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1565609Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.AspNetCore.Razor.Language, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1583861Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1588389Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1592320Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1604749Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"DiffPlex, Version=1.6.3.0, Culture=neutral, PublicKeyToken=1d35e91d1bd7bc0f","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1610593Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1619070Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_MAUIfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1622136Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_MAUIfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1625780Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_MAUIfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1630376Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_MAUIfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1634017Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_MAUIfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1637047Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.Workspaces, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_MAUIfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1647613Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_MAUIfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1656145Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_windowsfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1659316Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_windowsfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1662668Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_windowsfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1696132Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_windowsfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1699344Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Bcl.AsyncInterfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_windowsfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1706680Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_windowsfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1726385Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_windowsfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1738255Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_MAUIfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1746566Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1757038Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.Workspaces, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1770201Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1776223Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_VBfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1784311Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1788281Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1817287Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1825787Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.Workspaces, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1827440Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1836882Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1838519Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1848746Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1868274Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1876221Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1881915Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1883949Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.1887353Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Logging.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:02.2111158Z","@mt":"Using Visual Studio v{VsVersion} [{VsPath}]","@l":"Debug","VsVersion":"16.11.31729.503","VsPath":"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.VisualStudioFinder"}
{"@t":"2021-10-24T19:07:02.4224614Z","@mt":"Using MSBuild from {Path}","Path":"C:\\Program Files\\dotnet\\sdk\\5.0.402\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2021-10-24T19:07:02.4245176Z","@mt":"Using Visual Studio install from {Path} [v{Version}]","Path":"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community","Version":16,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2021-10-24T19:07:03.6330349Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Credentials, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:03.6336030Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:03.6344809Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Configuration, Version=6.0.0.165, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:03.6350413Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:03.6359410Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:03.8194862Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:03.9032177Z","@mt":"Loading {Name} with pdb from {Extension}","@l":"Debug","Name":"MSBuild.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:03.9041707Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:03.9045057Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:03.9131815Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:03.9140635Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.Options, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:03.9852742Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9854334Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9855042Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9855674Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9856322Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9856912Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9857568Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9858198Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9858794Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9859370Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9859958Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9860602Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9861229Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.VisualBasicProjectUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9861826Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor.RazorUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9862754Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9863151Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9863737Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9893030Z","@mt":"Finished ordering upgrade steps: {UpgradeStepList}","@l":"Debug","UpgradeStepList":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep, Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep, Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep, Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep, Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.VisualBasicProjectUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep, Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Razor.RazorUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2021-10-24T19:07:03.9938768Z","@mt":"Generating context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2021-10-24T19:07:04.0247210Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.resources, Version=15.1.0.0, Culture=en-US, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2021-10-24T19:07:04.0297179Z","@mt":"Initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2021-10-24T19:07:04.9273359Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.Tasks.Core.resources, Version=15.1.0.0, Culture=en-US, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2021-10-24T19:07:04.9467816Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj' with message: C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:07:05.1300530Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\LISUnitTests\\LISUnitTests.csproj' with message: C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:07:05.1345409Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:07:05.3702056Z","@mt":"Done initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2021-10-24T19:07:05.3864207Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Linq, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:05.5284495Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Linq.Async, Version=5.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263","Extension":"UA_NuGetfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:05.5701582Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2021-10-24T19:07:05.5750108Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Extensions.FileSystemGlobbing, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:05.5793856Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2021-10-24T19:07:05.5795510Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2021-10-24T19:07:05.5896599Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:05.5906116Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Linq.Async, Version=5.0.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:05.5909562Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.Bcl.AsyncInterfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:21.2954515Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep"}
{"@t":"2021-10-24T19:07:21.2982620Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.CodeAnalysis.Workspaces, Version=3.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:35.9406779Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2021-10-24T19:07:36.6795354Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2021-10-24T19:07:36.7419330Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Nothing to do. None of the projects specified contain packages to restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2021-10-24T19:07:36.8605680Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj' with message: C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:07:36.8965779Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\LISUnitTests\\LISUnitTests.csproj' with message: C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net5.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:07:36.8969349Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2021-10-24T19:07:36.9003367Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep"}
{"@t":"2021-10-24T19:07:40.8507530Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2021-10-24T19:07:40.9136406Z","@mt":"Setting only project in solution as the current project: {Project}","@l":"Debug","Project":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
{"@t":"2021-10-24T19:07:40.9152303Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2021-10-24T19:07:40.9153597Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2021-10-24T19:07:40.9197705Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:07:40.9200034Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:07:40.9200966Z","@mt":"Backup upgrade step initialized as incomplete; will backup to {BackupLocation}","@l":"Debug","BackupLocation":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:07:40.9201699Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2021-10-24T19:07:40.9202054Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2021-10-24T19:07:40.9288714Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_windowsfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:40.9316303Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_windowsfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:40.9341161Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:40.9368415Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Webfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:41.0552883Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:41.0565828Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.Common, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:41.0570055Z","@mt":"Loaded {Name} from default context instead of {Extension}","@l":"Debug","Name":"netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51","Extension":"UA_Defaultfb18fa139d664e2a98135f8f0fb65b54","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2021-10-24T19:07:59.1892399Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.5725948Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.5728117Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.5746702Z","@mt":"Backing up {ProjectDir} to {BackupPath}","ProjectDir":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS","BackupPath":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6059948Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.gitattributes","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.gitattributes","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6101645Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.gitignore","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.gitignore","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6134766Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\AnalysisReport.sarif","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\AnalysisReport.sarif","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6159746Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\App.config","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\App.config","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6207896Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\ClassDiagram1.cd","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\ClassDiagram1.cd","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6247317Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\CommFacilitator.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\CommFacilitator.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6281895Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\CommPort.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\CommPort.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6307687Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\Constants.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\Constants.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6330175Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\CountdownTimer.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\CountdownTimer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6351374Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\IdleState.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\IdleState.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6371226Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\ILISState.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\ILISState.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6390709Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\IMMULIS_1_TemporaryKey.pfx","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\IMMULIS_1_TemporaryKey.pfx","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6431875Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\internal.db","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\internal.db","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6457419Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\IPortAdapter.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\IPortAdapter.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6482730Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\LISCommState.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\LISCommState.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6515336Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\Message.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\Message.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6541868Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\Order.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\Order.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6564993Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages.config","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages.config","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6592778Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\Patient.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\Patient.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6615379Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\Program.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\Program.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6636737Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\ProjectInstaller.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\ProjectInstaller.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6662369Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\ProjectInstaller.Designer.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\ProjectInstaller.Designer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6706849Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\ProjectInstaller.resx","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\ProjectInstaller.resx","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6730193Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\Query.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\Query.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6754137Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\RcvWaitState.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\RcvWaitState.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6909834Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\README.md","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\README.md","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6945581Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\ReliableSerialPort.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\ReliableSerialPort.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.6975663Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\Result.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\Result.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7007915Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\TcpPort.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\TcpPort.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7033023Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\TransENQState.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\TransENQState.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7055690Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\TransWaitState.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\TransWaitState.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7080362Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\UniversaLIS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7113736Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.csproj.user","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\UniversaLIS.csproj.user","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7139343Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIS.sln","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\UniversaLIS.sln","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7167608Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIService.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\UniversaLIService.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7189958Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIService.Designer.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\UniversaLIService.Designer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7235340Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\UniversaLIService.resx","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\UniversaLIService.resx","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7238321Z","@mt":"Could not copy file {Path} due to '{Message}'","@l":"Warning","Path":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\upgrade-assistant.clef","Message":"The process cannot access the file 'C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\upgrade-assistant.clef' because it is being used by another process.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7261565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\upgrade-assistant.clef","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\upgrade-assistant.clef","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7291258Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\YamlSettings.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\YamlSettings.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7350225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\COMMIT_EDITMSG","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\COMMIT_EDITMSG","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7373972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\config","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\config","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7402608Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\description","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\description","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7446668Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\FETCH_HEAD","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\FETCH_HEAD","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7484160Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\gitk.cache","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\gitk.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7501266Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\HEAD","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\HEAD","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7522540Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\index","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\index","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7538316Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\ms-persist.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\ms-persist.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7558817Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\ORIG_HEAD","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\ORIG_HEAD","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7582153Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\packed-refs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\packed-refs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7621263Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\filter-repo\\already_ran","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\filter-repo\\already_ran","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7661295Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\filter-repo\\commit-map","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\filter-repo\\commit-map","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7708060Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\filter-repo\\ref-map","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\filter-repo\\ref-map","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7732923Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\filter-repo\\suboptimal-issues","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\filter-repo\\suboptimal-issues","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7781714Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\applypatch-msg.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\applypatch-msg.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7817676Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\commit-msg.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\commit-msg.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7874205Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\fsmonitor-watchman.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\fsmonitor-watchman.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7906122Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\post-update.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\post-update.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7939848Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\pre-applypatch.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\pre-applypatch.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.7976074Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\pre-commit.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\pre-commit.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8012508Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\pre-merge-commit.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\pre-merge-commit.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8046105Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\pre-push.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\pre-push.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8086394Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\pre-rebase.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\pre-rebase.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8125472Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\pre-receive.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\pre-receive.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8163402Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\prepare-commit-msg.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\prepare-commit-msg.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8213308Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\push-to-checkout.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\push-to-checkout.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8259389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\hooks\\update.sample","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\hooks\\update.sample","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8323133Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\info\\exclude","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\info\\exclude","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8366938Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\info\\refs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\info\\refs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8426107Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\logs\\HEAD","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\logs\\HEAD","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8576107Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\logs\\refs\\heads\\feature","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\logs\\refs\\heads\\feature","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8622038Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\logs\\refs\\heads\\master","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\logs\\refs\\heads\\master","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8662912Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\logs\\refs\\heads\\state-factor","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\logs\\refs\\heads\\state-factor","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8691139Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\logs\\refs\\heads\\state-refactor","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\logs\\refs\\heads\\state-refactor","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8731061Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\logs\\refs\\remotes\\origin\\add-comments","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\logs\\refs\\remotes\\origin\\add-comments","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8770113Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\logs\\refs\\remotes\\origin\\feature","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\logs\\refs\\remotes\\origin\\feature","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8810033Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\logs\\refs\\remotes\\origin\\master","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\logs\\refs\\remotes\\origin\\master","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8842045Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\logs\\refs\\remotes\\origin\\state-factor","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\logs\\refs\\remotes\\origin\\state-factor","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8885076Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\logs\\refs\\remotes\\origin\\state-refactor","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\logs\\refs\\remotes\\origin\\state-refactor","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8930498Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\02\\cac24c1dc7a326591046737d20554c08c77f88","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\02\\cac24c1dc7a326591046737d20554c08c77f88","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.8972163Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\03\\0965c3afa093a983defa9019f72506da1a964a","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\03\\0965c3afa093a983defa9019f72506da1a964a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9009545Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\04\\4332fcd75eba4a1c6470e562efbe3dbe442d81","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\04\\4332fcd75eba4a1c6470e562efbe3dbe442d81","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9030894Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\05\\15628847fbfd881c4dd777ffa8eeffa48ca52c","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\05\\15628847fbfd881c4dd777ffa8eeffa48ca52c","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9061550Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\05\\2dfb50bfb782b57fa80f6c41c1bd694fa0a599","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\05\\2dfb50bfb782b57fa80f6c41c1bd694fa0a599","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9092378Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\05\\444def804219897b574aea03cce7dee060ab3c","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\05\\444def804219897b574aea03cce7dee060ab3c","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9134489Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\06\\11e0745b5c37b492a39afecc8fd50691bf4b69","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\06\\11e0745b5c37b492a39afecc8fd50691bf4b69","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9166405Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\06\\bb60b9e25dcaa6ad2130df52114a85ffa259df","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\06\\bb60b9e25dcaa6ad2130df52114a85ffa259df","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9207738Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\08\\2e4d588e2748b2c3d567c8af1e00458fcf7768","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\08\\2e4d588e2748b2c3d567c8af1e00458fcf7768","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9238293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\09\\3bde815848a91c098e63eafca88ca95e3ba3e9","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\09\\3bde815848a91c098e63eafca88ca95e3ba3e9","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9263583Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\09\\b65f865abaa071c654a309f574bac123eb925f","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\09\\b65f865abaa071c654a309f574bac123eb925f","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9300987Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\0d\\ba42888187fb1fc864710d42ce130e52f21ba5","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\0d\\ba42888187fb1fc864710d42ce130e52f21ba5","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9329109Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\0d\\d50c57f60fb9535e152c73d69c17f10e126b03","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\0d\\d50c57f60fb9535e152c73d69c17f10e126b03","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9366121Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\0f\\0d28b414dcb5f36d8c49dcacbf9251d35bf32a","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\0f\\0d28b414dcb5f36d8c49dcacbf9251d35bf32a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9424086Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\10\\4de672350344b349ee8ce742b5c0e068b51573","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\10\\4de672350344b349ee8ce742b5c0e068b51573","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9446283Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\10\\aeb406aeab4dd86cc220b1b71a201781235445","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\10\\aeb406aeab4dd86cc220b1b71a201781235445","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9488311Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\10\\fb72a5f918c3ffc2d3fc2db1441e2fc011c31c","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\10\\fb72a5f918c3ffc2d3fc2db1441e2fc011c31c","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:06.9531955Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\13\\3c2e9cd05eadadf8a4edcda92eda0020b08fea","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\13\\3c2e9cd05eadadf8a4edcda92eda0020b08fea","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.0859685Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\14\\55564bb255b7fcd695cae13456aa265c1dd23b","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\14\\55564bb255b7fcd695cae13456aa265c1dd23b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.0908283Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\14\\c3dcdf419d46d6a63a18026adf940307773fe3","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\14\\c3dcdf419d46d6a63a18026adf940307773fe3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.0975315Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\16\\b4444f076caffb90b80d4a3dba7ba02c80bc80","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\16\\b4444f076caffb90b80d4a3dba7ba02c80bc80","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1008329Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\16\\f07e66e226be0aead72b35c281b24d8794d1d5","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\16\\f07e66e226be0aead72b35c281b24d8794d1d5","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1044941Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\17\\de7e132a754cbbe8b8db25dcacb90e590929e4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\17\\de7e132a754cbbe8b8db25dcacb90e590929e4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1088897Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\18\\4192e4ab7629f8fd1d02d9920d2f6228f42c39","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\18\\4192e4ab7629f8fd1d02d9920d2f6228f42c39","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1131485Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\19\\da2bcf513d1dbd959d7adb6e58a730ef71399e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\19\\da2bcf513d1dbd959d7adb6e58a730ef71399e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1174780Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\1d\\691ba9bd4f7c8bc30ffc3c9fc1f709a74c3193","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\1d\\691ba9bd4f7c8bc30ffc3c9fc1f709a74c3193","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1205254Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\1d\\cb0f6c9bdcde6939073a8569d12b49677406dd","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\1d\\cb0f6c9bdcde6939073a8569d12b49677406dd","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1236666Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\1e\\2add18f718edc2dc7a5e244089a75ee060b1cf","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\1e\\2add18f718edc2dc7a5e244089a75ee060b1cf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1280378Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\1f\\fa0f1b009807fd78cba81d8fac6189918866cb","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\1f\\fa0f1b009807fd78cba81d8fac6189918866cb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1325093Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\20\\23fd4b940da36acc489e4ca2b65def60618d4a","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\20\\23fd4b940da36acc489e4ca2b65def60618d4a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1364247Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\21\\092da91e710236ddf288081d3e01f73f6f11ef","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\21\\092da91e710236ddf288081d3e01f73f6f11ef","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1403839Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\22\\ba679c13bb437c8ff102001859f79fdb53b3c6","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\22\\ba679c13bb437c8ff102001859f79fdb53b3c6","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1441196Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\23\\0c04684f495bfab168a971cb191c0d606d3c38","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\23\\0c04684f495bfab168a971cb191c0d606d3c38","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1461888Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\24\\1eed0ea4ba8c295123bcd62f46669092d0d564","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\24\\1eed0ea4ba8c295123bcd62f46669092d0d564","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1489666Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\24\\88c84a39f190ac50a0b3269855e5a2b7035cb3","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\24\\88c84a39f190ac50a0b3269855e5a2b7035cb3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1524973Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\28\\c52d5360e1454af4d9fbfc653bfeef4890309a","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\28\\c52d5360e1454af4d9fbfc653bfeef4890309a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1591608Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\29\\75ded1c2b1fbf038d440f912677878d31287f7","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\29\\75ded1c2b1fbf038d440f912677878d31287f7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1607996Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\29\\9ffdeb240cee62b00534e77a86a39cd10265ed","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\29\\9ffdeb240cee62b00534e77a86a39cd10265ed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1655529Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\2a\\dd346d10826486896e2901461c5b2e1226e082","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\2a\\dd346d10826486896e2901461c5b2e1226e082","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1687126Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\2a\\f3386cd0d6e6887b764b47fb4405db98e4bda9","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\2a\\f3386cd0d6e6887b764b47fb4405db98e4bda9","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1717840Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\2b\\7b8823c4b3e2c55de9af7ed8a0dd4a036ccf83","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\2b\\7b8823c4b3e2c55de9af7ed8a0dd4a036ccf83","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1747728Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\2b\\bc95a1b0ab6640e4379dcb56c6c4a98a3d3635","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\2b\\bc95a1b0ab6640e4379dcb56c6c4a98a3d3635","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1784269Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\2c\\61d28a76bd3421a02ad9323a07ee5d0224d4c4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\2c\\61d28a76bd3421a02ad9323a07ee5d0224d4c4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1817928Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\2c\\b927dc1256f37b93779bb1036ca7c842d13ca8","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\2c\\b927dc1256f37b93779bb1036ca7c842d13ca8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1856749Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\2c\\f559d3bb6507e844ba08291a70e26f812d7562","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\2c\\f559d3bb6507e844ba08291a70e26f812d7562","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1892579Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\2d\\663c7b49fd3f4d6588670d868dc0d3700dd785","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\2d\\663c7b49fd3f4d6588670d868dc0d3700dd785","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1934527Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\2e\\726917219d8e7d84586d2152bd5058da47e207","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\2e\\726917219d8e7d84586d2152bd5058da47e207","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.1975755Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\33\\48118dd4a2b81f86d15a482ad25d6dcb30fab3","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\33\\48118dd4a2b81f86d15a482ad25d6dcb30fab3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2005608Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\33\\fa34928904b45a1c870827df8641cd5ce99eed","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\33\\fa34928904b45a1c870827df8641cd5ce99eed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2040488Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\34\\1722ec05e98f33192f1343b62128f8314a61fa","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\34\\1722ec05e98f33192f1343b62128f8314a61fa","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2076240Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\35\\72f2ec92ea299d08554a1d35541dd037a835b7","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\35\\72f2ec92ea299d08554a1d35541dd037a835b7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2106947Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\35\\9c003ba1d030ec9609398a3e286daebd25af0e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\35\\9c003ba1d030ec9609398a3e286daebd25af0e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2165610Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\36\\dadd156046350f87e110920b0030859258a5fa","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\36\\dadd156046350f87e110920b0030859258a5fa","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2206499Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\37\\5e625567e4e5d594a3d5e7dbeed7ca8eb535d4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\37\\5e625567e4e5d594a3d5e7dbeed7ca8eb535d4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2236296Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\37\\89a9e7eea30fb17458ccea7db8a109aa4d932e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\37\\89a9e7eea30fb17458ccea7db8a109aa4d932e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2273715Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\38\\6085adcbc3d836f3eb1fda7640d29eb617a696","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\38\\6085adcbc3d836f3eb1fda7640d29eb617a696","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2302809Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\38\\ccdd12c4114bb5f2aca34b7931dd4a52a3e538","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\38\\ccdd12c4114bb5f2aca34b7931dd4a52a3e538","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2331848Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\39\\7931d4c89fa3c74c00359e7d2d105fa809e390","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\39\\7931d4c89fa3c74c00359e7d2d105fa809e390","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2369306Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\3c\\4031a832bfec4b379a0d51d28c75e456fa7c23","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\3c\\4031a832bfec4b379a0d51d28c75e456fa7c23","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2418307Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\3d\\71d134852029b5a383983c12d2adc8161490d4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\3d\\71d134852029b5a383983c12d2adc8161490d4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2448990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\3d\\fdceda5f69c673d8085c4cf24a49507281a906","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\3d\\fdceda5f69c673d8085c4cf24a49507281a906","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2488760Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\3e\\d7d523e8bd00b367ba8742cc4fbabfa4ecd212","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\3e\\d7d523e8bd00b367ba8742cc4fbabfa4ecd212","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2542168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\3f\\97608ee532e96539a4fec214a9a1a40d24b330","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\3f\\97608ee532e96539a4fec214a9a1a40d24b330","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2565451Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\3f\\d5a85c67e95a4edcf5bc363417d358e59b146f","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\3f\\d5a85c67e95a4edcf5bc363417d358e59b146f","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2600490Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\40\\7203096d6eca6d5a7d5eb404a63dd36205e7c7","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\40\\7203096d6eca6d5a7d5eb404a63dd36205e7c7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2630626Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\40\\ea71bc71825a99a6fefe03f7331a41a1d69c0f","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\40\\ea71bc71825a99a6fefe03f7331a41a1d69c0f","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2665155Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\41\\b3b4fe0f88efd53acaef5e7c29a9c985d3abec","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\41\\b3b4fe0f88efd53acaef5e7c29a9c985d3abec","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2700402Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\41\\e9b105b317656d05730609a52174d3b12a8ea7","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\41\\e9b105b317656d05730609a52174d3b12a8ea7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2740122Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\42\\224a32ae25c448368edf07d3e1d42aa24138bf","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\42\\224a32ae25c448368edf07d3e1d42aa24138bf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2778735Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\45\\596e4d81d8e80aa8114761575bb1aae8c2287e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\45\\596e4d81d8e80aa8114761575bb1aae8c2287e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2822388Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\46\\959680aded33c76b9bee0cd5ae4e45102d35b4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\46\\959680aded33c76b9bee0cd5ae4e45102d35b4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2859196Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\48\\8431e6134bfacd8c639bd883adfb64787615a1","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\48\\8431e6134bfacd8c639bd883adfb64787615a1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2886599Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\48\\fba185d4c07b9b7efeebdf8b4ad0578a8b7635","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\48\\fba185d4c07b9b7efeebdf8b4ad0578a8b7635","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2922360Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\4b\\5a08b25a2af791625a6b2d2bf63c26c5490e96","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\4b\\5a08b25a2af791625a6b2d2bf63c26c5490e96","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2968627Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\4c\\1736d5ad68d67d90ac80f80f235a176d9e152e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\4c\\1736d5ad68d67d90ac80f80f235a176d9e152e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.2999896Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\4c\\92f5966f800f2aef518a75fa58a26bb2df67df","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\4c\\92f5966f800f2aef518a75fa58a26bb2df67df","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.3033642Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\4e\\79a856effb04a6cda50ef1fc258a1a32e47dfc","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\4e\\79a856effb04a6cda50ef1fc258a1a32e47dfc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.3069919Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\4f\\397bd8cc2c1c839c31cc17e16269d994b3c4b8","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\4f\\397bd8cc2c1c839c31cc17e16269d994b3c4b8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.3100032Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\4f\\d4fd69fa93763d39134a22554fc546e08ddc05","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\4f\\d4fd69fa93763d39134a22554fc546e08ddc05","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.3140043Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\50\\2eb3201a3cd47fa204aba38268316013992eb0","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\50\\2eb3201a3cd47fa204aba38268316013992eb0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.4658496Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\52\\9fb35a40aed34b05eceff38df35028d47520d5","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\52\\9fb35a40aed34b05eceff38df35028d47520d5","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.4706247Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\54\\18303b130b33dfbada75a8d4cd42906b73eaf4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\54\\18303b130b33dfbada75a8d4cd42906b73eaf4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.4747124Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\54\\a1bac7c793f31abe1f22291ab520b2bebdbf94","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\54\\a1bac7c793f31abe1f22291ab520b2bebdbf94","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.4787030Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\56\\599309cc529542c9996379bb1bed5a643edc49","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\56\\599309cc529542c9996379bb1bed5a643edc49","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.4829290Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\57\\d98a32136a17def448f48295311689dfd69961","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\57\\d98a32136a17def448f48295311689dfd69961","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.4877606Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\58\\4e4981c49b09f8f7c3aa64e93711fea046775e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\58\\4e4981c49b09f8f7c3aa64e93711fea046775e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.4913396Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\58\\a1f730ab03b5fc07f2a6d24a550e5279b475a3","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\58\\a1f730ab03b5fc07f2a6d24a550e5279b475a3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.4936127Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\5a\\6c3e8bcc58d44a1fa5976b55225d4d783c2167","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\5a\\6c3e8bcc58d44a1fa5976b55225d4d783c2167","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.4968017Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\5b\\008b97cb5cb6761aa380d88b3d0641009a88d7","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\5b\\008b97cb5cb6761aa380d88b3d0641009a88d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.4997075Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\5b\\7b8b9cc45506ddf4717b4ceb4b9644e20053d7","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\5b\\7b8b9cc45506ddf4717b4ceb4b9644e20053d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5043591Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\5c\\2adff70d0df6874ed6a8d1bac78d766a13d89c","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\5c\\2adff70d0df6874ed6a8d1bac78d766a13d89c","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5079594Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\5e\\14514c769cf264a602d57d3ec2de8d8430995d","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\5e\\14514c769cf264a602d57d3ec2de8d8430995d","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5127640Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\60\\560fc8bc167f0d6b8c94cd8cddd4a6230e1335","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\60\\560fc8bc167f0d6b8c94cd8cddd4a6230e1335","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5164893Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\61\\1471cfc2166236b425826979441103cdae5696","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\61\\1471cfc2166236b425826979441103cdae5696","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5211873Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\61\\a30a6878f0d8f7828f0575db0b3f2573267c0f","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\61\\a30a6878f0d8f7828f0575db0b3f2573267c0f","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5246899Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\63\\d650f396a702f8844bc1dfc14689e65fddb946","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\63\\d650f396a702f8844bc1dfc14689e65fddb946","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5300782Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\65\\a273377e9266fa6d8253a87c5c2367a6d7e4da","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\65\\a273377e9266fa6d8253a87c5c2367a6d7e4da","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5357980Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\66\\bd99c84d181cd5339f28c39038d8cec7878908","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\66\\bd99c84d181cd5339f28c39038d8cec7878908","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5390638Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\66\\c52cd567f4fb25fe7c9f4969e62130dde53648","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\66\\c52cd567f4fb25fe7c9f4969e62130dde53648","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5427777Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\67\\3a955ef6e4c79611d5d73f20217ac4bc930c69","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\67\\3a955ef6e4c79611d5d73f20217ac4bc930c69","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5458142Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\67\\5d2e06b60e4201afa0d8c5402d11181823ea94","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\67\\5d2e06b60e4201afa0d8c5402d11181823ea94","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5488878Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\67\\852ca1da672c4ebb592dd196b2a701202964bb","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\67\\852ca1da672c4ebb592dd196b2a701202964bb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5534570Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\68\\0851b9c46ac9e2df4569d1915d78a223261d83","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\68\\0851b9c46ac9e2df4569d1915d78a223261d83","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5570857Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\69\\36cd7397c9976b68c396bab524901dd4b8584e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\69\\36cd7397c9976b68c396bab524901dd4b8584e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5594073Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\69\\678a0d19c26964ed8e8cf66929ca2392abe0f0","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\69\\678a0d19c26964ed8e8cf66929ca2392abe0f0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5623568Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\6a\\1038570a4fb130e508191bc2193ca04adea545","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\6a\\1038570a4fb130e508191bc2193ca04adea545","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5659994Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\6b\\396b34b4c706680fa5d8cafe158cb90cc0f615","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\6b\\396b34b4c706680fa5d8cafe158cb90cc0f615","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5674378Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\6b\\fbb4161d8af135d40e74ab7da07730be3650a5","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\6b\\fbb4161d8af135d40e74ab7da07730be3650a5","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5695120Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\6d\\8095b888cd854fdb0b66fba4e0b164fd71e6ec","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\6d\\8095b888cd854fdb0b66fba4e0b164fd71e6ec","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5730653Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\6f\\6c9b6a2d6aa0c566fdf467291e3a21227560b7","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\6f\\6c9b6a2d6aa0c566fdf467291e3a21227560b7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5759911Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\6f\\74ab74562dc71eb08b2df1efc56a06e85e5810","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\6f\\74ab74562dc71eb08b2df1efc56a06e85e5810","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5795786Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\71\\9f6fc72d33d0070e5e9a68c107c99a3dcf6127","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\71\\9f6fc72d33d0070e5e9a68c107c99a3dcf6127","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5811104Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\71\\cd5bc7c4e5aea9933cedd758bb81d67f5e8ab0","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\71\\cd5bc7c4e5aea9933cedd758bb81d67f5e8ab0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5834852Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\72\\ff53b0c58733eba1c11327a300e9bdccfdabe9","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\72\\ff53b0c58733eba1c11327a300e9bdccfdabe9","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5870874Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\74\\48d8334607a1e9e5f80fcf46193d035bb4d48b","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\74\\48d8334607a1e9e5f80fcf46193d035bb4d48b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5898298Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\75\\642317f5b204f2711c625342642ccb0fb309bc","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\75\\642317f5b204f2711c625342642ccb0fb309bc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.5953126Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\76\\e7314a819ea34e9b7685314484f60f3c5715df","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\76\\e7314a819ea34e9b7685314484f60f3c5715df","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6011286Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\79\\11e771c1d28dc9f682da3ebd29c00ca0c3ffb7","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\79\\11e771c1d28dc9f682da3ebd29c00ca0c3ffb7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6056980Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\79\\80a66787c849cb1e63edacbcc653b1b4dcba42","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\79\\80a66787c849cb1e63edacbcc653b1b4dcba42","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6105562Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\7a\\06d3f7fa5aac14eb323d4a785654b6864a4773","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\7a\\06d3f7fa5aac14eb323d4a785654b6864a4773","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6143223Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\7a\\39f0be4d060946df2d1f0b6f99f51177e578e2","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\7a\\39f0be4d060946df2d1f0b6f99f51177e578e2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6185281Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\7a\\b677a0aa49a077f8cb98689d5cc6b227453122","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\7a\\b677a0aa49a077f8cb98689d5cc6b227453122","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6260293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\7b\\84d1912157f70f958730e514a9674492e98927","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\7b\\84d1912157f70f958730e514a9674492e98927","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6312535Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\7c\\613a3153b383c011b3b6ccdcd87ef18440f6d4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\7c\\613a3153b383c011b3b6ccdcd87ef18440f6d4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6368314Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\7d\\57c8b64e27e618d9dce536053762ec310cd2a6","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\7d\\57c8b64e27e618d9dce536053762ec310cd2a6","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6427970Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\7e\\58bf0d4ea871a1fffb9549b946af53806d8bcb","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\7e\\58bf0d4ea871a1fffb9549b946af53806d8bcb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6482425Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\7f\\891eafc44074e30eb1679cad36ec10414b5fa2","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\7f\\891eafc44074e30eb1679cad36ec10414b5fa2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6543119Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\80\\270a462b4e19ff4494b3c8ff6fa47b989eb138","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\80\\270a462b4e19ff4494b3c8ff6fa47b989eb138","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6597778Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\80\\3e9464b021342ea055038cafd05fe0571326fd","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\80\\3e9464b021342ea055038cafd05fe0571326fd","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6653631Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\81\\8e136cb23248a7f956f26fbd40269d9e37c5f7","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\81\\8e136cb23248a7f956f26fbd40269d9e37c5f7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6703674Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\81\\f98f62809e1541462b37cfbf4efc880eded227","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\81\\f98f62809e1541462b37cfbf4efc880eded227","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6756925Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\81\\fc2bdb33646c6d6c81ac8cbac82c12363d4c06","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\81\\fc2bdb33646c6d6c81ac8cbac82c12363d4c06","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6814882Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\82\\201922f481f00be391223d5212898da394fd58","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\82\\201922f481f00be391223d5212898da394fd58","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6877788Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\82\\ae823319f5d22079d2aa832d6bd08bb6b586b2","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\82\\ae823319f5d22079d2aa832d6bd08bb6b586b2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6926418Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\82\\b8a5e588887291f400ad74bf235e4a1a3f2ae1","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\82\\b8a5e588887291f400ad74bf235e4a1a3f2ae1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.6974179Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\83\\3b03cd188be72c50d979e0324bec160ac87f6b","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\83\\3b03cd188be72c50d979e0324bec160ac87f6b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.7065159Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\86\\b9a62bac3d6b85da338b361e674133dd6cabca","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\86\\b9a62bac3d6b85da338b361e674133dd6cabca","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.7188388Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\87\\80a3f9b4afb04fc640a6148457da7e1d932d0d","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\87\\80a3f9b4afb04fc640a6148457da7e1d932d0d","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8365697Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\87\\a226fac845b897d8a544beb597540a2c49f142","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\87\\a226fac845b897d8a544beb597540a2c49f142","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8412442Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\88\\54ade5039871bf0a95bc47989fbac1662f4986","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\88\\54ade5039871bf0a95bc47989fbac1662f4986","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8453504Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\88\\673cd7b19324c38792ae49bb8295f451a1cfa5","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\88\\673cd7b19324c38792ae49bb8295f451a1cfa5","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8499921Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\8a\\71eaee194c72dfdc20adc382494d1c2b05b5f0","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\8a\\71eaee194c72dfdc20adc382494d1c2b05b5f0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8536795Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\8a\\b2612769ddcec61eaf1787bd083931a14172bb","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\8a\\b2612769ddcec61eaf1787bd083931a14172bb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8565929Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\8b\\8dce367d297d263aed29ed143da95cb0e1b5c8","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\8b\\8dce367d297d263aed29ed143da95cb0e1b5c8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8616286Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\8d\\a5186dc1c1cbd32b950416babd4adead8612f4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\8d\\a5186dc1c1cbd32b950416babd4adead8612f4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8662886Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\8e\\a6651da57114c041bd497b452c1b478c998829","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\8e\\a6651da57114c041bd497b452c1b478c998829","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8710310Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\8f\\a9a549ea743a24e265966f3e36724053a16361","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\8f\\a9a549ea743a24e265966f3e36724053a16361","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8758350Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\90\\63427c19e1bdd758b75d700d4cd19b6b9b22bc","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\90\\63427c19e1bdd758b75d700d4cd19b6b9b22bc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8790975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\90\\fc6776fb91934090f4f98f297aa7adf639f811","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\90\\fc6776fb91934090f4f98f297aa7adf639f811","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8860259Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\92\\4f96ae7c4e53c107df839e12420fade3e42d6c","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\92\\4f96ae7c4e53c107df839e12420fade3e42d6c","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8918141Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\92\\560c0f6149e8627352856646ab969ff14bb58a","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\92\\560c0f6149e8627352856646ab969ff14bb58a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.8958634Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\95\\716bd45ec5e7eb933a6a8d94f028f5c28feecc","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\95\\716bd45ec5e7eb933a6a8d94f028f5c28feecc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9003365Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\96\\3afc3d8eb70acbeed4fef438aac761bb39f18a","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\96\\3afc3d8eb70acbeed4fef438aac761bb39f18a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9046075Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\96\\77ffd4726bc3cdf0d6e96a434f8a5458789571","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\96\\77ffd4726bc3cdf0d6e96a434f8a5458789571","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9084704Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\96\\c4eb5a1c72d27b285178c4f91b752dba398573","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\96\\c4eb5a1c72d27b285178c4f91b752dba398573","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9113144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\97\\6eec490e8280be6a0d648a997e810acfea02f5","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\97\\6eec490e8280be6a0d648a997e810acfea02f5","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9151931Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\9a\\650745fe31f9a5f9610f2368d8f5d811d04f37","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\9a\\650745fe31f9a5f9610f2368d8f5d811d04f37","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9181487Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\9a\\b564fd2162bef6119cac227fcb668e8f364810","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\9a\\b564fd2162bef6119cac227fcb668e8f364810","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9238500Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\9b\\360371e9916fe685839d587980aa438525f695","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\9b\\360371e9916fe685839d587980aa438525f695","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9300965Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\9b\\8dd4bdb29cef8dbb4b99a9419281d39672c20a","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\9b\\8dd4bdb29cef8dbb4b99a9419281d39672c20a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9356008Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\9c\\4a92be7829c8eda7d1966d6b630348450d350b","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\9c\\4a92be7829c8eda7d1966d6b630348450d350b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9399227Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\a0\\bc40aebce20ffc808942808a81acafbaadd3d4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\a0\\bc40aebce20ffc808942808a81acafbaadd3d4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9440089Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\a0\\c4808d1dec818de509dd2df27e5a330fb899bf","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\a0\\c4808d1dec818de509dd2df27e5a330fb899bf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9479998Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\a1\\5dd296bd94da3850da8cde80b14009aeeb5916","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\a1\\5dd296bd94da3850da8cde80b14009aeeb5916","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9530975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\a4\\9122ac146274ac54b70be590ee0230beaa176b","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\a4\\9122ac146274ac54b70be590ee0230beaa176b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9581780Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\a5\\c8ef874e0ace1eb9f47ece47a2d5aea5940b61","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\a5\\c8ef874e0ace1eb9f47ece47a2d5aea5940b61","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9631817Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\a6\\e9b10f33c44ce731049ee5146932d56c76aacd","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\a6\\e9b10f33c44ce731049ee5146932d56c76aacd","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9686539Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\a7\\ec86ed33892721c84aafd06d91e78eda2d8ce6","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\a7\\ec86ed33892721c84aafd06d91e78eda2d8ce6","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9730659Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\a9\\386baa89edd4c74a94ac8b8f40d493937f5c79","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\a9\\386baa89edd4c74a94ac8b8f40d493937f5c79","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9779581Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ab\\0be24db7cd2cdf8e20a09904340fa7964e8a02","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ab\\0be24db7cd2cdf8e20a09904340fa7964e8a02","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9820352Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ab\\5afa3ac726613e9ae12fed78cd22d4a43d568e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ab\\5afa3ac726613e9ae12fed78cd22d4a43d568e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9885580Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ac\\0a931d8181a6d5f31d7f01221b41c2105fc51b","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ac\\0a931d8181a6d5f31d7f01221b41c2105fc51b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9929057Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ac\\5d3a39ce4d5fcd64d15aba2171e042f72c9bf5","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ac\\5d3a39ce4d5fcd64d15aba2171e042f72c9bf5","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9968831Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ad\\64cc9427576c2124b4727f9951f16c1570701e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ad\\64cc9427576c2124b4727f9951f16c1570701e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:07.9990401Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ad\\e203e5691743f12faf545f53821a0d613077f1","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ad\\e203e5691743f12faf545f53821a0d613077f1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0031924Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\af\\19c965fee3cd49a72ffc23a78b7cf9cc0c8252","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\af\\19c965fee3cd49a72ffc23a78b7cf9cc0c8252","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0065565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\af\\a0de18c1415b87a02535f0ffad4c95e04f200c","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\af\\a0de18c1415b87a02535f0ffad4c95e04f200c","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0111479Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b0\\58485a1e790042eabec1d6bec7adf5ad24d5f5","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b0\\58485a1e790042eabec1d6bec7adf5ad24d5f5","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0145773Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b0\\afab9c2e151432a3ec86480da28ff8098413dd","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b0\\afab9c2e151432a3ec86480da28ff8098413dd","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0191803Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b0\\ce153e48d2334f6fd75c732a1c06dbfb5932d7","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b0\\ce153e48d2334f6fd75c732a1c06dbfb5932d7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0235470Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b1\\292c963e91761754ee9cd1aefd9315377bf3c9","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b1\\292c963e91761754ee9cd1aefd9315377bf3c9","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0271649Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b1\\ded5478c22d6a175db2ac92507d6a6f98211ff","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b1\\ded5478c22d6a175db2ac92507d6a6f98211ff","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0307466Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b2\\1a1c10148fd6a3f7b8eee4ff5e9d478bb4b7f9","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b2\\1a1c10148fd6a3f7b8eee4ff5e9d478bb4b7f9","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0360990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b3\\1df40a4ef3359fe449f812bc65c24b163a5194","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b3\\1df40a4ef3359fe449f812bc65c24b163a5194","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0411023Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b3\\64f8591126f29ea7dc938e8008eea3dce15785","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b3\\64f8591126f29ea7dc938e8008eea3dce15785","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0462002Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b4\\30904161a9286e69ed09a0c4738601d5bed3f1","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b4\\30904161a9286e69ed09a0c4738601d5bed3f1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0483970Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b4\\832e2cfcc745308524c8abb6400c8eb355ee14","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b4\\832e2cfcc745308524c8abb6400c8eb355ee14","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0523252Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b4\\c736e30176d44076a73107131691cb95143ea0","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b4\\c736e30176d44076a73107131691cb95143ea0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0560869Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b7\\0e6b02e61edcd5823825b02b9b0077dc99921c","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b7\\0e6b02e61edcd5823825b02b9b0077dc99921c","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0608659Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\b9\\aa613f250db77afdebcc45fcfa1d451f5776e2","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\b9\\aa613f250db77afdebcc45fcfa1d451f5776e2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0651897Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\bb\\4fd1ce824c2d8cee5b2c84405931439fd93114","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\bb\\4fd1ce824c2d8cee5b2c84405931439fd93114","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0683543Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\bb\\b9cfe890a9fd0f560ef772368c94450eb25aad","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\bb\\b9cfe890a9fd0f560ef772368c94450eb25aad","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0725535Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\bc\\60555ca6af114194be189dce6803853d0fb9ef","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\bc\\60555ca6af114194be189dce6803853d0fb9ef","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0764684Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\bc\\e22036385aa8f273eeece54cf2886203f5c9a2","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\bc\\e22036385aa8f273eeece54cf2886203f5c9a2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0810403Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\bd\\16a7d5391f03ab8de5b770d2999d7d30363135","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\bd\\16a7d5391f03ab8de5b770d2999d7d30363135","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0860399Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\bf\\6b5bdf63e9b988f36e275450fb2c4523164063","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\bf\\6b5bdf63e9b988f36e275450fb2c4523164063","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0897046Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\c2\\345d664b2693772f0cd23aa34cbb515e7bd624","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\c2\\345d664b2693772f0cd23aa34cbb515e7bd624","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0937687Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\c4\\056988f06fcafcb5aff85e26f5168a53076186","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\c4\\056988f06fcafcb5aff85e26f5168a53076186","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.0977243Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\c4\\a80dd43a63a0a9c5f9de853eee58b91ef508e7","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\c4\\a80dd43a63a0a9c5f9de853eee58b91ef508e7","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1018876Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\c4\\ef80607d869597ac4cafff156923d5c115887f","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\c4\\ef80607d869597ac4cafff156923d5c115887f","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1066168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\c6\\a463b4cf2079f6d8fd7a0fbf8286e6b8f0613b","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\c6\\a463b4cf2079f6d8fd7a0fbf8286e6b8f0613b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1114730Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ca\\b0adaefd5a9983b5c465e43ead53f7d0d89d3d","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ca\\b0adaefd5a9983b5c465e43ead53f7d0d89d3d","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1159587Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\cb\\6c39da413b2f14d8a9cf24df178048a71277d4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\cb\\6c39da413b2f14d8a9cf24df178048a71277d4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1194130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\cc\\47fee3236577668c2384b278d2da3ca1a9204e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\cc\\47fee3236577668c2384b278d2da3ca1a9204e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1227661Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\cc\\5668f681106ec3c980313d6af5c69b32d3c730","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\cc\\5668f681106ec3c980313d6af5c69b32d3c730","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1259376Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\cc\\ce3fcb1d0379dc0739ced9c336fe56a5f0df74","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\cc\\ce3fcb1d0379dc0739ced9c336fe56a5f0df74","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1309985Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\cd\\e48c74fd72b833db593d6483f57cc9e1107a3b","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\cd\\e48c74fd72b833db593d6483f57cc9e1107a3b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1342450Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ce\\33c417efbea2cfe4375f7fca688eb8757c0df2","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ce\\33c417efbea2cfe4375f7fca688eb8757c0df2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1381645Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ce\\95d5b0c5cd65e5c1a3b88806026ebff659305b","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ce\\95d5b0c5cd65e5c1a3b88806026ebff659305b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1465410Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\cf\\96559f68e1f46a8965310b485a48e7895a25fe","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\cf\\96559f68e1f46a8965310b485a48e7895a25fe","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1523636Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d1\\1dfead36a7dabc4c21a7aeb04348f7087c4418","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d1\\1dfead36a7dabc4c21a7aeb04348f7087c4418","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1574301Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d2\\067b720c4984f0ecf49d7b4ab7fd2a0b0d1b7f","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d2\\067b720c4984f0ecf49d7b4ab7fd2a0b0d1b7f","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1617377Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d2\\867efe8f5fdc9288b8fb31d5aa0d714cb9722e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d2\\867efe8f5fdc9288b8fb31d5aa0d714cb9722e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1700186Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d2\\b03a3f485a3a04eae83fce84337ab5f49669fb","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d2\\b03a3f485a3a04eae83fce84337ab5f49669fb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1779038Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d4\\b01b95b5b4435b8b5103053baf70cde2966695","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d4\\b01b95b5b4435b8b5103053baf70cde2966695","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1831594Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d7\\696e814ac8769d2296f59036740e25044729c3","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d7\\696e814ac8769d2296f59036740e25044729c3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1876873Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d7\\ac98e94cc603ac560a849b390ff71d9373731c","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d7\\ac98e94cc603ac560a849b390ff71d9373731c","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1933517Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d8\\27aa7a6db492b2b74a3dd2e9889d7fbbabd6ce","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d8\\27aa7a6db492b2b74a3dd2e9889d7fbbabd6ce","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.1974455Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d8\\cf80735e188a9fb16508c6fe048b2c7ec59e89","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d8\\cf80735e188a9fb16508c6fe048b2c7ec59e89","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2022364Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d8\\e99f9959809f38d2d67758497f9b428163f27c","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d8\\e99f9959809f38d2d67758497f9b428163f27c","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2068147Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d8\\f2fffeeeaae5f8624b84fc896c0528f6b8369b","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d8\\f2fffeeeaae5f8624b84fc896c0528f6b8369b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2129533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\d9\\7de71f8e96a7ee8f8806d1627b11e46a6bade4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\d9\\7de71f8e96a7ee8f8806d1627b11e46a6bade4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2179941Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\dc\\c330a982e33911331920cd726d1568781b08c1","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\dc\\c330a982e33911331920cd726d1568781b08c1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2243389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\df\\ec72f3b1aa406febe5e9c4ea621b6d56f1ed6f","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\df\\ec72f3b1aa406febe5e9c4ea621b6d56f1ed6f","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2306785Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\e0\\a13cb8abc47da163f6a7bebb51acab7a236a77","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\e0\\a13cb8abc47da163f6a7bebb51acab7a236a77","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2363944Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\e1\\1adbe22430a105775327183895fb1af76e2f6c","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\e1\\1adbe22430a105775327183895fb1af76e2f6c","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2409002Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\e2\\c8748e311209153ba1683c539a6e2dfc51fc3b","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\e2\\c8748e311209153ba1683c539a6e2dfc51fc3b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2453765Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\e2\\f1f10a43b91777b11bc3a00749680e2ab12d8e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\e2\\f1f10a43b91777b11bc3a00749680e2ab12d8e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2542179Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\e4\\4686f0b225ac339e95b64821f9665760a7a0e8","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\e4\\4686f0b225ac339e95b64821f9665760a7a0e8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2568443Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\e4\\8c52cfc93b29a3c4510fcc876520865322787e","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\e4\\8c52cfc93b29a3c4510fcc876520865322787e","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2619161Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\e6\\0c9961cd1f3c4c10b8d5e12d2d2d29b8f34487","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\e6\\0c9961cd1f3c4c10b8d5e12d2d2d29b8f34487","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2668249Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\e6\\411595b52aadbf61ca5c2fccd7ba42c0811568","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\e6\\411595b52aadbf61ca5c2fccd7ba42c0811568","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2721883Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\e7\\0d454f3d576c2ea03962a8c1f7f14e53102ca9","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\e7\\0d454f3d576c2ea03962a8c1f7f14e53102ca9","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2765010Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\e7\\e4c672f833959e1c24f91d9e610ce1c1188edd","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\e7\\e4c672f833959e1c24f91d9e610ce1c1188edd","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2819398Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\e9\\3d0c712b919a7166d651c34244983b3aa113a2","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\e9\\3d0c712b919a7166d651c34244983b3aa113a2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2871497Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ea\\3b378486ef676d366885a1c95f0483fc79b575","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ea\\3b378486ef676d366885a1c95f0483fc79b575","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2929106Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\eb\\3830648625b97f8137c6b818405c186f8ed512","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\eb\\3830648625b97f8137c6b818405c186f8ed512","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.2968911Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\eb\\8597d3d45420fc8db6186d87bae7d47d5003b6","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\eb\\8597d3d45420fc8db6186d87bae7d47d5003b6","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3028185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ec\\9ad5c5e6f35edcc13cdfd6f2e481a6b454b7de","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ec\\9ad5c5e6f35edcc13cdfd6f2e481a6b454b7de","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3082523Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ed\\0827a7d24305f5395ed9ff5dd6dc0a6d01d9dd","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ed\\0827a7d24305f5395ed9ff5dd6dc0a6d01d9dd","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3129709Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ee\\2174e2778cdd856a8c439873b36119a79bd2cb","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ee\\2174e2778cdd856a8c439873b36119a79bd2cb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3169632Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ee\\5673ec7c2b5b04a75274c4b1ac3ccbbd07b0f4","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ee\\5673ec7c2b5b04a75274c4b1ac3ccbbd07b0f4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3209607Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ee\\771c0e64c4a5c950afc39007f80fb1553c4146","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ee\\771c0e64c4a5c950afc39007f80fb1553c4146","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3254140Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ee\\d648a124e71daded10584e6c9c29647c9ff235","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ee\\d648a124e71daded10584e6c9c29647c9ff235","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3304388Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\ef\\62492cec777705b61e82aaee1cd2a62ac13003","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\ef\\62492cec777705b61e82aaee1cd2a62ac13003","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3345915Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f0\\918be988989ba26a5a3719533ddeb80cbb2076","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f0\\918be988989ba26a5a3719533ddeb80cbb2076","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3382623Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f0\\f439d4f480e8eee8bd453dad1adf5cec5fd1ed","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f0\\f439d4f480e8eee8bd453dad1adf5cec5fd1ed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3421916Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f2\\534cc0709bd1a8cd9002ae4ef3d850feadc396","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f2\\534cc0709bd1a8cd9002ae4ef3d850feadc396","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3468733Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f3\\012bf9983f1080959838e2b244401dee16694f","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f3\\012bf9983f1080959838e2b244401dee16694f","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3510106Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f3\\94aba378ec11ae9f7455c2b0f87b4cd8ab8946","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f3\\94aba378ec11ae9f7455c2b0f87b4cd8ab8946","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3561311Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f4\\36ddb1cce251ff6ae798159887948628793c91","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f4\\36ddb1cce251ff6ae798159887948628793c91","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3602449Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f4\\9995b03125ee8ac79a128310accf41f7306868","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f4\\9995b03125ee8ac79a128310accf41f7306868","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3651885Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f5\\64a6cb2a1d672dc37deea24a2365d6458c0be8","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f5\\64a6cb2a1d672dc37deea24a2365d6458c0be8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3702061Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f8\\6c964a6782060618520826e088727aa1f7a174","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f8\\6c964a6782060618520826e088727aa1f7a174","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3743414Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f8\\884c39566121ee1826a0741fa11e70002f35b8","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f8\\884c39566121ee1826a0741fa11e70002f35b8","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3788675Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f9\\0c45ce1e82b72b4c07886504ce5a8b7760a939","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f9\\0c45ce1e82b72b4c07886504ce5a8b7760a939","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3829824Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f9\\1f6fe6654909959bae89c2b5b7d13374ebda63","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f9\\1f6fe6654909959bae89c2b5b7d13374ebda63","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3872646Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\f9\\3173a9eed79b7cfc288e1f570d48ac034abb31","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\f9\\3173a9eed79b7cfc288e1f570d48ac034abb31","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3918761Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\fa\\3279267e8f8ab78140620be613bcd8ae5d7932","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\fa\\3279267e8f8ab78140620be613bcd8ae5d7932","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3956967Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\fa\\559a786d165872dd21094c03ad73e82a3a715d","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\fa\\559a786d165872dd21094c03ad73e82a3a715d","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.3999888Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\fb\\1ebf55be9e1a164cdbddca2551752b697ad473","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\fb\\1ebf55be9e1a164cdbddca2551752b697ad473","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4034684Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\fb\\377cbe98b98ae70c0155c6045f22a61901b1e9","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\fb\\377cbe98b98ae70c0155c6045f22a61901b1e9","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4074638Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\fb\\b67bc4923e2c8a3adddc53921730e7a2da4027","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\fb\\b67bc4923e2c8a3adddc53921730e7a2da4027","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4123588Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\fe\\4a6edc70b784ecb767f399191ebc16ee2f6304","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\fe\\4a6edc70b784ecb767f399191ebc16ee2f6304","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4160150Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\fe\\c0bb187b96e6214db2f91ea9c85f9cd28f0431","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\fe\\c0bb187b96e6214db2f91ea9c85f9cd28f0431","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4207587Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\info\\commit-graph","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\info\\commit-graph","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4244212Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\info\\packs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\info\\packs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4273843Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\pack\\pack-ec3b95487223b2a5623845ade58c27091dcf0640.idx","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\pack\\pack-ec3b95487223b2a5623845ade58c27091dcf0640.idx","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4338926Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\objects\\pack\\pack-ec3b95487223b2a5623845ade58c27091dcf0640.pack","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\objects\\pack\\pack-ec3b95487223b2a5623845ade58c27091dcf0640.pack","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4369782Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\refs\\heads\\feature","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\refs\\heads\\feature","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4387183Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\refs\\heads\\master","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\refs\\heads\\master","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4404140Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\refs\\heads\\state-factor","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\refs\\heads\\state-factor","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4422147Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\refs\\heads\\state-refactor","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\refs\\heads\\state-refactor","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4448489Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\refs\\remotes\\origin\\add-comments","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\refs\\remotes\\origin\\add-comments","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4463459Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\refs\\remotes\\origin\\feature","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\refs\\remotes\\origin\\feature","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4477699Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\refs\\remotes\\origin\\master","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\refs\\remotes\\origin\\master","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4493105Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\refs\\remotes\\origin\\state-factor","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\refs\\remotes\\origin\\state-factor","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4509683Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.git\\refs\\remotes\\origin\\state-refactor","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.git\\refs\\remotes\\origin\\state-refactor","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4571174Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.vs\\UniversaLIS\\v16\\.suo","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.vs\\UniversaLIS\\v16\\.suo","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4634177Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.vs\\UniversaLIS\\v16\\TestStore\\0\\000.testlog","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.vs\\UniversaLIS\\v16\\TestStore\\0\\000.testlog","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4656352Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\.vs\\UniversaLIS\\v16\\TestStore\\0\\testlog.manifest","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\.vs\\UniversaLIS\\v16\\TestStore\\0\\testlog.manifest","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4855138Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\Microsoft.Data.Sqlite.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\Microsoft.Data.Sqlite.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.4967874Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\Microsoft.Data.Sqlite.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\Microsoft.Data.Sqlite.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5093824Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\SQLitePCLRaw.batteries_v2.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\SQLitePCLRaw.batteries_v2.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5232101Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\SQLitePCLRaw.core.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\SQLitePCLRaw.core.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5368621Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\SQLitePCLRaw.provider.dynamic_cdecl.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\SQLitePCLRaw.provider.dynamic_cdecl.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5497985Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\SQLitePCLRaw.provider.e_sqlite3.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\SQLitePCLRaw.provider.e_sqlite3.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5515058Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\System.Buffers.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\System.Buffers.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5555409Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\System.Buffers.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\System.Buffers.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5579754Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\System.Memory.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\System.Memory.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5620365Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\System.Memory.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\System.Memory.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5644102Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\System.Numerics.Vectors.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\System.Numerics.Vectors.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5707514Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\System.Numerics.Vectors.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\System.Numerics.Vectors.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5724021Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\System.Runtime.CompilerServices.Unsafe.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\System.Runtime.CompilerServices.Unsafe.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5770916Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\System.Runtime.CompilerServices.Unsafe.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\System.Runtime.CompilerServices.Unsafe.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.5809761Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\UniversaLIS.application","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\UniversaLIS.application","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.6140108Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\UniversaLIS.exe","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\UniversaLIS.exe","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.6183850Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\UniversaLIS.exe.config","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\UniversaLIS.exe.config","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.6228291Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\UniversaLIS.exe.manifest","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\UniversaLIS.exe.manifest","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.6284669Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\UniversaLIS.pdb","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\UniversaLIS.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.6469363Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\YamlDotNet.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\YamlDotNet.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.6589895Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\YamlDotNet.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\YamlDotNet.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.7222425Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\app.publish\\UniversaLIS.exe","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\app.publish\\UniversaLIS.exe","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.7292868Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\Properties\\config.yml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\Properties\\config.yml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.7486090Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\runtimes\\win-arm\\native\\e_sqlite3.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\runtimes\\win-arm\\native\\e_sqlite3.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.7820722Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\runtimes\\win-x64\\native\\e_sqlite3.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\runtimes\\win-x64\\native\\e_sqlite3.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.8346144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Debug\\runtimes\\win-x86\\native\\e_sqlite3.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Debug\\runtimes\\win-x86\\native\\e_sqlite3.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9073068Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Release\\IMMULIS.exe","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Release\\IMMULIS.exe","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9127778Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Release\\IMMULIS.exe.config","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Release\\IMMULIS.exe.config","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9171394Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\bin\\Release\\IMMULIS.InstallLog","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\bin\\Release\\IMMULIS.InstallLog","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9216004Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\.NETFramework,Version=v4.8.AssemblyAttributes.cs","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\.NETFramework,Version=v4.8.AssemblyAttributes.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9239456Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\DesignTimeResolveAssemblyReferences.cache","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\DesignTimeResolveAssemblyReferences.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9301170Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\DesignTimeResolveAssemblyReferencesInput.cache","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\DesignTimeResolveAssemblyReferencesInput.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9316810Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\IMMULIS.csproj.AssemblyReference.cache","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\IMMULIS.csproj.AssemblyReference.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9324269Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\IMMULIS.csproj.FileListAbsolute.txt","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\IMMULIS.csproj.FileListAbsolute.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9367415Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.application","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.application","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9392767Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.csproj.AssemblyReference.cache","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.csproj.AssemblyReference.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9402027Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.csproj.CopyComplete","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.csproj.CopyComplete","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9432325Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.csproj.CoreCompileInputs.cache","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.csproj.CoreCompileInputs.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9487229Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.csproj.FileListAbsolute.txt","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.csproj.FileListAbsolute.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9530714Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.csproj.GenerateResource.cache","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.csproj.GenerateResource.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9924198Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.exe","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.exe","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:08.9976091Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.exe.manifest","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.exe.manifest","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0032426Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.pdb","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0072540Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.ProjectInstaller.resources","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.ProjectInstaller.resources","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0109726Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.Properties.Resources.resources","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.Properties.Resources.resources","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0141267Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\UniversaLIS.ServiceMain.resources","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\UniversaLIS.ServiceMain.resources","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0274729Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\obj\\Debug\\TempPE\\Properties.Resources.Designer.cs.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\obj\\Debug\\TempPE\\Properties.Resources.Designer.cs.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0313713Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\Microsoft.Data.Sqlite.5.0.9\\.signature.p7s","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\Microsoft.Data.Sqlite.5.0.9\\.signature.p7s","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0333097Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\Microsoft.Data.Sqlite.5.0.9\\Icon.png","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\Microsoft.Data.Sqlite.5.0.9\\Icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0376675Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\Microsoft.Data.Sqlite.5.0.9\\Microsoft.Data.Sqlite.5.0.9.nupkg","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\Microsoft.Data.Sqlite.5.0.9\\Microsoft.Data.Sqlite.5.0.9.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0396328Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\Microsoft.Data.Sqlite.5.0.9\\lib\\netstandard2.0\\_._","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\Microsoft.Data.Sqlite.5.0.9\\lib\\netstandard2.0\\_._","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0427190Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\Microsoft.Data.Sqlite.Core.5.0.9\\.signature.p7s","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\Microsoft.Data.Sqlite.Core.5.0.9\\.signature.p7s","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0453332Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\Microsoft.Data.Sqlite.Core.5.0.9\\Icon.png","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\Microsoft.Data.Sqlite.Core.5.0.9\\Icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0515954Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\Microsoft.Data.Sqlite.Core.5.0.9\\Microsoft.Data.Sqlite.Core.5.0.9.nupkg","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\Microsoft.Data.Sqlite.Core.5.0.9\\Microsoft.Data.Sqlite.Core.5.0.9.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0638686Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\Microsoft.Data.Sqlite.Core.5.0.9\\lib\\netstandard2.0\\Microsoft.Data.Sqlite.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\Microsoft.Data.Sqlite.Core.5.0.9\\lib\\netstandard2.0\\Microsoft.Data.Sqlite.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0785419Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\Microsoft.Data.Sqlite.Core.5.0.9\\lib\\netstandard2.0\\Microsoft.Data.Sqlite.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\Microsoft.Data.Sqlite.Core.5.0.9\\lib\\netstandard2.0\\Microsoft.Data.Sqlite.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0824178Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\.signature.p7s","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\.signature.p7s","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0876042Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\LICENSE.txt","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\LICENSE.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0962435Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\MSTest.TestAdapter.2.1.2.nupkg","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\MSTest.TestAdapter.2.1.2.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.0998808Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\net45\\MSTest.TestAdapter.props","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\net45\\MSTest.TestAdapter.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.1016769Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\net45\\MSTest.TestAdapter.targets","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\net45\\MSTest.TestAdapter.targets","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.1211859Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\netcoreapp1.0\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\netcoreapp1.0\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.1259195Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\netcoreapp1.0\\MSTest.TestAdapter.props","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\netcoreapp1.0\\MSTest.TestAdapter.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.1442088Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\uap10.0\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\uap10.0\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.1476995Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\uap10.0\\MSTest.TestAdapter.props","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\uap10.0\\MSTest.TestAdapter.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.1518617Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\uap10.0\\MSTest.TestAdapter.targets","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\uap10.0\\MSTest.TestAdapter.targets","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.1558233Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.1585975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.1610848Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.1820087Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\Microsoft.VisualStudio.TestPlatform.TestFramework.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\Microsoft.VisualStudio.TestPlatform.TestFramework.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.2037706Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\cs\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\cs\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.2255747Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\cs\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\cs\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.2423301Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.2611151Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\de\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\de\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.2801189Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\de\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\de\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.2973325Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.3138772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\es\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\es\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.3330472Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\es\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\es\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.3533068Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.3709145Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\fr\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\fr\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.3926176Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\fr\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\fr\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.4116991Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.4370610Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\it\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\it\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.4588118Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\it\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\it\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.4748721Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.4895451Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ja\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ja\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.5029656Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ja\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ja\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.5162008Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.5298895Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ko\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ko\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.5428533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ko\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ko\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.5556870Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.5743355Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pl\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pl\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.5896219Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pl\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pl\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.6044199Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.6199909Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pt\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pt\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.6352083Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pt\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pt\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.6492038Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.6649299Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ru\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ru\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.6805810Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ru\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ru\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.6967254Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ru\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\ru\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.7238470Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\tr\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\tr\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.7386397Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\tr\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\tr\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.7518398Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\tr\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\tr\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.7650862Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.7782928Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.7913951Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8061763Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8197436Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8324875Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestAdapter.2.1.2\\build\\_common\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8356772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\.signature.p7s","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\.signature.p7s","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8398517Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\LICENSE.txt","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\LICENSE.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8517694Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\MSTest.TestFramework.2.1.2.nupkg","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\MSTest.TestFramework.2.1.2.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8605596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\Microsoft.VisualStudio.TestPlatform.TestFramework.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\Microsoft.VisualStudio.TestPlatform.TestFramework.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8618337Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8678715Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8798253Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\Microsoft.VisualStudio.TestPlatform.TestFramework.XML","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\Microsoft.VisualStudio.TestPlatform.TestFramework.XML","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8866497Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.8975224Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.9045663Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.9175717Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.9263582Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.9386832Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.9475712Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.9617162Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.9699289Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.9841492Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:09.9922485Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.0060764Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.0147027Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.0273859Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.0353301Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.0474796Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.0550745Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.0674431Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.0744461Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ru\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ru\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.0849157Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ru\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\ru\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.0914230Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\tr\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\tr\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.1025088Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\tr\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\tr\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.1088114Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.1190953Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.1263384Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.1358663Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\net45\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.1524476Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.1671911Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.1714472Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.1836754Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.XML","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.XML","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.1883538Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.1999225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2040975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2157041Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2203550Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2310270Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2346559Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2457231Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2499500Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2614612Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2660007Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2752396Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2790276Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2882907Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.2923524Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.3034727Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.3076300Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.3191876Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.3236963Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ru\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ru\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.3344430Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ru\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\ru\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.3397327Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\tr\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\tr\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.3536533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\tr\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\tr\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.3579015Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.3691380Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\zh-Hans\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.3738125Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.3862355Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\netstandard1.0\\zh-Hant\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.4045605Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.4248467Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.4296113Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.4450364Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.XML","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\Microsoft.VisualStudio.TestPlatform.TestFramework.XML","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.4503700Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.4653891Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\cs\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.4711322Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.4861724Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\de\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.4924029Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5068517Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\es\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5114125Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5257376Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\fr\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5301577Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5418378Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\it\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5467487Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5582164Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\ja\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5620355Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5721647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\ko\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5760890Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5861273Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\pl\\Microsoft.VisualStudio.TestPlatform.TestFramework.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2021-10-24T19:08:10.5902185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","DestinationFile":"C:\\Users\\Roy\\OneDrive - Auburn University\\Siemens\\IMMULITE\\IMMULIS.backup\\IMMULIS\\packages\\MSTest.TestFramework.2.1.2\\lib\\uap10.0\\pt\\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}