-
Notifications
You must be signed in to change notification settings - Fork 0
/
upgrade-assistant.clef
2514 lines (2514 loc) · 714 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":"2023-04-24T14:27:20.2399121Z","@mt":"Hosting starting","@l":"Debug","EventId":{"Id":1,"Name":"Starting"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
{"@t":"2023-04-24T14:27:20.2649289Z","@mt":"Configuration loaded from context base directory: {BaseDirectory}","@l":"Debug","BaseDirectory":"C:\\Users\\13540\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.421302\\upgrade-assistant\\0.4.421302\\tools\\net7.0\\any\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleRunner"}
{"@t":"2023-04-24T14:27:20.2791909Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"NuGet","Location":"C:\\Users\\13540\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.421302\\upgrade-assistant\\0.4.421302\\tools\\net7.0\\any\\extensions\\nuget","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2023-04-24T14:27:20.2799432Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"BinaryAnalysis","Location":"C:\\Users\\13540\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.421302\\upgrade-assistant\\0.4.421302\\tools\\net7.0\\any\\extensions\\binaryanalysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2023-04-24T14:27:20.2805274Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Default","Location":"C:\\Users\\13540\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.421302\\upgrade-assistant\\0.4.421302\\tools\\net7.0\\any\\extensions\\default","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2023-04-24T14:27:20.2809017Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"try-convert","Location":"C:\\Users\\13540\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.421302\\upgrade-assistant\\0.4.421302\\tools\\net7.0\\any\\extensions\\try-convert","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2023-04-24T14:27:20.2813020Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"VB","Location":"C:\\Users\\13540\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.421302\\upgrade-assistant\\0.4.421302\\tools\\net7.0\\any\\extensions\\vb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2023-04-24T14:27:20.2831247Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Web","Location":"C:\\Users\\13540\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.421302\\upgrade-assistant\\0.4.421302\\tools\\net7.0\\any\\extensions\\web","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2023-04-24T14:27:20.2835688Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"windows","Location":"C:\\Users\\13540\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.421302\\upgrade-assistant\\0.4.421302\\tools\\net7.0\\any\\extensions\\windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2023-04-24T14:27:20.2839477Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"MAUI","Location":"C:\\Users\\13540\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.421302\\upgrade-assistant\\0.4.421302\\tools\\net7.0\\any\\extensions\\maui","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2023-04-24T14:27:20.2843052Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"WCFUpdater","Location":"C:\\Users\\13540\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.421302\\upgrade-assistant\\0.4.421302\\tools\\net7.0\\any\\extensions\\wcf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2023-04-24T14:27:20.2855718Z","@mt":"Loaded {Count} extensions","Count":9,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
{"@t":"2023-04-24T14:27:20.2992004Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3091895Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Commands, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3102016Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.DependencyResolver.Core, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3107600Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3121158Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3131174Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3149295Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3155923Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.ProjectModel, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3183285Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Configuration, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3215944Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Azure.Core, Version=1.25.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8","Extension":"UA_BinaryAnalysis54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3224006Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Azure.Storage.Blobs, Version=12.13.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8","Extension":"UA_BinaryAnalysis54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3274611Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3288342Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3295339Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3310906Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3315969Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3365021Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3369908Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3374351Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3379665Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3384105Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Source, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3388590Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3443409Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3452168Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.CodeFixes, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3471670Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"MSBuild.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3515811Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Web54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3522920Z","@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_Web54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.3562545Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"DiffPlex, Version=1.6.3.0, Culture=neutral, PublicKeyToken=1d35e91d1bd7bc0f","Extension":"UA_Web54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.4030081Z","@mt":"Using Visual Studio v{VsVersion} [{VsPath}]","@l":"Debug","VsVersion":"17.5.33530.505","VsPath":"E:\\IDE\\vs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.VisualStudioFinder"}
{"@t":"2023-04-24T14:27:20.5414104Z","@mt":"Using MSBuild from {Path}","Path":"C:\\Program Files\\dotnet\\sdk\\7.0.203\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2023-04-24T14:27:20.5435971Z","@mt":"Using Visual Studio install from {Path} [v{Version}]","Path":"E:\\IDE\\vs","Version":17,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
{"@t":"2023-04-24T14:27:20.6752988Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Credentials, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:20.7373897Z","@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":"2023-04-24T14:27:20.7544916Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"System.Private.Uri.resources, Version=7.0.0.0, Culture=zh-CN, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:20.7546972Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"System.Private.Uri.resources, Version=7.0.0.0, Culture=zh-Hans, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:20.7548798Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"System.Private.Uri.resources, Version=7.0.0.0, Culture=zh, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:20.9796006Z","@mt":"Generating context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2023-04-24T14:27:20.9984774Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.resources, Version=15.1.0.0, Culture=zh-CN, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:21.0064447Z","@mt":"Initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2023-04-24T14:27:24.6887499Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.Tasks.Core.resources, Version=15.1.0.0, Culture=zh-CN, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:25.0516886Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.MSBuild.resources, Version=4.0.0.0, Culture=zh-CN, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:25.0532275Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"处理文件“D:\\WPF.net\\uToolkitopia\\uToolkitopia\\Kitopia.csproj”时 Msbuild 失败,出现消息: C:\\Program Files\\dotnet\\sdk\\7.0.203\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): 无法找到规则集文件“ManagedMinimumRules.ruleset”。","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2023-04-24T14:27:25.5441325Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"处理文件“D:\\WPF.net\\uToolkitopia\\Core\\Core.csproj”时 Msbuild 失败,出现消息: C:\\Program Files\\dotnet\\sdk\\7.0.203\\Microsoft.Common.CurrentVersion.targets: (2977, 5): .NET Core 版本的 MSBuild 不支持“ResolveComReference”。请使用 .NET Framework 版本的 MSBuild。有关更多详细信息,请参阅 https://aka.ms/msbuild/MSB4803。","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2023-04-24T14:27:25.5442112Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"处理文件“D:\\WPF.net\\uToolkitopia\\Core\\Core.csproj”时 Msbuild 失败,出现消息: C:\\Program Files\\dotnet\\sdk\\7.0.203\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): 无法找到规则集文件“ManagedMinimumRules.ruleset”。","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2023-04-24T14:27:25.8212256Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"处理文件“D:\\WPF.net\\uToolkitopia\\Test\\Test.csproj”时 Msbuild 失败,出现消息: C:\\Program Files\\dotnet\\sdk\\7.0.203\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): 无法找到规则集文件“ManagedMinimumRules.ruleset”。","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
{"@t":"2023-04-24T14:27:25.8408686Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.resources, Version=4.0.0.0, Culture=zh-CN, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:25.8546843Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.Workspaces.resources, Version=4.0.0.0, Culture=zh-CN, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:25.9541663Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.CSharp.Workspaces.resources, Version=4.0.0.0, Culture=zh-CN, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:25.9596189Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis.CSharp.Workspaces.resources, Version=4.0.0.0, Culture=zh-CN, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:26.0077954Z","@mt":"Done initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
{"@t":"2023-04-24T14:27:26.0243120Z","@mt":"Writing output to {0}","0":"D:\\WPF.net\\uToolkitopia\\AnalysisReport.sarif","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleAnalyze"}
{"@t":"2023-04-24T14:27:26.4833442Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.LibraryModel, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:26.5528163Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:26.5553092Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fbe1f7b7-f11c-4337-9241-ac36e48e0e7a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:26.5735810Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed","Extension":"UA_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:26.6390950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fbe1f7b7-f11c-4337-9241-ac36e48e0e7a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:26.6530663Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:26.7947260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:27.0764619Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:27.0895359Z","@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":"2023-04-24T14:27:27.1399805Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:27.1400747Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1363451a-892d-4d80-8ad9-57073334fd9d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:27.1405016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1363451a-892d-4d80-8ad9-57073334fd9d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:27.1406861Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:27.1416412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:27.1441383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:27.1442848Z","@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":"2023-04-24T14:27:27.1521414Z","@mt":"Recommending TFM {TFM} for project {Name} because of dependency on project {Dependency}","TFM":"net6.0","Name":"Kitopia.csproj","Dependency":"D:\\WPF.net\\uToolkitopia\\Core\\Core.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
{"@t":"2023-04-24T14:27:27.1565803Z","@mt":"Recommending Windows TFM {TFM} for project {Name} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net6.0-windows","Name":"Kitopia.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"}
{"@t":"2023-04-24T14:27:27.1617359Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:27.1629967Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:27.1664555Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:27.1694057Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"CommunityToolkit.Mvvm, Version=8.1.0","PackagePath":"C:\\Users\\13540\\.nuget\\packages\\CommunityToolkit.Mvvm\\8.1.0\\CommunityToolkit.Mvvm.8.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:27.1851141Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"CommunityToolkit.Mvvm.8.1.0","TargetFrameworks":["net6.0",".NETStandard,Version=v2.0",".NETStandard,Version=v2.1"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:27.1857666Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"CommunityToolkit.Mvvm, Version=8.1.0","TargetFramework":["net6.0-windows"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:27.1859331Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"HandyControl, Version=3.4.0","PackagePath":"C:\\Users\\13540\\.nuget\\packages\\HandyControl\\3.4.0\\HandyControl.3.4.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:27.1875130Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"HandyControl.3.4.0","TargetFrameworks":[".NETCoreApp,Version=v3.0",".NETCoreApp,Version=v3.1","net5.0","net6.0","net7.0",".NETFramework,Version=v4.0",".NETFramework,Version=v4.5",".NETFramework,Version=v4.5.1",".NETFramework,Version=v4.5.2",".NETFramework,Version=v4.6",".NETFramework,Version=v4.6.1",".NETFramework,Version=v4.6.2",".NETFramework,Version=v4.7",".NETFramework,Version=v4.7.1",".NETFramework,Version=v4.7.2",".NETFramework,Version=v4.8",".NETFramework,Version=v4.8.1"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:27.1876820Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"HandyControl, Version=3.4.0","TargetFramework":["net6.0-windows"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:27.1878424Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.Extensions.DependencyInjection, Version=7.0.0","PackagePath":"C:\\Users\\13540\\.nuget\\packages\\Microsoft.Extensions.DependencyInjection\\7.0.0\\Microsoft.Extensions.DependencyInjection.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:27.1891754Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.Extensions.DependencyInjection.7.0.0","TargetFrameworks":["net6.0","net7.0",".NETFramework,Version=v4.6.2",".NETStandard,Version=v2.0",".NETStandard,Version=v2.1"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:27.1892389Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.Extensions.DependencyInjection, Version=7.0.0","TargetFramework":["net6.0-windows"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:27.1893396Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.Xaml.Behaviors.Wpf, Version=1.1.39","PackagePath":"C:\\Users\\13540\\.nuget\\packages\\Microsoft.Xaml.Behaviors.Wpf\\1.1.39\\Microsoft.Xaml.Behaviors.Wpf.1.1.39.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:27.1902781Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.Xaml.Behaviors.Wpf.1.1.39","TargetFrameworks":[".NETCoreApp,Version=v3.1","net5.0-windows7.0",".NETFramework,Version=v4.5"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:27.1903586Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.Xaml.Behaviors.Wpf, Version=1.1.39","TargetFramework":["net6.0-windows"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:27.1904909Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:27.2926254Z","@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":"2023-04-24T14:27:28.1314746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 833ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:28.2375787Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs to be added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.4.421302","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:28.2417909Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:28.2457197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:28.2458333Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a9a46fef-bf4a-41e6-8742-ac4ad4136812\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:28.2460989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a9a46fef-bf4a-41e6-8742-ac4ad4136812\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:28.2461763Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:28.2647243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:28.2973567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:28.2975040Z","@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":"2023-04-24T14:27:28.2996553Z","@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":"2023-04-24T14:27:28.5148646Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.windows.compatibility/index.json 215ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:28.7230850Z","@mt":"NuGet package {NuGetPackage} not found in package cache","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility, Version=2.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:28.7503450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:28.9518207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/index.json 201ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:28.9762372Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/2.0.0/microsoft.windows.compatibility.2.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:30.3909964Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/2.0.0/microsoft.windows.compatibility.2.0.0.nupkg 1414ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:30.4234618Z","@mt":"Package {NuGetPackage} downloaded from feed {NuGetFeed}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility, Version=2.0.0","NuGetFeed":"https://api.nuget.org/v3/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:30.4239709Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility.2.0.0","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:30.4278523Z","@mt":"Adding Microsoft.Windows.Compatibility 7.0.1 helps with speeding up the upgrade process for Windows-based APIs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.WindowsCompatReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:30.4298537Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:30.4315059Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"D:\\WPF.net\\uToolkitopia\\uToolkitopia\\Kitopia.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2023-04-24T14:27:30.4316154Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:30.4360977Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4361982Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b89bd26e-f264-4d4a-ac9d-82abe12627a2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4366241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b89bd26e-f264-4d4a-ac9d-82abe12627a2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4367043Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4368379Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4412770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4414106Z","@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":"2023-04-24T14:27:30.4447932Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4448559Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9f3c823d-d2be-4aac-9746-317aae40097f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4450896Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9f3c823d-d2be-4aac-9746-317aae40097f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4451594Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4452544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4479421Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4480919Z","@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":"2023-04-24T14:27:30.4490446Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:30.4530192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4531185Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8018f41e-dc57-4e89-b42d-5105c521cd60\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4533660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8018f41e-dc57-4e89-b42d-5105c521cd60\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4534320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4535406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4555136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4556080Z","@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":"2023-04-24T14:27:30.4582770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4583203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\896e3c63-b505-477f-9e32-887c7b1f8572\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4585130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\896e3c63-b505-477f-9e32-887c7b1f8572\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4585752Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4586795Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4696182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4698041Z","@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":"2023-04-24T14:27:30.4705976Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:30.4745116Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4746276Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\11c47dc8-6cd3-4caf-a0b0-accdc5d0ad00\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4748687Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\11c47dc8-6cd3-4caf-a0b0-accdc5d0ad00\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4749344Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:30.4817953Z","@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":"2023-04-24T14:27:30.4902297Z","@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":"2023-04-24T14:27:31.1339961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 652ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.1478832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/0.4.421302/microsoft.dotnet.upgradeassistant.extensions.default.analyzers.0.4.421302.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.4129231Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/index.json 922ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.4155327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/7.0.1/microsoft.windows.compatibility.7.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.5552821Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/7.0.1/microsoft.windows.compatibility.7.0.1.nupkg 139ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.5858887Z","@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":"2023-04-24T14:27:31.5896305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.systemevents/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.5916950Z","@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":"2023-04-24T14:27:31.5942149Z","@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":"2023-04-24T14:27:31.5962999Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.configuration.configurationmanager/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.5980945Z","@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":"2023-04-24T14:27:31.5998920Z","@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":"2023-04-24T14:27:31.6012229Z","@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":"2023-04-24T14:27:31.6025340Z","@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":"2023-04-24T14:27:31.6039146Z","@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":"2023-04-24T14:27:31.6057439Z","@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":"2023-04-24T14:27:31.6072561Z","@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":"2023-04-24T14:27:31.6107122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.drawing.common/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6124767Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.io.packaging/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6139232Z","@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":"2023-04-24T14:27:31.6158421Z","@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":"2023-04-24T14:27:31.6176009Z","@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":"2023-04-24T14:27:31.6193198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.pkcs/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6219268Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6237348Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.xml/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6259675Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.permissions/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6277778Z","@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":"2023-04-24T14:27:31.6293166Z","@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":"2023-04-24T14:27:31.6302462Z","@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":"2023-04-24T14:27:31.6324523Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6346767Z","@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":"2023-04-24T14:27:31.6363643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6379049Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.duplex/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6396746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.http/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6411948Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.nettcp/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6426868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.primitives/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6441180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.security/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.6453508Z","@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":"2023-04-24T14:27:31.6797505Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/0.4.421302/microsoft.dotnet.upgradeassistant.extensions.default.analyzers.0.4.421302.nupkg 531ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.8613159Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry.accesscontrol/index.json 275ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.8642670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry.accesscontrol/7.0.0/microsoft.win32.registry.accesscontrol.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.9159474Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.systemevents/index.json 326ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:31.9191012Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.systemevents/7.0.0/microsoft.win32.systemevents.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.0878649Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition/index.json 493ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.0939505Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition/7.0.0/system.componentmodel.composition.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.1255499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.configuration.configurationmanager/index.json 529ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.1283580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.configuration.configurationmanager/7.0.0/system.configuration.configurationmanager.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.1678999Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/index.json 566ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.1710611Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/7.0.0/system.diagnostics.eventlog.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2146688Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices/index.json 607ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2172021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices/7.0.1/system.directoryservices.7.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2268097Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.oledb/index.json 626ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2297338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.oledb/7.0.0/system.data.oledb.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2455372Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.protocols/index.json 639ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2482558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices.protocols/7.0.0/system.directoryservices.protocols.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2510260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/index.json 629ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2534184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/7.0.1/system.security.cryptography.protecteddata.7.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2630243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.security/index.json 618ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2681004Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.pkcs/index.json 648ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2681004Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.odbc/index.json 669ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2681802Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/index.json 635ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2683543Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.security/4.9.0/system.servicemodel.security.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2685325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.io.packaging/index.json 656ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2709317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.systemevents/7.0.0/microsoft.win32.systemevents.7.0.0.nupkg 351ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2746495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.pkcs/7.0.1/system.security.cryptography.pkcs.7.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2754338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.odbc/7.0.0/system.data.odbc.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2761000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.io.packaging/7.0.0/system.io.packaging.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2767188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/7.0.0/system.text.encoding.codepages.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2795324Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.syndication/index.json 651ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2818012Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.syndication/7.0.0/system.servicemodel.syndication.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2841680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.runtime.caching/index.json 666ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2855095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition/7.0.0/system.componentmodel.composition.7.0.0.nupkg 191ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2868323Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.runtime.caching/7.0.0/system.runtime.caching.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2896045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.configuration.configurationmanager/7.0.0/system.configuration.configurationmanager.7.0.0.nupkg 161ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2941232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.primitives/index.json 651ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2965677Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.primitives/4.9.0/system.servicemodel.primitives.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.2997259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/index.json 663ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3020195Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/4.8.5/system.data.sqlclient.4.8.5.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3077141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.permissions/index.json 681ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3105692Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.permissions/7.0.0/system.security.permissions.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3140189Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/7.0.0/system.diagnostics.eventlog.7.0.0.nupkg 142ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3172067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.threading.accesscontrol/index.json 682ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3196068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.threading.accesscontrol/7.0.1/system.threading.accesscontrol.7.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3202141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.accountmanagement/index.json 716ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3235636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices.accountmanagement/7.0.0/system.directoryservices.accountmanagement.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3565201Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.performancecounter/index.json 753ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3579483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.duplex/index.json 719ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3594826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.performancecounter/7.0.0/system.diagnostics.performancecounter.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3604191Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.duplex/4.9.0/system.servicemodel.duplex.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3634036Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.web.services.description/index.json 718ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3662656Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition.registration/index.json 774ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3663344Z","@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":"2023-04-24T14:27:32.3665356Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices/7.0.1/system.directoryservices.7.0.1.nupkg 149ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3686589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition.registration/7.0.0/system.componentmodel.composition.registration.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3821989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.reflection.context/index.json 766ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3828667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.oledb/7.0.0/system.data.oledb.7.0.0.nupkg 153ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3852301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.reflection.context/7.0.0/system.reflection.context.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3906046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.xml/index.json 766ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3931021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.xml/7.0.1/system.security.cryptography.xml.7.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3984417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.speech/index.json 768ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.3984829Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.protocols/7.0.0/system.directoryservices.protocols.7.0.0.nupkg 150ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4011095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.speech/7.0.0/system.speech.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4122702Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/7.0.1/system.security.cryptography.protecteddata.7.0.1.nupkg 158ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4275080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.odbc/7.0.0/system.data.odbc.7.0.0.nupkg 152ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4356277Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.nettcp/index.json 794ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4382801Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.nettcp/4.9.0/system.servicemodel.nettcp.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4423512Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.pkcs/7.0.1/system.security.cryptography.pkcs.7.0.1.nupkg 167ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4438070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/7.0.0/system.text.encoding.codepages.7.0.0.nupkg 167ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4440951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.security/4.9.0/system.servicemodel.security.4.9.0.nupkg 175ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4623257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.runtime.caching/7.0.0/system.runtime.caching.7.0.0.nupkg 175ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4788359Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.syndication/7.0.0/system.servicemodel.syndication.7.0.0.nupkg 196ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4908244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.permissions/7.0.0/system.security.permissions.7.0.0.nupkg 180ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.4931516Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/4.8.5/system.data.sqlclient.4.8.5.nupkg 191ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.5155540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.threading.accesscontrol/7.0.1/system.threading.accesscontrol.7.0.1.nupkg 195ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.5160908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.accountmanagement/7.0.0/system.directoryservices.accountmanagement.7.0.0.nupkg 192ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.5513062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.performancecounter/7.0.0/system.diagnostics.performancecounter.7.0.0.nupkg 191ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.5611866Z","@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 194ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.5661556Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.io.ports/index.json 952ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.5733329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.io.ports/7.0.0/system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.5762595Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition.registration/7.0.0/system.componentmodel.composition.registration.7.0.0.nupkg 207ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.5767251Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.duplex/4.9.0/system.servicemodel.duplex.4.9.0.nupkg 216ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.6015076Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry.accesscontrol/7.0.0/microsoft.win32.registry.accesscontrol.7.0.0.nupkg 737ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.6537765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.drawing.common/index.json 1043ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.6569844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.drawing.common/7.0.0/system.drawing.common.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.6682530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.private.servicemodel/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.6731717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.reflection.context/7.0.0/system.reflection.context.7.0.0.nupkg 287ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.7043965Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.speech/7.0.0/system.speech.7.0.0.nupkg 303ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.7186163Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.windows.extensions/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.7218591Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.http/index.json 1082ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.7227181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.xml/7.0.1/system.security.cryptography.xml.7.0.1.nupkg 329ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.7246536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.http/4.9.0/system.servicemodel.http.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.7690498Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.io.packaging/7.0.0/system.io.packaging.7.0.0.nupkg 492ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.7939246Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.io.ports/7.0.0/system.io.ports.7.0.0.nupkg 220ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.8088626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.primitives/4.9.0/system.servicemodel.primitives.4.9.0.nupkg 512ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.8495651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.drawing.common/7.0.0/system.drawing.common.7.0.0.nupkg 192ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.9225762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.private.servicemodel/index.json 254ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.9248630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.private.servicemodel/4.9.0/system.private.servicemodel.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.9313245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.http/4.9.0/system.servicemodel.http.4.9.0.nupkg 206ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.9657434Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.nettcp/4.9.0/system.servicemodel.nettcp.4.9.0.nupkg 527ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.9906419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.serviceprocess.servicecontroller/index.json 1361ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:32.9935046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.serviceprocess.servicecontroller/7.0.0/system.serviceprocess.servicecontroller.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:33.0767316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.formats.asn1/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:33.1126199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.windows.extensions/index.json 393ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:33.1154169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.windows.extensions/7.0.0/system.windows.extensions.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:33.1771149Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.private.servicemodel/4.9.0/system.private.servicemodel.4.9.0.nupkg 252ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:33.3809998Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.formats.asn1/index.json 304ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:33.3839477Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.formats.asn1/7.0.0/system.formats.asn1.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:33.5296688Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.windows.extensions/7.0.0/system.windows.extensions.7.0.0.nupkg 414ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:33.7990597Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.formats.asn1/7.0.0/system.formats.asn1.7.0.0.nupkg 415ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.0987282Z","@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":"2023-04-24T14:27:34.3115060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.ports/index.json 212ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.3143110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.ports/7.0.0/runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.4720746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.ports/7.0.0/runtime.native.system.io.ports.7.0.0.nupkg 157ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.5039128Z","@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":"2023-04-24T14:27:34.5057164Z","@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":"2023-04-24T14:27:34.5074126Z","@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":"2023-04-24T14:27:34.5083724Z","@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":"2023-04-24T14:27:34.5099536Z","@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":"2023-04-24T14:27:34.5773331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.5782402Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.5811734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.reflection.dispatchproxy/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.7068744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-x64.runtime.native.system.io.ports/index.json 196ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.7099166Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.osx-x64.runtime.native.system.io.ports/7.0.0/runtime.osx-x64.runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.7106610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.runtime.native.system.io.ports/index.json 204ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.7128029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.runtime.native.system.io.ports/7.0.0/runtime.linux-arm64.runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.7138705Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.runtime.native.system.io.ports/index.json 206ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.7152469Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-arm64.runtime.native.system.io.ports/index.json 206ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.7164188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.runtime.native.system.io.ports/7.0.0/runtime.linux-x64.runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.7174676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.osx-arm64.runtime.native.system.io.ports/7.0.0/runtime.osx-arm64.runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.7985596Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.runtime.native.system.io.ports/index.json 294ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.8014830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.runtime.native.system.io.ports/7.0.0/runtime.linux-arm.runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.8605590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.runtime.native.system.io.ports/7.0.0/runtime.linux-arm64.runtime.native.system.io.ports.7.0.0.nupkg 147ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.8702854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.runtime.native.system.io.ports/7.0.0/runtime.linux-x64.runtime.native.system.io.ports.7.0.0.nupkg 153ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.8883677Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/index.json 310ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.8909945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/5.0.0/microsoft.bcl.asyncinterfaces.5.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.8913178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/index.json 313ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.8939343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/5.0.10/microsoft.extensions.objectpool.5.0.10.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.9312734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-x64.runtime.native.system.io.ports/7.0.0/runtime.osx-x64.runtime.native.system.io.ports.7.0.0.nupkg 221ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:34.9743071Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.runtime.native.system.io.ports/7.0.0/runtime.linux-arm.runtime.native.system.io.ports.7.0.0.nupkg 172ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:35.1502146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.reflection.dispatchproxy/index.json 568ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:35.1525628Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.reflection.dispatchproxy/4.7.1/system.reflection.dispatchproxy.4.7.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:35.1774478Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-arm64.runtime.native.system.io.ports/7.0.0/runtime.osx-arm64.runtime.native.system.io.ports.7.0.0.nupkg 459ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:35.3118059Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.reflection.dispatchproxy/4.7.1/system.reflection.dispatchproxy.4.7.1.nupkg 159ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:35.4833507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/5.0.10/microsoft.extensions.objectpool.5.0.10.nupkg 589ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:35.5328699Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/5.0.0/microsoft.bcl.asyncinterfaces.5.0.0.nupkg 641ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.4499514Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.serviceprocess.servicecontroller/7.0.0/system.serviceprocess.servicecontroller.7.0.0.nupkg 3456ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.4809287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.4973641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Reflection.DispatchProxy 4.7.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5067097Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Reflection.DispatchProxy 4.7.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5154322Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Extensions.ObjectPool 5.0.10","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5161046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Extensions.ObjectPool 5.0.10","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5185668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Bcl.AsyncInterfaces 5.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5192207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Bcl.AsyncInterfaces 5.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5207105Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.osx-x64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5212922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.osx-x64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5226720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.osx-arm64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5232387Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.osx-arm64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5249899Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.linux-x64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5255499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.linux-x64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5268815Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.linux-arm64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5274986Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.linux-arm64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5288429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.linux-arm.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5294319Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.linux-arm.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5308994Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Private.ServiceModel 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5314593Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Private.ServiceModel 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5329201Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Windows.Extensions 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5335087Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Windows.Extensions 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5348838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Formats.Asn1 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5354668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Formats.Asn1 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5369267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5375807Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5389795Z","@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":"2023-04-24T14:27:36.5395294Z","@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":"2023-04-24T14:27:36.5411019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.Security 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5416945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.Security 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5434045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.Primitives 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5440452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.Primitives 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5454924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.NetTcp 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5460310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.NetTcp 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.5485232Z","@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_NuGet54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:36.5515134Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"System.Security.Cryptography.resources, Version=7.0.0.0, Culture=zh-CN, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:36.5516908Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"System.Security.Cryptography.resources, Version=7.0.0.0, Culture=zh-Hans, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:36.5518430Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"System.Security.Cryptography.resources, Version=7.0.0.0, Culture=zh, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:36.7983391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.linux-arm64.runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.7983821Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Private.ServiceModel.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.7983374Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.linux-arm.runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.7983374Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.osx-x64.runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.7983374Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.linux-x64.runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.7983374Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.osx-arm64.runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.7983417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Windows.Extensions.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.7983572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.NetTcp.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.7983640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Formats.Asn1.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.7983913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.7983996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Extensions.ObjectPool.5.0.10 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8792664Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash L4Ivegqc3B0Fee7VifFy2JST9nndm+uvJ0viLIZUaImDfnr+JmRin9Tbqd56KuMtm0eVxHpNOWZBPtKrA/1h5Q==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8792663Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Extensions.ObjectPool 5.0.10 from https://api.nuget.org/v3/index.json with content hash pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8798325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.linux-arm64.runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash 5VCyRCtCIYU8FR/W8oo7ouFuJ8tmAg9ddsuXhfCKZfZrbaVZSKxkmNBa6fxkfYPueD0jQfOvwFBmE5c6zalCSw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8806574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.linux-x64.runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash DV9dWDUs23OoZqMWl5IhLr3D+b9koDiSHQxFKdYgWnQbnthv8c/yDjrlrI8nMrDc71RAKCO8jlUojzuPMX04gg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8807665Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.osx-x64.runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash X4LrHEfke/z9+z+iuVr35NlkhdZldY8JGNMYUN+sfPK/U/6TcE+vP44I0Yv0ir1v0bqIzq3v6Qdv1c1vmp8s4g==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8808725Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.osx-arm64.runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash jFwh4sKSXZ7al5XrItEO4GdGWa6XNxvNx+LhEHjrSzOwawO1znwJ+Dy+VjnrkySX9Qi4bnHNLoiqOXbqMuka4g==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8812224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.linux-arm.runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash CBvgRaF+M0xGLDv2Geb/0v0LEADheH8aK72GRAUJdnqnJVsQO60ki1XO8M3keEhnjm+T5NvLm41pNXAVYAPiSg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8845124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ComponentModel.Composition.Registration 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8845667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Configuration.ConfigurationManager 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8845768Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Windows.Compatibility 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8845310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ComponentModel.Composition 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8845716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers 0.4.421302","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8845124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Win32.Registry.AccessControl 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8846001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Win32.SystemEvents 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8860008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Windows.Extensions 7.0.0 from https://api.nuget.org/v3/index.json with content hash bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8864170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Data.Odbc 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8881696Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ComponentModel.Composition.Registration 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8909015Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ComponentModel.Composition 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8909475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Configuration.ConfigurationManager 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8912896Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Windows.Compatibility 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8916123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Win32.SystemEvents 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8916358Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers 0.4.421302","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8921520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Win32.Registry.AccessControl 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8928268Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Data.Odbc 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8964282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Formats.Asn1 7.0.0 from https://api.nuget.org/v3/index.json with content hash +nfpV0afLmvJW8+pLlHxRjz3oZJw4fkyU9MMEaMhCsHi/SN9bGF9q79ROubDiwTiCHezmK0uCWkPP7tGFP/4yg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.8968297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Data.OleDb 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9047180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Data.OleDb 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9210029Z","@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":"2023-04-24T14:27:36.9243718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Win32.SystemEvents.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9243718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.421302 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9245839Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.Primitives.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9250867Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.Security.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9265437Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ComponentModel.Composition.Registration.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9273189Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Win32.Registry.AccessControl.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9292909Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Configuration.ConfigurationManager.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9337100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Windows.Compatibility.7.0.1 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9380340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ComponentModel.Composition.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9383990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Data.Odbc.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9415192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Data.OleDb.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9871607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.NetTcp 4.9.0 from https://api.nuget.org/v3/index.json with content hash nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9879621Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.Http 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9892339Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.Http 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9900129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Private.ServiceModel 4.9.0 from https://api.nuget.org/v3/index.json with content hash d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9908540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Diagnostics.EventLog 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:36.9947027Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Diagnostics.EventLog 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0003186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Windows.Compatibility 7.0.1 from https://api.nuget.org/v3/index.json with content hash rS6WnkjQkiXIgikQj00g6ADeMG+M+CK2IPIKP8BnOPZQaMBtUiwUBllSroIrH7KOnNivdWL7G+9/zsKenUAEsg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0011545Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Diagnostics.PerformanceCounter 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0032837Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Diagnostics.PerformanceCounter 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0258398Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.Http.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0290120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Diagnostics.EventLog.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0315794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers 0.4.421302 from https://api.nuget.org/v3/index.json with content hash yZinZEQ/0ciwMB5zOlUF56UeDDJRp2lc/AFJFptLHOxkY+sxa68ictkbcinWn8lvs7oePJhLJBic7mdBGiQksA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0321152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.DirectoryServices.AccountManagement 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0337088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.DirectoryServices.AccountManagement 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0339135Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Diagnostics.PerformanceCounter.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0531877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ComponentModel.Composition.Registration 7.0.0 from https://api.nuget.org/v3/index.json with content hash yy/xYOznnc7Hfg2/LeVqAMlJGv1v7b1ILxFShzx5PWUv53PwU0MaKPG8Dh9DC3gxayzw44UVuQJImhw7LtMKlw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0538495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.DirectoryServices.Protocols 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0574895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.DirectoryServices.Protocols 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0608425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Configuration.ConfigurationManager 7.0.0 from https://api.nuget.org/v3/index.json with content hash WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0617735Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.DirectoryServices.AccountManagement.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0621711Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.DirectoryServices 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0639037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ComponentModel.Composition 7.0.0 from https://api.nuget.org/v3/index.json with content hash orv0h38ZVPCPo/FW0LGv8/TigXwX8cIwXeQcaNYhikkqELDm8sUFLMcof/Sjcq5EvYCm5NA7MV3hG4u75H44UQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0642452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Drawing.Common 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0700432Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.DirectoryServices 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0706801Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Drawing.Common 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0851910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.DirectoryServices.Protocols.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0935193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Win32.Registry.AccessControl 7.0.0 from https://api.nuget.org/v3/index.json with content hash JwM65WXVca58WzqY/Rpz7FGyHbN/SMdyr/3EI2CwPIYkB55EIRJUdPQJwO64x3ntOwPQoqCATKuDYA9K7Np5Ww==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0939460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.IO.Packaging 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0949418Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Win32.SystemEvents 7.0.0 from https://api.nuget.org/v3/index.json with content hash 2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0964750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Data.OleDb 7.0.0 from https://api.nuget.org/v3/index.json with content hash bhAs+5X5acgg3zQ6N4HqxqfwwmqWJzgt54BC8iwygcqa2jktxDFzxwN83GNvqgoTcTs2tenDS/jmhC+AQsmcyg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0964855Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0968462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Reflection.Context 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0970926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.IO.Packaging 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0987129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0993916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.DirectoryServices.7.0.1 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.0993917Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Reflection.Context 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.1027745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Drawing.Common.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.2132410Z","@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":"2023-04-24T14:27:37.2163121Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Runtime.Caching 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.2171357Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Runtime.Caching 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.2253398Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.IO.Packaging.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.2397326Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.2402530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Reflection.Context.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.2516684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Runtime.Caching.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.2919663Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.Security 4.9.0 from https://api.nuget.org/v3/index.json with content hash iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.2930233Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Security.Cryptography.Pkcs 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.2948877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Security.Cryptography.Pkcs 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3107903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Diagnostics.PerformanceCounter 7.0.0 from https://api.nuget.org/v3/index.json with content hash L+zIMEaXp1vA4wZk1KLMpk6tvU0xy94R0IfmhkmTWeC4KwShsmAfbg5I19LgjsCTYp6GVdXZ2aHluVWL0QqBdA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3118014Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Security.Cryptography.ProtectedData 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3137872Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Diagnostics.EventLog 7.0.0 from https://api.nuget.org/v3/index.json with content hash eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3139396Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Security.Cryptography.ProtectedData 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3142062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Security.Cryptography.Xml 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3152242Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.DirectoryServices.AccountManagement 7.0.0 from https://api.nuget.org/v3/index.json with content hash qMpVgR5+XactuWzpqsiif++lnTzfDESbQv4UYFZpgdRvFCFIi4JgufOITCDlu+x2vEmwYOVbwrR1N365dDJRLg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3157492Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Security.Permissions 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3161428Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Security.Cryptography.Xml 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3174378Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Security.Permissions 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3318873Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Security.Cryptography.Pkcs.7.0.1 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3399899Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Security.Cryptography.ProtectedData.7.0.1 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3400963Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.Primitives 4.9.0 from https://api.nuget.org/v3/index.json with content hash LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3404944Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.Syndication 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3415619Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.Syndication 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3533501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.DirectoryServices 7.0.1 from https://api.nuget.org/v3/index.json with content hash Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3534170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Security.Cryptography.Xml.7.0.1 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3538365Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceProcess.ServiceController 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3538701Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Security.Permissions.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3567310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceProcess.ServiceController 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3605894Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Reflection.Context 7.0.0 from https://api.nuget.org/v3/index.json with content hash rVf4vEyGQphXTITF39uXlgTcp8Ekcu2aNwxyVLU7fDyNOk0W+/PPpj9PoC2cFL4wgJZJltiss5eQptE2C4f1Sw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3609476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Speech 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3620376Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Speech 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3663348Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.IO.Packaging 7.0.0 from https://api.nuget.org/v3/index.json with content hash +j5ezLP7785/pd4taKQhXAWsymsIW2nTnE/U3/jpGZzcJx5lip6qkj6UrxSE7ZYZfL0GaLuymwGLqwJV/c7O7Q==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3671045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Text.Encoding.CodePages 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3700263Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Text.Encoding.CodePages 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3735233Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Data.Odbc 7.0.0 from https://api.nuget.org/v3/index.json with content hash siwu7NoCsfHa9bfw2a2wSeTt2c/rhk3X8I28nJln1dlxdW3KqhRp0aW87yH1XkCo9h8zO1qcIfdTHO7YvvWLEA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3753358Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Threading.AccessControl 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3772496Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Threading.AccessControl 7.0.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3779644Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.Syndication.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3814800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceProcess.ServiceController.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3887938Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Drawing.Common 7.0.0 from https://api.nuget.org/v3/index.json with content hash KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3891683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Data.SqlClient 4.8.5","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3909464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Data.SqlClient 4.8.5","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.3992656Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Threading.AccessControl.7.0.1 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4016507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.Http 4.9.0 from https://api.nuget.org/v3/index.json with content hash Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4022826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.Duplex 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4036199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Runtime.Caching 7.0.0 from https://api.nuget.org/v3/index.json with content hash M0riW7Zgxca3Elp1iZVhzH7PWWT5bPSrdMFGCAGoH1n9YLuXOYE78ryui051Icf3swWWa8feBRoSxOCYwgMy8w==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4038019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Speech.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4058936Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.Duplex 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4130473Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.DirectoryServices.Protocols 7.0.0 from https://api.nuget.org/v3/index.json with content hash QNC4ab+Gc3p3uLixavxxD0h5FOxrs2cT3hez4DSMckBU8lgREjrEB5a8reJypkSVlhFyUQ5YfpMJODdeSCYp2g==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4190360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash 0nWQjM5IofaIGpvkifN+LLuYwBG6BHlpmphLhhOJepcW12G8qToGuNDRgBzeTVBZzp33wVsESSZ8hUOCfq+8QA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4219488Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Text.Encoding.CodePages.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4296619Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.Duplex.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4493144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Data.SqlClient.4.8.5 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4665992Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Security.Cryptography.Xml 7.0.1 from https://api.nuget.org/v3/index.json with content hash MCxBCtH0GrDuvU63ZODwQHQZPchb24pUAX3MfZ6b13qg246ZD10PRdOvay8C9HBPfCXkymUNwFPEegud7ax2zg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4692811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Security.Permissions 7.0.0 from https://api.nuget.org/v3/index.json with content hash Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4848563Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.Syndication 7.0.0 from https://api.nuget.org/v3/index.json with content hash V3q1Jr3KWo+i201/vUUPfg83rjJLhL5+ROh16PtPhaUJRHwoEBoGWtg0r6pFBRPaDqNY6hXvNgHktDj0gvMEpA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4938265Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Security.Cryptography.ProtectedData 7.0.1 from https://api.nuget.org/v3/index.json with content hash 3evI3sBfKqwYSwuBcYgShbmEgtXcg8N5Qu+jExLdkBXPty2yGDXq5m1/4sx9Exb8dqdeMPUs/d9DQ0wy/9Adwg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.4956008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Security.Cryptography.Pkcs 7.0.1 from https://api.nuget.org/v3/index.json with content hash Qv9g+0GP1aX55cOz/k4Oz7cCFA0g+0GSXYwG0XwJgYK4y/ZCiVLjjhv4kbWIwNfouqYv2vZtNiWAxIuWUJumTw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.5076180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceProcess.ServiceController 7.0.0 from https://api.nuget.org/v3/index.json with content hash 7W5e7z2LSsxEvnix0F4pQuo22l46vx69+VHZyN9vtMFTtB2kWInimBmhbFXKIv1hK2O2D4hGnBn4bAZGzse8PQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.5133762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Threading.AccessControl 7.0.1 from https://api.nuget.org/v3/index.json with content hash uh6LWSk8Dlp1cavk4XQYtDHOMZpSa5KiqM0VBiflhXWGT63RGV+NhNsVxiEykL4S/0LVcgy+/AxC5ITQ9QLo8w==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.5232643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Speech 7.0.0 from https://api.nuget.org/v3/index.json with content hash 7E0uB92Cx2sXR67HW9rMKJqDACdLuz9t3I3OwZUFDzAgwKXWuY6CYeRT/NiypHcyZO2be9+0H0w0M6fn7HQtgQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.5510409Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.Duplex 4.9.0 from https://api.nuget.org/v3/index.json with content hash Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.5630022Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Text.Encoding.CodePages 7.0.0 from https://api.nuget.org/v3/index.json with content hash LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.6025481Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Bcl.AsyncInterfaces.5.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.6028711Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Reflection.DispatchProxy.4.7.1 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.6439391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Bcl.AsyncInterfaces 5.0.0 from https://api.nuget.org/v3/index.json with content hash W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.7244309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Reflection.DispatchProxy 4.7.1 from https://api.nuget.org/v3/index.json with content hash C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.8031722Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Data.SqlClient 4.8.5 from https://api.nuget.org/v3/index.json with content hash fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.9288962Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:37.9296097Z","@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":"2023-04-24T14:27:38.0871612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.0872537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\57edc73a-db44-4e06-956d-a2e52d601ba8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.0875791Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\57edc73a-db44-4e06-956d-a2e52d601ba8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.0876584Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.0922525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.1225735Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.1226641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.1262024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.1262732Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b0bc2b1-ca8a-405f-894f-e4c1ef4de051\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.1265208Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b0bc2b1-ca8a-405f-894f-e4c1ef4de051\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.1265915Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.1267051Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.1318236Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.1319339Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.1329319Z","@mt":"Recommending TFM {TFM} for project {Name} because of dependency on project {Dependency}","TFM":"net6.0","Name":"Test.csproj","Dependency":"D:\\WPF.net\\uToolkitopia\\Core\\Core.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
{"@t":"2023-04-24T14:27:38.1357574Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"Test.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
{"@t":"2023-04-24T14:27:38.1383464Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.1385133Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.1386539Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.1388374Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.Runtime.InteropServices, Version=4.3.0","PackagePath":"C:\\Users\\13540\\.nuget\\packages\\System.Runtime.InteropServices\\4.3.0\\System.Runtime.InteropServices.4.3.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:38.1406470Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.Runtime.InteropServices.4.3.0","TargetFrameworks":[".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2",".NETFramework,Version=v4.6.3",".NETPortable,Version=v0.0,Profile=Profile111","MonoAndroid,Version=v1.0","MonoTouch,Version=v1.0","Windows,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",".NETCore,Version=v5.0",".NETCoreApp,Version=v1.1",".NETStandard,Version=v1.1",".NETStandard,Version=v1.2",".NETStandard,Version=v1.3",".NETStandard,Version=v1.5"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:38.1409268Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.Runtime.InteropServices, Version=4.3.0","TargetFramework":["net7.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:38.1409667Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.1418827Z","@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":"2023-04-24T14:27:38.5107200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 368ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:38.5164881Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs to be added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.4.421302","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:38.5182024Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.5182409Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.5184196Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"D:\\WPF.net\\uToolkitopia\\Test\\Test.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2023-04-24T14:27:38.5184440Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.5213593Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5214416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7ddfcb9e-d12c-4cd4-8241-64fdc684cfc1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5217038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7ddfcb9e-d12c-4cd4-8241-64fdc684cfc1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5217808Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5218874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5235195Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5235928Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5265258Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5266015Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b860ecf-6627-4ffe-8c4e-edb1374763de\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5268693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b860ecf-6627-4ffe-8c4e-edb1374763de\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5269410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5270375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5286235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5286993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5291789Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.5316344Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5317064Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5230e3ac-5a92-487c-902a-05c86b5a0719\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5319457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5230e3ac-5a92-487c-902a-05c86b5a0719\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5320123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5321172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5371483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5372531Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5406723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5407380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2b61c63e-300e-4b32-b59d-2a4e7857c8f1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5409747Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2b61c63e-300e-4b32-b59d-2a4e7857c8f1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5410809Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5411749Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5427583Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5428343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5432690Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.5460615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5461245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\87d9255b-b576-48bf-9ea8-a928063cbc53\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5464268Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\87d9255b-b576-48bf-9ea8-a928063cbc53\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5464960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5496122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5825476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5826331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5865383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5866345Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ecbe2420-91b7-4cea-b5e1-edeb9e762012\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5868956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ecbe2420-91b7-4cea-b5e1-edeb9e762012\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5869974Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.5926551Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.6266109Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.6267764Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.6310713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.6311542Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ada46e65-bcf8-445c-a2e7-637fb0ab312a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.6314135Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ada46e65-bcf8-445c-a2e7-637fb0ab312a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.6314857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.6315824Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.6334066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.6334962Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.6342932Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
{"@t":"2023-04-24T14:27:38.6347325Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
{"@t":"2023-04-24T14:27:38.6349505Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.6350367Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.6350839Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.6352016Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"CommunityToolkit.Mvvm, Version=8.1.0","PackagePath":"C:\\Users\\13540\\.nuget\\packages\\CommunityToolkit.Mvvm\\8.1.0\\CommunityToolkit.Mvvm.8.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:38.6359226Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"CommunityToolkit.Mvvm.8.1.0","TargetFrameworks":["net6.0",".NETStandard,Version=v2.0",".NETStandard,Version=v2.1"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:38.6359793Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"CommunityToolkit.Mvvm, Version=8.1.0","TargetFramework":["netstandard2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:38.6360826Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.Management, Version=7.0.1","PackagePath":"C:\\Users\\13540\\.nuget\\packages\\System.Management\\7.0.1\\System.Management.7.0.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:38.6371988Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.Management.7.0.1","TargetFrameworks":["net6.0","net7.0",".NETFramework,Version=v4.6.2",".NETStandard,Version=v2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:38.6372876Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.Management, Version=7.0.1","TargetFramework":["netstandard2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:38.6373726Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"System.Runtime.InteropServices, Version=4.3.0","PackagePath":"C:\\Users\\13540\\.nuget\\packages\\System.Runtime.InteropServices\\4.3.0\\System.Runtime.InteropServices.4.3.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:38.6380701Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"System.Runtime.InteropServices.4.3.0","TargetFrameworks":[".NETFramework,Version=v4.5",".NETFramework,Version=v4.6.2",".NETFramework,Version=v4.6.3",".NETPortable,Version=v0.0,Profile=Profile111","MonoAndroid,Version=v1.0","MonoTouch,Version=v1.0","Windows,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",".NETCore,Version=v5.0",".NETCoreApp,Version=v1.1",".NETStandard,Version=v1.1",".NETStandard,Version=v1.2",".NETStandard,Version=v1.3",".NETStandard,Version=v1.5"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:38.6381882Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"System.Runtime.InteropServices, Version=4.3.0","TargetFramework":["netstandard2.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:38.6382096Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.6390442Z","@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":"2023-04-24T14:27:38.9375729Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 298ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
{"@t":"2023-04-24T14:27:38.9409879Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs to be added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.4.421302","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
{"@t":"2023-04-24T14:27:38.9430928Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.9431160Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.9431793Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"D:\\WPF.net\\uToolkitopia\\Core\\Core.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
{"@t":"2023-04-24T14:27:38.9431926Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.9459284Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9460176Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8531a2e5-24cc-4f43-aee5-001ca830abfe\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9462736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8531a2e5-24cc-4f43-aee5-001ca830abfe\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9463487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9464478Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9497548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9498598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9533426Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9534414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0b44acce-ea47-4c45-8501-6b459a7428bd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9537894Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0b44acce-ea47-4c45-8501-6b459a7428bd\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9538705Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9539713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9558075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9558959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9563861Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.9590831Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9591626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\466dc92f-84f5-4f1d-8c95-4e62c9f579d1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9594279Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\466dc92f-84f5-4f1d-8c95-4e62c9f579d1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9595051Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9596067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9612993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9613919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9644170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9644968Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4561b6f5-5f89-4a87-9299-4c3ae1ef8479\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9648087Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4561b6f5-5f89-4a87-9299-4c3ae1ef8479\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9648899Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9649968Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9669090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9670123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9675662Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.DependencyAnalyzerRunner"}
{"@t":"2023-04-24T14:27:38.9704384Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9705374Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d18896ad-c738-4b13-bdd9-302ee89e4696\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9708107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d18896ad-c738-4b13-bdd9-302ee89e4696\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9708785Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:38.9807484Z","@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":"2023-04-24T14:27:43.9920412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/index.json 5011ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:43.9943925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.0836726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg 14089ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.1342068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.1345957Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Numerics.Vectors 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.1352019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Numerics.Vectors 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.1484257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Numerics.Vectors.4.4.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2000451Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Numerics.Vectors 4.4.0 from https://api.nuget.org/v3/index.json with content hash UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2325788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2327204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2392118Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"Kitopia","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2023-04-24T14:27:58.2544939Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.Common, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default54e50a3791d14b08ba2efa390ee4e9dc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
{"@t":"2023-04-24T14:27:58.2580034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2581031Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b687fd61-05f4-421a-8605-64a045da9b87\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2583600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b687fd61-05f4-421a-8605-64a045da9b87\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2584275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2585525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2620910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2621847Z","@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":"2023-04-24T14:27:58.2651134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2651542Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\690e39df-c0c5-46a9-a3d9-85e74f49aee0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2653572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\690e39df-c0c5-46a9-a3d9-85e74f49aee0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2654197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2655084Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2676625Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2677505Z","@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":"2023-04-24T14:27:58.2714132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2714806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\05287e56-00d0-4cb1-b916-9874612d3edb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2717053Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\05287e56-00d0-4cb1-b916-9874612d3edb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2717754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2718731Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2739277Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2740086Z","@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":"2023-04-24T14:27:58.2765396Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2766081Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ba946e17-8dd8-4d3c-abec-c2d8e734e9da\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2768141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ba946e17-8dd8-4d3c-abec-c2d8e734e9da\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2768753Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2769639Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2800973Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2801850Z","@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":"2023-04-24T14:27:58.2830972Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2831716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f4be8a7c-81c6-4519-9a68-bfb964822971\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2834215Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f4be8a7c-81c6-4519-9a68-bfb964822971\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2834929Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2835936Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2855974Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2856923Z","@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":"2023-04-24T14:27:58.2883462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2883976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ce216e99-b947-4d6f-9c0b-57e249090ddd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2886288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ce216e99-b947-4d6f-9c0b-57e249090ddd\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2886937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2888120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2908056Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2908857Z","@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":"2023-04-24T14:27:58.2936872Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2937352Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5f82c099-a0d2-455d-8e94-804768de1f23\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2939637Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5f82c099-a0d2-455d-8e94-804768de1f23\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2940283Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2941141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2983429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.2984596Z","@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":"2023-04-24T14:27:58.3013492Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3013962Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\48c5131a-4c7c-4ff6-b878-b44a43f07bb8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3016088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\48c5131a-4c7c-4ff6-b878-b44a43f07bb8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3016728Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3017618Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3037317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3038123Z","@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":"2023-04-24T14:27:58.3066833Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3067278Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d28e314e-9e63-4f3a-9e6f-3f7533593d6f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3069172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d28e314e-9e63-4f3a-9e6f-3f7533593d6f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3069784Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3070652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3090415Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3091207Z","@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":"2023-04-24T14:27:58.3116615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3117006Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3caf4cad-c255-482a-98a0-4ddc31e582a9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3118815Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3caf4cad-c255-482a-98a0-4ddc31e582a9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3119456Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3120296Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3152204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3153105Z","@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":"2023-04-24T14:27:58.3182817Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3183301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\127a0f1f-7235-4e53-83db-7e69ae4a293d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3185298Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\127a0f1f-7235-4e53-83db-7e69ae4a293d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3185927Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3186967Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3206612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3207420Z","@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":"2023-04-24T14:27:58.3234454Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3234866Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6551e0df-0aa0-4fbe-ab41-a566850d98ab\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3236719Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6551e0df-0aa0-4fbe-ab41-a566850d98ab\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3237340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3238179Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3257571Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3258349Z","@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":"2023-04-24T14:27:58.3292730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3293414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\653b4b35-2720-4ea7-a80e-8bf2aeb8a793\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3295838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\653b4b35-2720-4ea7-a80e-8bf2aeb8a793\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3296501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3297444Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3328523Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3329422Z","@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":"2023-04-24T14:27:58.3360999Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3361439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5bc79464-2493-42e2-8b20-219576dbd7c4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3363582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5bc79464-2493-42e2-8b20-219576dbd7c4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3364253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3365189Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3385076Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3385878Z","@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":"2023-04-24T14:27:58.3417518Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3417988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8eee1151-3ce8-4ff3-8282-ca6dcf4dc69f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3420049Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8eee1151-3ce8-4ff3-8282-ca6dcf4dc69f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3420664Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3421574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3442856Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3443707Z","@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":"2023-04-24T14:27:58.3469212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3469626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a70f564b-dbef-41fb-bb2c-fae191cbc175\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3471695Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a70f564b-dbef-41fb-bb2c-fae191cbc175\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3472350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3473257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3503266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3504141Z","@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":"2023-04-24T14:27:58.3532989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3533441Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fc4af635-6c9f-4f2a-9aee-00de32efd467\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3535529Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fc4af635-6c9f-4f2a-9aee-00de32efd467\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3536133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3536996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3556387Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3557181Z","@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":"2023-04-24T14:27:58.3582044Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3582436Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b55e71a5-663a-48a7-9eae-f8c2bc2355db\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3584236Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b55e71a5-663a-48a7-9eae-f8c2bc2355db\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3584816Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3585670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3606722Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3607546Z","@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":"2023-04-24T14:27:58.3634416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3635002Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cc66ff51-73e8-4c6b-9c36-c9827bf8597d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3637004Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cc66ff51-73e8-4c6b-9c36-c9827bf8597d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3637632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3638543Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3668549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3669415Z","@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":"2023-04-24T14:27:58.3695299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3695697Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ae1f1547-c809-4d60-9822-840023414f8a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3697843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ae1f1547-c809-4d60-9822-840023414f8a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3698435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3699289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3718911Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3719875Z","@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":"2023-04-24T14:27:58.3747327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3747759Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9c774bcd-1955-4df9-83e1-bbc9617ac2e6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3749506Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9c774bcd-1955-4df9-83e1-bbc9617ac2e6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3751181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3752230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3771627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3772441Z","@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":"2023-04-24T14:27:58.3800006Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3800397Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cee37c0a-f04e-491a-a658-cdb2b3f744cb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3802276Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cee37c0a-f04e-491a-a658-cdb2b3f744cb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3802877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3803723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3833178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3834076Z","@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":"2023-04-24T14:27:58.3865040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3865507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5f155ec1-2889-4168-8f98-fca22a6e25b9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3867591Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5f155ec1-2889-4168-8f98-fca22a6e25b9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3868204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3869049Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3888219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3889010Z","@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":"2023-04-24T14:27:58.3920063Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3920553Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9564ee2e-2dc6-4f43-b167-07c022544cf2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3922925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9564ee2e-2dc6-4f43-b167-07c022544cf2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3923588Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3924526Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3944848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3950778Z","@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":"2023-04-24T14:27:58.3984746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3985537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8b0a1a2d-b04e-4b8e-a90a-29303a0a1219\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3988078Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8b0a1a2d-b04e-4b8e-a90a-29303a0a1219\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3988816Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.3989975Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4029332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4030838Z","@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":"2023-04-24T14:27:58.4057669Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4058186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5a5d742d-faa7-414c-99bf-ebad37398387\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4060330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5a5d742d-faa7-414c-99bf-ebad37398387\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4060988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4063114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4084260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4085146Z","@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":"2023-04-24T14:27:58.4115658Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4116311Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c7d27692-277f-48f0-956b-880c025486ad\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4118608Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c7d27692-277f-48f0-956b-880c025486ad\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4119546Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4120515Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4140975Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4141831Z","@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":"2023-04-24T14:27:58.4167920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4168470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a9622e33-e70b-4584-af61-c5ce3912b1b3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4171281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a9622e33-e70b-4584-af61-c5ce3912b1b3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4172283Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4173229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4203453Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4204370Z","@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":"2023-04-24T14:27:58.4240336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4241063Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3fda34a6-7371-41d3-83a3-300a3be8dbc9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4243651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3fda34a6-7371-41d3-83a3-300a3be8dbc9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4244317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4245366Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4265800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4266590Z","@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":"2023-04-24T14:27:58.4291518Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4292066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\88b0fb16-2cfc-488b-b2ad-fe385803fb52\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4294077Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\88b0fb16-2cfc-488b-b2ad-fe385803fb52\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4294888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4295803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4315694Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4316504Z","@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":"2023-04-24T14:27:58.4344693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4345280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\afd7e86d-9778-4880-ba0b-0d43aca65171\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4347691Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\afd7e86d-9778-4880-ba0b-0d43aca65171\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4348301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4349210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4379042Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4379949Z","@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":"2023-04-24T14:27:58.4406188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4406649Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\45e06dcb-0b7b-49d7-85ef-938fca238404\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4408672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\45e06dcb-0b7b-49d7-85ef-938fca238404\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4409274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4410174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4429894Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows7.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:58.4430819Z","@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":"2023-04-24T14:27:58.6349179Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.6354907Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.6357741Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.6360214Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.6362452Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.6365127Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.6367353Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.8280142Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.8283566Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.8286527Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.8289054Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.8291363Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.8294029Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:58.8296335Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"}
{"@t":"2023-04-24T14:27:59.4633042Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"Kitopia","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2023-04-24T14:27:59.4659269Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"Test","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
{"@t":"2023-04-24T14:27:59.4702347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4703408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\943caeca-103b-47e7-8e9c-61c652e5faf6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4705951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\943caeca-103b-47e7-8e9c-61c652e5faf6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4706647Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4707570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4723388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4724186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4750223Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4750754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7a675176-7caa-4d89-8976-235571abf601\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4752700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7a675176-7caa-4d89-8976-235571abf601\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4753271Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4754018Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4768686Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4769366Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4796273Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4796880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\70a6e4e6-9d9c-45fb-83aa-cf0a43d5eca3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4799410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\70a6e4e6-9d9c-45fb-83aa-cf0a43d5eca3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4800019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4800797Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4852708Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4853853Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4885458Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4886019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7c2ec298-ba90-4a54-a8ef-5a52b6aebe2c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4888924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7c2ec298-ba90-4a54-a8ef-5a52b6aebe2c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4889568Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.4890488Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5144499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5145706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5176700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5177432Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\30cd670d-0b51-4ba1-bec9-17d920a2c15d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5180130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\30cd670d-0b51-4ba1-bec9-17d920a2c15d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5180786Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5181800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5197186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5197887Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5225661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5226085Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5f54a5db-302b-408a-9f80-4edd695196da\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5228296Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5f54a5db-302b-408a-9f80-4edd695196da\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5228874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5229661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5244674Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5245367Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5272079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5272504Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bf9b365-feb7-4a6c-89bd-6027248c6e21\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5274392Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bf9b365-feb7-4a6c-89bd-6027248c6e21\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5274972Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5275715Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5325376Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5326306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5358013Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5358440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eaaefab8-5015-4b7f-92d6-80b66c8e1257\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5360494Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eaaefab8-5015-4b7f-92d6-80b66c8e1257\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5361095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5361916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5377048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5377725Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5407577Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5407994Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d2cb2a0a-b10e-4cd7-94fa-3c2e35647b4b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5409888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d2cb2a0a-b10e-4cd7-94fa-3c2e35647b4b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5410474Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5411233Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5425763Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5426419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5455306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5455740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e6b889af-70ec-43c1-9408-31ae679799c6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5457615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e6b889af-70ec-43c1-9408-31ae679799c6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5458171Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5458942Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5473681Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5474364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5505844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
{"@t":"2023-04-24T14:27:59.5506341Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\13540\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a803c727-ceff-4f0a-bc21-3f5dcfb5afaa\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}