-
Notifications
You must be signed in to change notification settings - Fork 0
/
upgrade-assistant.clef
1040 lines (1040 loc) · 307 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":"2022-05-04T14:45:10.7452644Z","@mt":"Hosting starting","@l":"Debug","EventId":{"Id":1,"Name":"Starting"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2022-05-04T14:45:10.7766324Z","@mt":"Configuration loaded from context base directory: {BaseDirectory}","@l":"Debug","BaseDirectory":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleRunner"}
{"@t":"2022-05-04T14:45:10.8459400Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"NuGet","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\nuget","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:45:10.8473633Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Default","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\default","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:45:10.8479119Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"try-convert","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\try-convert","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:45:10.8484641Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"VB","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\vb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:45:10.8492593Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Web","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\web","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:45:10.8498111Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"windows","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:45:10.8514847Z","@mt":"Loaded {Count} extensions","Count":6,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:45:10.8824709Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9027208Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Commands, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9043817Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.DependencyResolver.Core, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9055279Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9071930Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9105825Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9134338Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9144245Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.ProjectModel, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9202881Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.LibraryModel, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9218844Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Configuration, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9271918Z","@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_Default3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9281637Z","@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_Default3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9290221Z","@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_Default3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9298868Z","@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_Default3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9306269Z","@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_Default3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9313917Z","@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_Default3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9442443Z","@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_Default3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9454859Z","@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_Default3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9486269Z","@mt":"Loading {Name} with pdb from {Extension}","@l":"Debug","Name":"MSBuild.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9581963Z","@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_Web3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9605068Z","@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_Web3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:10.9642379Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"DiffPlex, Version=1.6.3.0, Culture=neutral, PublicKeyToken=1d35e91d1bd7bc0f","Extension":"UA_Web3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:11.0389402Z","@mt":"Using Visual Studio v{VsVersion} [{VsPath}]","@l":"Debug","VsVersion":"17.1.32328.378","VsPath":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.VisualStudioFinder"}
{"@t":"2022-05-04T14:45:11.3352987Z","@mt":"Using MSBuild from {Path}","Path":"C:\\Program Files\\dotnet\\sdk\\6.0.202\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2022-05-04T14:45:11.3354838Z","@mt":"Using Visual Studio install from {Path} [v{Version}]","Path":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional","Version":17,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2022-05-04T14:45:11.5985163Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Credentials, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:11.8897098Z","@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":"2022-05-04T14:45:12.0840350Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0842177Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0843731Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0844525Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0845272Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0846020Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0846742Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0847449Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0848174Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0848872Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0849606Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0850335Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0851055Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.VisualBasicProjectUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0851851Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor.RazorUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0852546Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:45:12.0883211Z","@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.Steps.Packages.PackageUpdaterPreTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep, 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":"2022-05-04T14:45:12.0941202Z","@mt":"Generating context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-05-04T14:45:12.1076503Z","@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":"2022-05-04T14:45:12.1084834Z","@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":"2022-05-04T14:45:12.1392260Z","@mt":"Initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-05-04T14:45:13.3015787Z","@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":"2022-05-04T14:45:13.3380935Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\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\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net6.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net6.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":"2022-05-04T14:45:13.7359370Z","@mt":"Done initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-05-04T14:45:13.7671196Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:45:13.7701307Z","@mt":"Setting entrypoint to only project in solution: {Project}","Project":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep"}
{"@t":"2022-05-04T14:45:13.7708142Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:45:13.7862046Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:45:14.0893329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.0923289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0498acb9-f8ca-4001-8ad6-fc6938ac0902\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.1181701Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed","Extension":"UA_NuGet3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:14.1993500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0498acb9-f8ca-4001-8ad6-fc6938ac0902\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.2168832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.2605281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.3871844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4041911Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4633419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4635177Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0e7eabd3-ae67-4f0e-9a80-6102679a9e74\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4639822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0e7eabd3-ae67-4f0e-9a80-6102679a9e74\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4641529Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4642475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4646982Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4647734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4715454Z","@mt":"Setting only project in solution as the current project: {Project}","@l":"Debug","Project":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
{"@t":"2022-05-04T14:45:14.4789493Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4790598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\120cb7af-9198-4133-90bd-75489be43c23\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4794312Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\120cb7af-9198-4133-90bd-75489be43c23\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4795482Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4796505Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4799395Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4799931Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4868747Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4870438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bef23db9-35e0-4a31-a420-c235c2f279f7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4877169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bef23db9-35e0-4a31-a420-c235c2f279f7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4879198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4880616Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4887390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4888172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.4897177Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:45:14.4900075Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:45:14.4930828Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2022-05-04T14:45:14.4934435Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor.backup","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2022-05-04T14:45:14.4936712Z","@mt":"Backup upgrade step initialized as incomplete; will backup to {BackupLocation}","@l":"Debug","BackupLocation":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor.backup","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2022-05-04T14:45:14.4937285Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:45:14.4939935Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:45:14.5240093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5242345Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\14d03444-675d-4980-913a-d7b08565fcbc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5252981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\14d03444-675d-4980-913a-d7b08565fcbc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5256628Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5259569Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5267707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5269190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5385845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5387793Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\030b8a1a-89e2-48c8-9ae3-6dfe4d2746e4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5392307Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\030b8a1a-89e2-48c8-9ae3-6dfe4d2746e4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5393454Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5394225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5398045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5398912Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5502328Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5504284Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ad6e83d-606b-495c-a67b-ac099776c381\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5510568Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ad6e83d-606b-495c-a67b-ac099776c381\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5512784Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5514278Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5520386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5521409Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5663204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5666297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9089a58d-0f07-47ed-b122-64483319a603\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5670736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9089a58d-0f07-47ed-b122-64483319a603\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5671989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5672726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5676451Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5677115Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5790440Z","@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_Default3b0a192ee8a84d6886cc50f13ba24bc4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:45:14.5870708Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5872253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\34f03802-dc27-4084-987d-3a633272da3a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5876143Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\34f03802-dc27-4084-987d-3a633272da3a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5877479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5878803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5968091Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.5970800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6108199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6112650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\661b5802-13da-4298-80a1-971b1a8a0838\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6123327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\661b5802-13da-4298-80a1-971b1a8a0838\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6126419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6127518Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6132535Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6133700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6205619Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6206850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\760a2d3e-35c3-44ca-90e1-0c85abfd9f81\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6209992Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\760a2d3e-35c3-44ca-90e1-0c85abfd9f81\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6211021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6211582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6214042Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6214586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6295190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6296820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7fae454d-a713-4da4-ad8a-040c1a3d8e0b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6301136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7fae454d-a713-4da4-ad8a-040c1a3d8e0b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6302219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6302801Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6305450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6305999Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6361449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6362406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6c974f16-3d8e-49c8-91d2-877f75aca746\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6365819Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6c974f16-3d8e-49c8-91d2-877f75aca746\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6366892Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6367493Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6370156Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6370701Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6454927Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6456638Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\35b87ab7-4e53-48f1-9900-db71166287a5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6462022Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\35b87ab7-4e53-48f1-9900-db71166287a5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6463195Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6463834Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6467399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6468570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6530188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6531146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4fad9315-b421-4da9-b354-fa747bb637fb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6535713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4fad9315-b421-4da9-b354-fa747bb637fb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6537082Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6537651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6540093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:45:14.6540606Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:48.1595695Z","@mt":"Hosting starting","@l":"Debug","EventId":{"Id":1,"Name":"Starting"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2022-05-04T14:48:48.2143495Z","@mt":"Configuration loaded from context base directory: {BaseDirectory}","@l":"Debug","BaseDirectory":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleRunner"}
{"@t":"2022-05-04T14:48:48.2542710Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"NuGet","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\nuget","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:48:48.2551637Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Default","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\default","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:48:48.2556571Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"try-convert","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\try-convert","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:48:48.2562977Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"VB","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\vb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:48:48.2575947Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Web","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\web","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:48:48.2587469Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"windows","Location":"C:\\Users\\tim.cartwright.VGNET\\.dotnet\\tools\\.store\\upgrade-assistant\\0.3.310801\\upgrade-assistant\\0.3.310801\\tools\\net6.0\\any\\extensions\\windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:48:48.2622257Z","@mt":"Loaded {Count} extensions","Count":6,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2022-05-04T14:48:48.2849769Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3025779Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Commands, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3042914Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.DependencyResolver.Core, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3052942Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3070959Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3084863Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3124169Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3133694Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.ProjectModel, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3209066Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.LibraryModel, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3233193Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Configuration, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3266953Z","@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_Default59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3274206Z","@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_Default59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3281029Z","@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_Default59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3288227Z","@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_Default59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3295115Z","@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_Default59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3302317Z","@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_Default59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3416686Z","@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_Default59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3430577Z","@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_Default59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3460363Z","@mt":"Loading {Name} with pdb from {Extension}","@l":"Debug","Name":"MSBuild.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3546908Z","@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_Web59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3560345Z","@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_Web59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.3592510Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"DiffPlex, Version=1.6.3.0, Culture=neutral, PublicKeyToken=1d35e91d1bd7bc0f","Extension":"UA_Web59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:48.4096312Z","@mt":"Using Visual Studio v{VsVersion} [{VsPath}]","@l":"Debug","VsVersion":"17.1.32328.378","VsPath":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.VisualStudioFinder"}
{"@t":"2022-05-04T14:48:48.6624279Z","@mt":"Using MSBuild from {Path}","Path":"C:\\Program Files\\dotnet\\sdk\\6.0.202\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2022-05-04T14:48:48.6626027Z","@mt":"Using Visual Studio install from {Path} [v{Version}]","Path":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional","Version":17,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2022-05-04T14:48:49.7541986Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Credentials, Version=6.0.0.280, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:49.9995155Z","@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":"2022-05-04T14:48:50.1536895Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1538153Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1538940Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1539619Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1540342Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1540993Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1541638Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1542287Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1542938Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1543629Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1544294Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1544958Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1545607Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.VisualBasicProjectUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1546341Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor.RazorUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1546980Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
{"@t":"2022-05-04T14:48:50.1586661Z","@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.Steps.Packages.PackageUpdaterPreTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep, 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":"2022-05-04T14:48:50.1645740Z","@mt":"Generating context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-05-04T14:48:50.1781033Z","@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":"2022-05-04T14:48:50.1791946Z","@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":"2022-05-04T14:48:50.1989683Z","@mt":"Initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-05-04T14:48:51.2962523Z","@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":"2022-05-04T14:48:51.3225973Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\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\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net6.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net6.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":"2022-05-04T14:48:51.7273295Z","@mt":"Done initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2022-05-04T14:48:52.0703038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.0728656Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c0e428db-61e6-4467-8bd1-00033e71bfd2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.0979539Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:52.1833961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c0e428db-61e6-4467-8bd1-00033e71bfd2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.2016660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.2441434Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.3936619Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.4118343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.4967349Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:52.5015023Z","@mt":"Setting entrypoint to only project in solution: {Project}","Project":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep"}
{"@t":"2022-05-04T14:48:52.5029604Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:52.5164446Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:52.5422235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5425431Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\47f69d9d-b95b-496b-b9c4-2dbdb7792e5f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5442579Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\47f69d9d-b95b-496b-b9c4-2dbdb7792e5f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5457062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5460724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5480715Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5482329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5616001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5619963Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\76d85b2a-1191-460d-9a1c-cba386ffd8e8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5626393Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\76d85b2a-1191-460d-9a1c-cba386ffd8e8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5628047Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5628918Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5633516Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5634138Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5703361Z","@mt":"Setting only project in solution as the current project: {Project}","@l":"Debug","Project":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
{"@t":"2022-05-04T14:48:52.5763814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5765388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\832255ae-006a-4f5c-b6e6-e6157f6a788f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5769727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\832255ae-006a-4f5c-b6e6-e6157f6a788f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5770862Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5771531Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5776285Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5776947Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5988425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5990346Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d0a38a48-1a37-411b-931a-7f13fdb0ffe1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5995315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d0a38a48-1a37-411b-931a-7f13fdb0ffe1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5996520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5997172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.5999963Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6000570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6009912Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:52.6013460Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:52.6045416Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2022-05-04T14:48:52.6048185Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor.backup","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2022-05-04T14:48:52.6049115Z","@mt":"Backup upgrade step initalized as complete (backup skipped)","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
{"@t":"2022-05-04T14:48:52.6050928Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:52.6053354Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:52.6066470Z","@mt":"Project {ProjectPath} not yet converted","@l":"Debug","ProjectPath":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"}
{"@t":"2022-05-04T14:48:52.6150666Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6154020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0af8cc70-4638-46ca-8fc5-051f86cd7dcc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6159829Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0af8cc70-4638-46ca-8fc5-051f86cd7dcc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6162206Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6163227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6167729Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6168926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6178940Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:52.6180369Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:52.6296705Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"}
{"@t":"2022-05-04T14:48:52.6381704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6384318Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3188a023-05c0-4ce4-bff0-52bb5eed8033\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6391631Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3188a023-05c0-4ce4-bff0-52bb5eed8033\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6394093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6395400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6401460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6402637Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6433648Z","@mt":"Converting project file format with try-convert, version 0.3.310801+8aa571efd8bac422c95c35df9c7b9567ad534ad0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"}
{"@t":"2022-05-04T14:48:52.6450988Z","@mt":"Loading {Name} with pdb from {Extension}","@l":"Debug","Name":"MSBuild.Conversion.Project, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:52.6536192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6537698Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9620e7d9-836d-4fc5-bf8e-63a5b5643a32\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6542273Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9620e7d9-836d-4fc5-bf8e-63a5b5643a32\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6543386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6544008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6546601Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6547162Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:52.6847139Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2022-05-04T14:48:52.6912736Z","@mt":"Loading {Name} with pdb from {Extension}","@l":"Debug","Name":"MSBuild.Conversion.Facts, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:53.6610122Z","@mt":"Converting project {Path} to SDK style","Path":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertInProcessTool"}
{"@t":"2022-05-04T14:48:53.6692446Z","@mt":"Loading {Name} with pdb from {Extension}","@l":"Debug","Name":"MSBuild.Conversion.Package, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:48:54.8675429Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.202\\Microsoft.CSharp.CurrentVersion.targets: (130, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-05-04T14:48:54.9357451Z","@mt":"Project file converted successfully! The project may require additional changes to build successfully against the new .NET target.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"}
{"@t":"2022-05-04T14:48:54.9371107Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2022-05-04T14:48:56.2343338Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-05-04T14:48:56.7258093Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj (in 265 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-05-04T14:48:56.9684994Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.202\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.PackageDependencyResolution.targets: (267, 5): Error reading assets file: Error loading lock file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\obj\\project.assets.json' : Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-05-04T14:48:56.9685932Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.202\\Microsoft.CSharp.CurrentVersion.targets: (130, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-05-04T14:48:56.9959731Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"}
{"@t":"2022-05-04T14:48:56.9978252Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:56.9995797Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:57.0002912Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:57.4549588Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:57.4584258Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:57.4606552Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:57.4639770Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:57.4663466Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:57.4730648Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:57.4733195Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:57.4735697Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:57.4741054Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:57.5013378Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","PackagePath":"C:\\Users\\tim.cartwright.VGNET\\.nuget\\packages\\Microsoft.CSharp\\4.7.0\\Microsoft.CSharp.4.7.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:48:57.5932568Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.CSharp.4.7.0","TargetFrameworks":[".NETCore,Version=v5.0",".NETCoreApp,Version=v2.0",".NETFramework,Version=v4.5",".NETPortable,Version=v0.0,Profile=Profile259",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0","MonoAndroid,Version=v1.0","MonoTouch,Version=v1.0","UAP,Version=v10.0.16299","Windows,Version=v8.0","WindowsPhone,Version=v8.0","WindowsPhoneApp,Version=v8.1","Xamarin.iOS,Version=v1.0","Xamarin.Mac,Version=v2.0","Xamarin.TVOS,Version=v1.0","Xamarin.WatchOS,Version=v1.0",".NETStandard,Version=v1.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:48:57.5955963Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-05-04T14:48:57.5960651Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","PackagePath":"C:\\Users\\tim.cartwright.VGNET\\.nuget\\packages\\System.Data.DataSetExtensions\\4.5.0\\System.Data.DataSetExtensions.4.5.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:48:57.6016606Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions.4.5.0","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:48:57.6030292Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","TargetFramework":["net48"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-05-04T14:48:57.6031429Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:57.6041083Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:57.6053914Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:57.6063552Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:58.2905908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:48:58.5482524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 257ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:48:58.7645770Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs to be added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.3.310801","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2022-05-04T14:48:58.7723812Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:58.7727684Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:58.7733027Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:58.7734336Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:58.7745406Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:58.7761291Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.310801","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
{"@t":"2022-05-04T14:48:58.7766881Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:58.7768509Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:58.7790790Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
{"@t":"2022-05-04T14:48:59.0976054Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.202\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.PackageDependencyResolution.targets: (267, 5): Error reading assets file: Error loading lock file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\obj\\project.assets.json' : Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-05-04T14:48:59.0977009Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.202\\Microsoft.CSharp.CurrentVersion.targets: (130, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-05-04T14:48:59.1089867Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:59.1095731Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:59.2781098Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:59.2797161Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:59.2799580Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:59.2800680Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:59.2803934Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:59.2822593Z","@mt":"None of the tfms match packages from {PackageName}","@l":"Debug","PackageName":"System.Configuration.ConfigurationManager","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2022-05-04T14:48:59.2823288Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:59.2825069Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:59.2826976Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:48:59.2829748Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:48:59.2958961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:59.2960425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\218804b0-60d2-457c-ae2c-1d1bb4016c9d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:59.3029914Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\218804b0-60d2-457c-ae2c-1d1bb4016c9d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:59.3032675Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:59.7094438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:59.9307088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 221ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:48:59.9818541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/0.3.310801/microsoft.dotnet.upgradeassistant.extensions.default.analyzers.0.3.310801.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:00.1356922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/0.3.310801/microsoft.dotnet.upgradeassistant.extensions.default.analyzers.0.3.310801.nupkg 153ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:00.7868355Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:00.8134633Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers 0.3.310801","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:00.8284181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers 0.3.310801","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:00.9029664Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"System.Security.Cryptography.Pkcs, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:49:01.3384919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.3.310801 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.4531250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers 0.3.310801 from https://api.nuget.org/v3/index.json with content hash +rBuFxPhhB05/TdNoqEBFMvYPPubRzUBBXzEYT2WvQB4O7v5S0lk8SYVdbc7uOpAKYJPR2vtAVOlAY3KBih0LA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.5888955Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.5973959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.6225054Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:49:01.6227395Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:01.6228677Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:01.6231482Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:49:01.6405077Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.6407040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fd89f574-3cf9-49d4-ba1c-198cbbf38f0e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.6412613Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fd89f574-3cf9-49d4-ba1c-198cbbf38f0e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.6414183Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.6453920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.6854943Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.6856817Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.6909937Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:49:01.6914906Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:49:01.6921622Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
{"@t":"2022-05-04T14:49:01.6926094Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:01.6931362Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:01.7048556Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7052842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\927abf55-cb72-4e3b-8516-f204f280db0c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7059684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\927abf55-cb72-4e3b-8516-f204f280db0c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7062239Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7092887Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7222472Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7223826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7235353Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2022-05-04T14:49:01.7241961Z","@mt":"TFM needs updated to {TargetTFM}","TargetTFM":"net6.0-windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.SetTFMStep"}
{"@t":"2022-05-04T14:49:01.7243903Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:01.7244544Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:01.7245511Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.SetTFMStep"}
{"@t":"2022-05-04T14:49:01.7338469Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7339289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\060e52ab-f8f1-4a96-9f5e-4b6ab4aae0ee\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7343316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\060e52ab-f8f1-4a96-9f5e-4b6ab4aae0ee\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7344433Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7382537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v4.8...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7520737Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7522120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETFramework,Version=v4.8.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:01.7530997Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2022-05-04T14:49:01.7540313Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
{"@t":"2022-05-04T14:49:02.0273240Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.202\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets: (129, 5): The \"ResolveAppHosts\" task failed unexpectedly.\r\nSystem.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)\r\nFile name: 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'\r\n ---> System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'.\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromPath(IntPtr ptrNativeAssemblyLoadContext, String ilPath, String niPath, ObjectHandleOnStack retAssembly)\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyPath(String assemblyPath)\r\n at System.Reflection.Assembly.LoadFrom(String assemblyFile)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.<RegisterMSBuildPath>g__TryLoadAssembly|3(AssemblyName assemblyName)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.<RegisterMSBuildPath>b__2(AssemblyLoadContext _, AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(TextReader textReader)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(Stream stream)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(String filePath)\r\n at Microsoft.NET.Build.Tasks.RuntimeGraphCache.GetRuntimeGraph(String runtimeJsonPath)\r\n at Microsoft.NET.Build.Tasks.ResolveAppHosts.GetHostItem(String runtimeIdentifier, List`1 knownAppHostPacksForTargetFramework, List`1 packagesToDownload, String hostNameWithoutExtension, String itemName, Boolean isExecutable, Boolean errorIfNotFound)\r\n at Microsoft.NET.Build.Tasks.ResolveAppHosts.ExecuteCore()\r\n at Microsoft.NET.Build.Tasks.TaskBase.Execute()\r\n at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()\r\n at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-05-04T14:49:02.0410635Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
{"@t":"2022-05-04T14:49:03.2581570Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-05-04T14:49:03.9578132Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj (in 354 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
{"@t":"2022-05-04T14:49:04.1771201Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.202\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets: (129, 5): The \"ResolveAppHosts\" task failed unexpectedly.\r\nSystem.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)\r\nFile name: 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'\r\n ---> System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'.\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromPath(IntPtr ptrNativeAssemblyLoadContext, String ilPath, String niPath, ObjectHandleOnStack retAssembly)\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyPath(String assemblyPath)\r\n at System.Reflection.Assembly.LoadFrom(String assemblyFile)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.<RegisterMSBuildPath>g__TryLoadAssembly|3(AssemblyName assemblyName)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.<RegisterMSBuildPath>b__2(AssemblyLoadContext _, AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(TextReader textReader)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(Stream stream)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(String filePath)\r\n at Microsoft.NET.Build.Tasks.RuntimeGraphCache.GetRuntimeGraph(String runtimeJsonPath)\r\n at Microsoft.NET.Build.Tasks.ResolveAppHosts.GetHostItem(String runtimeIdentifier, List`1 knownAppHostPacksForTargetFramework, List`1 packagesToDownload, String hostNameWithoutExtension, String itemName, Boolean isExecutable, Boolean errorIfNotFound)\r\n at Microsoft.NET.Build.Tasks.ResolveAppHosts.ExecuteCore()\r\n at Microsoft.NET.Build.Tasks.TaskBase.Execute()\r\n at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()\r\n at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-05-04T14:49:04.1803919Z","@mt":"Updated TFM to {TargetTFM}","TargetTFM":"net6.0-windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.SetTFMStep"}
{"@t":"2022-05-04T14:49:04.1804934Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.SetTFMStep"}
{"@t":"2022-05-04T14:49:04.1809811Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.1810849Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.1811230Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.3417320Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.3422137Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.3424399Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.3424834Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.3426818Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.3430624Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.3435092Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.3436940Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.3445144Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.3449866Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","PackagePath":"C:\\Users\\tim.cartwright.VGNET\\.nuget\\packages\\Microsoft.CSharp\\4.7.0\\Microsoft.CSharp.4.7.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:49:04.3468036Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.CSharp.4.7.0","TargetFrameworks":[".NETCore,Version=v5.0",".NETCoreApp,Version=v2.0",".NETFramework,Version=v4.5",".NETPortable,Version=v0.0,Profile=Profile259",".NETStandard,Version=v1.3",".NETStandard,Version=v2.0","MonoAndroid,Version=v1.0","MonoTouch,Version=v1.0","UAP,Version=v10.0.16299","Windows,Version=v8.0","WindowsPhone,Version=v8.0","WindowsPhoneApp,Version=v8.1","Xamarin.iOS,Version=v1.0","Xamarin.Mac,Version=v2.0","Xamarin.TVOS,Version=v1.0","Xamarin.WatchOS,Version=v1.0",".NETStandard,Version=v1.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:49:04.3471513Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.CSharp, Version=4.7.0","TargetFramework":["net6.0-windows"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-05-04T14:49:04.3472788Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","PackagePath":"C:\\Users\\tim.cartwright.VGNET\\.nuget\\packages\\System.Data.DataSetExtensions\\4.5.0\\System.Data.DataSetExtensions.4.5.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:49:04.3477427Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions.4.5.0","TargetFrameworks":[".NETFramework,Version=v4.5",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:49:04.3479019Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.Data.DataSetExtensions, Version=4.5.0","TargetFramework":["net6.0-windows"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-05-04T14:49:04.3481171Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.310801","PackagePath":"C:\\Users\\tim.cartwright.VGNET\\.nuget\\packages\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers\\0.3.310801\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.3.310801.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:49:04.3485675Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.3.310801","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:49:04.3493134Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.3.310801","TargetFramework":["net6.0-windows"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2022-05-04T14:49:04.3493580Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.3495187Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.3495711Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.3499146Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.3499935Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}) already exists","@l":"Debug","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2022-05-04T14:49:04.3500235Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.3501540Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.3501907Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.3503377Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.3579667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:04.3580996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cb9339ef-010e-493f-b62c-857057fbde74\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:04.3587075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cb9339ef-010e-493f-b62c-857057fbde74\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:04.3588944Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:04.3621614Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:04.3762917Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:04.3764752Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:04.3795388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.windows.compatibility/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:49:04.7387371Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.windows.compatibility/index.json 359ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2022-05-04T14:49:04.9075559Z","@mt":"Adding {PackageName} {Version}","PackageName":"Microsoft.Windows.Compatibility","Version":"6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.WindowsCompatReferenceAnalyzer"}
{"@t":"2022-05-04T14:49:04.9079485Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.9080094Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.Windows.Compatibility'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.9082012Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.Windows.Compatibility'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.9082457Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:04.9083448Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.Windows.Compatibility'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.9085166Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.Windows.Compatibility, Version=6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
{"@t":"2022-05-04T14:49:04.9087363Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.Windows.Compatibility'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.9088141Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:04.9088822Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
{"@t":"2022-05-04T14:49:05.1016209Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj' with message: C:\\Program Files\\dotnet\\sdk\\6.0.202\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets: (129, 5): The \"ResolveAppHosts\" task failed unexpectedly.\r\nSystem.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'. Could not find or load a specific file. (0x80131621)\r\nFile name: 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'\r\n ---> System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed'.\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromPath(IntPtr ptrNativeAssemblyLoadContext, String ilPath, String niPath, ObjectHandleOnStack retAssembly)\r\n at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyPath(String assemblyPath)\r\n at System.Reflection.Assembly.LoadFrom(String assemblyFile)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.<RegisterMSBuildPath>g__TryLoadAssembly|3(AssemblyName assemblyName)\r\n at Microsoft.Build.Locator.MSBuildLocator.<>c__DisplayClass15_0.<RegisterMSBuildPath>b__2(AssemblyLoadContext _, AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.GetFirstResolvedAssemblyFromResolvingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingEvent(AssemblyName assemblyName)\r\n at System.Runtime.Loader.AssemblyLoadContext.ResolveUsingResolvingEvent(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(TextReader textReader)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(Stream stream)\r\n at NuGet.RuntimeModel.JsonRuntimeFormat.ReadRuntimeGraph(String filePath)\r\n at Microsoft.NET.Build.Tasks.RuntimeGraphCache.GetRuntimeGraph(String runtimeJsonPath)\r\n at Microsoft.NET.Build.Tasks.ResolveAppHosts.GetHostItem(String runtimeIdentifier, List`1 knownAppHostPacksForTargetFramework, List`1 packagesToDownload, String hostNameWithoutExtension, String itemName, Boolean isExecutable, Boolean errorIfNotFound)\r\n at Microsoft.NET.Build.Tasks.ResolveAppHosts.ExecuteCore()\r\n at Microsoft.NET.Build.Tasks.TaskBase.Execute()\r\n at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()\r\n at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2022-05-04T14:49:05.1040569Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:05.1045870Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:05.3901654Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:05.3908951Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2022-05-04T14:49:05.3911119Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:05.3915681Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:05.3917140Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:05.3920790Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:05.4039743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.4040723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cbd7e5e6-0e7f-40dd-a1e1-52ab320b80c6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.4045763Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cbd7e5e6-0e7f-40dd-a1e1-52ab320b80c6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.4047912Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.4156053Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.7949187Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/index.json 379ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.8054334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/6.0.0/microsoft.windows.compatibility.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.9610506Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/6.0.0/microsoft.windows.compatibility.6.0.0.nupkg 155ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.9793730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry.accesscontrol/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.9849133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.codedom/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.9865304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition.registration/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.9882762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.9918136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.odbc/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.9938714Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.oledb/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:05.9954757Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0005266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.performancecounter/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0024285Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices.accountmanagement/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0043244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices.protocols/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0062304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0103567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0125740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.management/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0148234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.reflection.context/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0191367Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.runtime.caching/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0337998Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.syndication/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0351172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.serviceprocess.servicecontroller/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0370575Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.speech/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0404606Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.threading.accesscontrol/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0460385Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0477519Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-x64.runtime.native.system.data.sqlclient.sni/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0501770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-x86.runtime.native.system.data.sqlclient.sni/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0642129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.0953340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.web.services.description/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.2151005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry.accesscontrol/index.json 235ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.2205395Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry.accesscontrol/6.0.0/microsoft.win32.registry.accesscontrol.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.3597590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition.registration/index.json 373ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.3646792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition.registration/6.0.0/system.componentmodel.composition.registration.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.3759925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition/index.json 387ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.3759926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.odbc/index.json 384ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.3854868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.odbc/6.0.0/system.data.odbc.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.3870598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition/6.0.0/system.componentmodel.composition.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.3894039Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/index.json 393ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.3894039Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.oledb/index.json 395ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.3966707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/6.0.0/system.diagnostics.eventlog.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.3983003Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.oledb/6.0.0/system.data.oledb.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4076482Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices/index.json 401ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4076481Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.codedom/index.json 422ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4102505Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.accountmanagement/index.json 407ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4163106Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices/6.0.0/system.directoryservices.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4192342Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.codedom/6.0.0/system.codedom.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4207093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.management/index.json 408ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4216000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices.accountmanagement/6.0.0/system.directoryservices.accountmanagement.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4250336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.io.ports/index.json 414ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4257818Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.management/6.0.0/system.management.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4267879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.performancecounter/index.json 426ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4294113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.io.ports/6.0.0/system.io.ports.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4310955Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.performancecounter/6.0.0/system.diagnostics.performancecounter.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4317636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.runtime.caching/index.json 412ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4322958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.reflection.context/index.json 417ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4364798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.runtime.caching/6.0.0/system.runtime.caching.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4381939Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.reflection.context/6.0.0/system.reflection.context.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4562349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.serviceprocess.servicecontroller/index.json 421ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4572312Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.speech/index.json 420ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4616389Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.speech/6.0.0/system.speech.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4626485Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.serviceprocess.servicecontroller/6.0.0/system.serviceprocess.servicecontroller.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4645855Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/index.json 418ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4645970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-x86.runtime.native.system.data.sqlclient.sni/index.json 414ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4656132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.web.services.description/index.json 370ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4697387Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4716291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.4730831Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.web.services.description/4.9.0/system.web.services.description.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.5079054Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.protocols/index.json 503ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.5098993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.syndication/index.json 475ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.5111278Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.threading.accesscontrol/index.json 470ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.5143264Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices.protocols/6.0.0/system.directoryservices.protocols.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.5162464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.syndication/6.0.0/system.servicemodel.syndication.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.5174415Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.threading.accesscontrol/6.0.0/system.threading.accesscontrol.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.5522771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/index.json 487ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.5523054Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-x64.runtime.native.system.data.sqlclient.sni/index.json 504ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.5565033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.5575355Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.5902076Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition.registration/6.0.0/system.componentmodel.composition.registration.6.0.0.nupkg 225ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.6568454Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.odbc/6.0.0/system.data.odbc.6.0.0.nupkg 271ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.6645452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg 192ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.6912176Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition/6.0.0/system.componentmodel.composition.6.0.0.nupkg 304ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.7549240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.codedom/6.0.0/system.codedom.6.0.0.nupkg 335ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.7713596Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.management/6.0.0/system.management.6.0.0.nupkg 345ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.8353145Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.io.ports/6.0.0/system.io.ports.6.0.0.nupkg 405ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.8368139Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg 366ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:06.9205199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices/6.0.0/system.directoryservices.6.0.0.nupkg 504ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:07.0044684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.oledb/6.0.0/system.data.oledb.6.0.0.nupkg 605ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:07.0059936Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.accountmanagement/6.0.0/system.directoryservices.accountmanagement.6.0.0.nupkg 584ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:07.1134020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.performancecounter/6.0.0/system.diagnostics.performancecounter.6.0.0.nupkg 682ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:07.1219609Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/6.0.0/system.diagnostics.eventlog.6.0.0.nupkg 725ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:07.3857922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg 829ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:07.4482508Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.runtime.caching/6.0.0/system.runtime.caching.6.0.0.nupkg 1011ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:07.6682375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.syndication/6.0.0/system.servicemodel.syndication.6.0.0.nupkg 1151ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:07.7953666Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.threading.accesscontrol/6.0.0/system.threading.accesscontrol.6.0.0.nupkg 1277ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:08.2512494Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg 1693ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:08.5729806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.web.services.description/4.9.0/system.web.services.description.4.9.0.nupkg 2099ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:09.0241219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.speech/6.0.0/system.speech.6.0.0.nupkg 2562ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:09.0361665Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.serviceprocess.servicecontroller/6.0.0/system.serviceprocess.servicecontroller.6.0.0.nupkg 2573ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:09.3560562Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.reflection.context/6.0.0/system.reflection.context.6.0.0.nupkg 2917ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:09.3578143Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry.accesscontrol/6.0.0/microsoft.win32.registry.accesscontrol.6.0.0.nupkg 3137ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:10.3390877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:10.6059816Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.ports/index.json 266ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:10.6113476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.ports/6.0.0/runtime.native.system.io.ports.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:10.6478452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.protocols/6.0.0/system.directoryservices.protocols.6.0.0.nupkg 4133ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:10.9192095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.ports/6.0.0/runtime.native.system.io.ports.6.0.0.nupkg 307ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:10.9297645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:10.9314476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:10.9329252Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:10.9341375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.osx-arm64.runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:10.9356589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.osx-x64.runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.1785169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.runtime.native.system.io.ports/index.json 248ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.1798171Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.runtime.native.system.io.ports/index.json 248ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.1841069Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.runtime.native.system.io.ports/6.0.0/runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.1854253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.runtime.native.system.io.ports/6.0.0/runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.1892503Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-arm64.runtime.native.system.io.ports/index.json 255ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.1892642Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-x64.runtime.native.system.io.ports/index.json 253ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.1973762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.osx-arm64.runtime.native.system.io.ports/6.0.0/runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.1987010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.osx-x64.runtime.native.system.io.ports/6.0.0/runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.2085689Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.runtime.native.system.io.ports/index.json 275ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.2137360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.runtime.native.system.io.ports/6.0.0/runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.2915068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-x64.runtime.native.system.io.ports/6.0.0/runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg 92ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.5899769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.runtime.native.system.io.ports/6.0.0/runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg 404ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.6803428Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-arm64.runtime.native.system.io.ports/6.0.0/runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg 482ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:11.7753191Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.runtime.native.system.io.ports/6.0.0/runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg 591ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:12.3366146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.runtime.native.system.io.ports/6.0.0/runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg 1122ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9243500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9341905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Numerics.Vectors 4.5.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9359200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Numerics.Vectors 4.5.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9432514Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win-x86.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9474149Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win-x86.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9515173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win-x64.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9526721Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win-x64.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9585878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win-arm64.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9608897Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win-arm64.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9653400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.osx-x64.runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9666510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.osx-x64.runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9704228Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.osx-arm64.runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9708688Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Numerics.Vectors.4.5.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9781751Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.osx-arm64.runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9837421Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.linux-x64.runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9849188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.linux-x64.runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:16.9910537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.osx-x64.runtime.native.System.IO.Ports.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0050449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.linux-arm64.runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0078158Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.osx-arm64.runtime.native.System.IO.Ports.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0082566Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.linux-arm64.runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0146284Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.linux-arm.runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0168624Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.linux-arm.runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0213487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.linux-x64.runtime.native.System.IO.Ports.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0232252Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0247635Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.native.System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0328605Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Web.Services.Description 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0342559Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Web.Services.Description 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0419446Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Threading.AccessControl 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0422094Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.linux-arm.runtime.native.System.IO.Ports.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0430633Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Threading.AccessControl 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0468909Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.linux-arm64.runtime.native.System.IO.Ports.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0521119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Speech 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0536707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Speech 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0600528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.native.System.IO.Ports.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0627396Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.osx-x64.runtime.native.System.IO.Ports 6.0.0 from https://api.nuget.org/v3/index.json with content hash /As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0658664Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Windows.Compatibility 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0660878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.osx-arm64.runtime.native.System.IO.Ports 6.0.0 from https://api.nuget.org/v3/index.json with content hash fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0664088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceProcess.ServiceController 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0667506Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Win32.Registry.AccessControl 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0672627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Web.Services.Description.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0682403Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Windows.Compatibility 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0710235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Win32.Registry.AccessControl 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0710339Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceProcess.ServiceController 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0873723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.Syndication 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.0916928Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.Syndication 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1045133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Runtime.Caching 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1052122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.linux-x64.runtime.native.System.IO.Ports 6.0.0 from https://api.nuget.org/v3/index.json with content hash 16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1068797Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.CodeDom 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1077222Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Runtime.Caching 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1090938Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.CodeDom 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1103778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Threading.AccessControl.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1303454Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Win32.Registry.AccessControl.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1394496Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Runtime.Caching.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1552546Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.linux-arm.runtime.native.System.IO.Ports 6.0.0 from https://api.nuget.org/v3/index.json with content hash 75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1558449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.Syndication.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1591268Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.linux-arm64.runtime.native.System.IO.Ports 6.0.0 from https://api.nuget.org/v3/index.json with content hash xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1597089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ComponentModel.Composition.Registration 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1609088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ComponentModel.Composition 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1640769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Windows.Compatibility.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1653617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ComponentModel.Composition 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1678557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.CodeDom.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1688044Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ComponentModel.Composition.Registration 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1693302Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.native.System.IO.Ports 6.0.0 from https://api.nuget.org/v3/index.json with content hash KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1730913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Data.Odbc 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1760600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Data.Odbc 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1857454Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Speech.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.1861452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceProcess.ServiceController.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.2112230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ComponentModel.Composition.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.2250793Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ComponentModel.Composition.Registration.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.2693055Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Data.Odbc.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.2696676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Windows.Compatibility 6.0.0 from https://api.nuget.org/v3/index.json with content hash 9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.2701675Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Data.OleDb 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.2722034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Data.OleDb 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.3374368Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Data.OleDb.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.3694362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win-arm64.runtime.native.System.Data.SqlClient.sni.4.4.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.3695295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win-x64.runtime.native.System.Data.SqlClient.sni.4.4.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.3698165Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win-x86.runtime.native.System.Data.SqlClient.sni.4.4.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.3770239Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ComponentModel.Composition.Registration 6.0.0 from https://api.nuget.org/v3/index.json with content hash +i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.3776953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Diagnostics.EventLog 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.3787979Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Diagnostics.EventLog 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.3791171Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Win32.Registry.AccessControl 6.0.0 from https://api.nuget.org/v3/index.json with content hash UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.3795958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Diagnostics.PerformanceCounter 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.3806461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Diagnostics.PerformanceCounter 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.3939404Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.Syndication 6.0.0 from https://api.nuget.org/v3/index.json with content hash cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4017531Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.DirectoryServices.AccountManagement 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4041301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.DirectoryServices.AccountManagement 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4167925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Diagnostics.EventLog.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4196556Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.CodeDom 6.0.0 from https://api.nuget.org/v3/index.json with content hash CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4201937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.DirectoryServices.Protocols 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4212637Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.DirectoryServices.Protocols 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4312717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ComponentModel.Composition 6.0.0 from https://api.nuget.org/v3/index.json with content hash 60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4317416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.DirectoryServices 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4327385Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.DirectoryServices 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4552106Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.DirectoryServices.AccountManagement.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4561705Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Diagnostics.PerformanceCounter.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4643569Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Threading.AccessControl 6.0.0 from https://api.nuget.org/v3/index.json with content hash 2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4649589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4719903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Web.Services.Description 4.9.0 from https://api.nuget.org/v3/index.json with content hash d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4726992Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Management 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4792750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Numerics.Vectors 4.5.0 from https://api.nuget.org/v3/index.json with content hash QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4799614Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Reflection.Context 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4818270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.IO.Ports 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4852045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.DirectoryServices.Protocols.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4870411Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Management 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4919045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Reflection.Context 6.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.4976133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win-arm64.runtime.native.System.Data.SqlClient.sni 4.4.0 from https://api.nuget.org/v3/index.json with content hash LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.5009320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Runtime.Caching 6.0.0 from https://api.nuget.org/v3/index.json with content hash E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.5068471Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.DirectoryServices.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.5275816Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win-x86.runtime.native.System.Data.SqlClient.sni 4.4.0 from https://api.nuget.org/v3/index.json with content hash YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.5499693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.IO.Ports.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.5528099Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win-x64.runtime.native.System.Data.SqlClient.sni 4.4.0 from https://api.nuget.org/v3/index.json with content hash 38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.5729475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Management.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.5776796Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Reflection.Context.6.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.5840084Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceProcess.ServiceController 6.0.0 from https://api.nuget.org/v3/index.json with content hash qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.6060197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Data.OleDb 6.0.0 from https://api.nuget.org/v3/index.json with content hash LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.6098602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Speech 6.0.0 from https://api.nuget.org/v3/index.json with content hash GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.6729908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Diagnostics.EventLog 6.0.0 from https://api.nuget.org/v3/index.json with content hash lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.6775916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Diagnostics.PerformanceCounter 6.0.0 from https://api.nuget.org/v3/index.json with content hash gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.7032664Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.DirectoryServices 6.0.0 from https://api.nuget.org/v3/index.json with content hash kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.7600457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.DirectoryServices.AccountManagement 6.0.0 from https://api.nuget.org/v3/index.json with content hash 2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.7608182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Reflection.Context 6.0.0 from https://api.nuget.org/v3/index.json with content hash Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.7680976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.IO.Ports 6.0.0 from https://api.nuget.org/v3/index.json with content hash dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.7879869Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Management 6.0.0 from https://api.nuget.org/v3/index.json with content hash sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.8173487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.DirectoryServices.Protocols 6.0.0 from https://api.nuget.org/v3/index.json with content hash ++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:17.8276031Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Data.Odbc 6.0.0 from https://api.nuget.org/v3/index.json with content hash pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.2400058Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.2416946Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.2489943Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:18.2493563Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:18.2494680Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:18.2498502Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:18.2596576Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.2598246Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fcb480dc-1627-4e59-9a85-9bcc4f9fd252\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.2603958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fcb480dc-1627-4e59-9a85-9bcc4f9fd252\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.2605464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.3306201Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.6348526Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.6352603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.6406064Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:18.6407083Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:18.6407522Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
{"@t":"2022-05-04T14:49:18.6408698Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:18.6411229Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:18.6504521Z","@mt":"{FilesNeededCount} expected template items needed","FilesNeededCount":0,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
{"@t":"2022-05-04T14:49:18.6506992Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:18.6603054Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.6604403Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\039f9dd9-34ec-4ce0-b43f-0ac2c7fc1116\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.6608589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\039f9dd9-34ec-4ce0-b43f-0ac2c7fc1116\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.6609844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.7161541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.9369646Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.9379831Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.9515219Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update Winforms Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:18.9650665Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.9651673Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\27422887-f3c8-480f-9c77-a146019f7e51\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.9655789Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\27422887-f3c8-480f-9c77-a146019f7e51\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:18.9657327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.0125631Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.2009142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.2019922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.2084685Z","@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":"2022-05-04T14:49:19.2211612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.2213814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8d48fa12-297e-4707-9bef-59722ecd75e7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.2218444Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8d48fa12-297e-4707-9bef-59722ecd75e7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.2219960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.2744099Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.4974243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.4980282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.5041754Z","@mt":"HighDpiMode needs to set in Main() instead of app.config or app.manifest - Application.SetHighDpiMode(HighDpiMode.<setting>). It is recommended to use SystemAware as the HighDpiMode option for better results.","@l":"Warning","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsDpiSettingUpdater"}
{"@t":"2022-05-04T14:49:19.5077230Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update Winforms Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:19.5157844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.5158723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7cfd3694-13d6-47ca-a0a0-3b689bf6f764\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.5163036Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7cfd3694-13d6-47ca-a0a0-3b689bf6f764\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.5164243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.5687682Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.7881484Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.7885884Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.8049190Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsDefaultFontUpdater","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:19.8062463Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Default Font API Alert","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep"}
{"@t":"2022-05-04T14:49:19.8154480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.8155466Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\114d4551-677b-483e-aacf-28dfcf81c09d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.8161245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\114d4551-677b-483e-aacf-28dfcf81c09d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.8162955Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:19.8595801Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.0540158Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.0545402Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.0586232Z","@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":"2022-05-04T14:49:20.0590296Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Default Font API Alert","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep"}
{"@t":"2022-05-04T14:49:20.0686636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.0688090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\10f47802-e9f1-496a-8bf4-0121dcb5f576\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.0693153Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\10f47802-e9f1-496a-8bf4-0121dcb5f576\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.0694805Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.1245007Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.3365513Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.3369155Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.3469299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.3470139Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c62af831-90cc-41db-a94e-ff287270983e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.3474467Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c62af831-90cc-41db-a94e-ff287270983e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.3475738Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.3904772Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.6005485Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.6009289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.6129133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.6130203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d0dbd6dd-5b0f-4446-86a6-9de70c7918e5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.6135668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d0dbd6dd-5b0f-4446-86a6-9de70c7918e5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.6136955Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.6516456Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.8765304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.8787821Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.8985700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.8987613Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bb1e19dc-2021-46cf-8269-9536fb0905d5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.8996728Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bb1e19dc-2021-46cf-8269-9536fb0905d5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.8999178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:20.9463476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.1234128Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.1238147Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.1302108Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsDpiSettingUpdater","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:21.1303849Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Winforms Source Updater","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep"}
{"@t":"2022-05-04T14:49:21.1397742Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.1398999Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\45134b4a-513b-444f-b999-1c6f998afeec\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.1402578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\45134b4a-513b-444f-b999-1c6f998afeec\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.1403559Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.1869930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.3789929Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.3798098Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.3837151Z","@mt":"HighDpiMode needs to set in Main() instead of app.config or app.manifest - Application.SetHighDpiMode(HighDpiMode.<setting>). It is recommended to use SystemAware as the HighDpiMode option for better results.","@l":"Warning","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsDpiSettingUpdater"}
{"@t":"2022-05-04T14:49:21.3993549Z","@mt":"Updated Program.cs file at {Path} with HighDPISetting set to {HighDpi}","Path":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\Program.cs","HighDpi":"SystemAware","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsDpiSettingUpdater"}
{"@t":"2022-05-04T14:49:21.3999210Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Winforms Source Updater","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep"}
{"@t":"2022-05-04T14:49:21.4000240Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update Winforms Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep"}
{"@t":"2022-05-04T14:49:21.4007559Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update Winforms Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsUpdateStep"}
{"@t":"2022-05-04T14:49:21.4062435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.4063590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\64f9e535-d231-4fde-8e66-64d3c7a2cb55\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.4067745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\64f9e535-d231-4fde-8e66-64d3c7a2cb55\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.4068861Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.4656230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.6544870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.6551028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.6649251Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.6650694Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c895317a-e344-432c-ade3-28d7bc7c69df\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.6655549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c895317a-e344-432c-ade3-28d7bc7c69df\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.6657083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.7047580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.8867621Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.8870924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.8968863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.8971706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7fa3093c-a86e-4bdc-8806-21b98b2895de\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.8978868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7fa3093c-a86e-4bdc-8806-21b98b2895de\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.8980893Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:21.9529265Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.1939225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.1943004Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.2060676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.2061633Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bc25b7f8-40a7-4575-aec5-6c486f81389f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.2067557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bc25b7f8-40a7-4575-aec5-6c486f81389f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.2069261Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.2559978Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.4639785Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.4644057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.4687178Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade app config files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:22.4728946Z","@mt":"Loading config files: {ConfigFiles}","@l":"Debug","ConfigFiles":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\app.config","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep"}
{"@t":"2022-05-04T14:49:22.4746873Z","@mt":"Loaded {ConfigCount} config files","@l":"Debug","ConfigCount":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep"}
{"@t":"2022-05-04T14:49:22.4875247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.4877010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5041a549-be64-4a08-8bee-a258ea76caaf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.4883245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5041a549-be64-4a08-8bee-a258ea76caaf\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.4885025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.5488452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.7295755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.7301906Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.7467100Z","@mt":"Found {AppSettingCount} app settings for upgrade: {AppSettingNames}","AppSettingCount":0,"AppSettingNames":"","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.Updaters.AppSettingsConfigUpdater"}
{"@t":"2022-05-04T14:49:22.7482736Z","@mt":"Found {ConnectionStringsCount} connection strings for upgrade: {ConnectionStringNames}","ConnectionStringsCount":0,"ConnectionStringNames":"","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.Updaters.ConnectionStringsConfigUpdater"}
{"@t":"2022-05-04T14:49:22.7506618Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade app config files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:22.7647167Z","@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_Default59679bffa9244663a3450a6bed113090","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2022-05-04T14:49:22.7720194Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.7721718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\81cbb5cd-0fba-4d8d-b866-b840d129a3c6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.7726346Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\81cbb5cd-0fba-4d8d-b866-b840d129a3c6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.7728247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:22.8201287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.0219589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.0223227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.0309908Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:23.0326565Z","@mt":"Opening project {ProjectPath}","@l":"Debug","ProjectPath":"C:\\Users\\tim.cartwright.VGNET\\source\\repos\\SqlServerDEID\\SqlServerDEID.Editor\\SqlServerDEID.Editor.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-05-04T14:49:23.0371372Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"SqlServerDEID.Editor","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2022-05-04T14:49:23.0518190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.0519888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d2f9966b-2ff3-4033-b12a-91110fc733e1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.0524594Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d2f9966b-2ff3-4033-b12a-91110fc733e1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.0529641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.1212752Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.3475327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.3481037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.3580048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.3581217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9464ce40-9c5c-4148-9a28-904ca0075407\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.3586896Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9464ce40-9c5c-4148-9a28-904ca0075407\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.3588343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.4017341Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.6136502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.6141066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.6244009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.6245136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\612bd3f3-2067-4c2f-9e02-10892f124063\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.6249021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\612bd3f3-2067-4c2f-9e02-10892f124063\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.6250464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.6674707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.8710310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.8743745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.8850212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.8851132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\81450b0d-f7eb-40d2-946d-e0bc0d2cf542\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.8855274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\81450b0d-f7eb-40d2-946d-e0bc0d2cf542\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.8856589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:23.9416529Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.1574425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.1579357Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.1681359Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.1682240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8599fa56-1155-45a4-98f5-a969e5c76285\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.1685933Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8599fa56-1155-45a4-98f5-a969e5c76285\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.1687096Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.2100305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.4223062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.4227529Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.4337516Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.4338671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e6a84681-d94a-47b1-a02e-4e7e2d1db2b3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.4343558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e6a84681-d94a-47b1-a02e-4e7e2d1db2b3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.4345046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.4872260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.6824025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:24.6827419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.1815630Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"SqlServerDEID.Editor","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2022-05-04T14:49:26.1822789Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0001","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-05-04T14:49:26.1823664Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-05-04T14:49:26.1823982Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0005","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-05-04T14:49:26.1824241Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0006","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-05-04T14:49:26.1824563Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0007","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-05-04T14:49:26.1824826Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0008","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-05-04T14:49:26.1825076Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0010","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-05-04T14:49:26.1825327Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0012","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
{"@t":"2022-05-04T14:49:26.1826324Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:26.1884950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.1885882Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3f328f6a-c028-446d-9ce7-e27a52fcaa54\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.1890411Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3f328f6a-c028-446d-9ce7-e27a52fcaa54\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.1891644Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.2330034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.4060512Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.4066015Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.4247102Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.4248554Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0367f2f5-2b9a-4d18-ae2e-455840104622\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.4253329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0367f2f5-2b9a-4d18-ae2e-455840104622\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.4256464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.4695268Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.6560083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.6564086Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.6677965Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.6680073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\edc22e2e-15d1-4261-9392-756e0034ad07\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.6687248Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\edc22e2e-15d1-4261-9392-756e0034ad07\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.6690109Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.7162908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.9232378Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.9235775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.9331960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.9332908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0583add9-4833-438d-a03b-bf33c36b5697\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.9336021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0583add9-4833-438d-a03b-bf33c36b5697\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.9336907Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:26.9698947Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.1410247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.1413595Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.1492501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.1493192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6dbc6446-cb14-4a45-8e02-4d9c6ea54caa\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.1495988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6dbc6446-cb14-4a45-8e02-4d9c6ea54caa\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.1496861Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.1891279Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.3723905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.3728937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.3821357Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.3822227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\544703f6-939d-4ea0-a8b4-93e515933b97\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.3826300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\tim.cartwright.VGNET\\AppData\\Local\\Temp\\dotnet-ua\\restores\\544703f6-939d-4ea0-a8b4-93e515933b97\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.3827358Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.4219868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.6379365Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.6386503Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2022-05-04T14:49:27.6431273Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:27.6434877Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:27.6435511Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
{"@t":"2022-05-04T14:49:27.6437812Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"}
{"@t":"2022-05-04T14:49:27.6440429Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"}
{"@t":"2022-05-04T14:49:27.6515385Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}