-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcorehost_trace.txt
6033 lines (6030 loc) · 590 KB
/
corehost_trace.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Tracing enabled @ Wed Jan 8 05:39:29 2025 GMT
--- Invoked apphost [version: 8.0.10 @Commit: 81cabf2857a01351e5ab578947c7403a5b128ad1] main = {
C:\Program Files\PowerShell\7\pwsh.exe
-NoProfile
-ExecutionPolicy
Bypass
-Command
Import-Module 'c:\Users\andreww\.vscode-insiders\extensions\ms-vscode.powershell-2024.4.0\modules\PowerShellEditorServices\PowerShellEditorServices.psd1'; Start-EditorServices -HostName 'Visual Studio Code Host' -HostProfileId 'Microsoft.VSCode' -HostVersion '2024.4.0' -BundledModulesPath 'c:\Users\andreww\.vscode-insiders\extensions\ms-vscode.powershell-2024.4.0\modules' -EnableConsoleRepl -StartupBanner "PowerShell Extension v2024.4.0
Copyright (c) Microsoft Corporation.
https://aka.ms/vscode-powershell
Type 'help' to get help.
" -LogLevel 'Normal' -LogPath 'c:\Users\andreww\AppData\Roaming\Code - Insiders\User\globalStorage\ms-vscode.powershell\logs\1736314767-c3d79c84-c7c2-490a-8b4e-5cbce7f5b3371736310558334' -SessionDetailsPath 'c:\Users\andreww\AppData\Roaming\Code - Insiders\User\globalStorage\ms-vscode.powershell\sessions\PSES-VSCode-45660-879997.json' -FeatureFlags @()
}
Redirecting errors to custom writer.
The managed DLL bound to this executable is: 'pwsh.dll'
Resolved fxr [C:\Program Files\PowerShell\7\hostfxr.dll]...
Loaded library from C:\Program Files\PowerShell\7\hostfxr.dll
Invoking fx resolver [C:\Program Files\PowerShell\7\hostfxr.dll] hostfxr_main_startupinfo
Host path: [C:\Program Files\PowerShell\7\pwsh.exe]
Dotnet path: [C:\Program Files\PowerShell\7\]
App path: [C:\Program Files\PowerShell\7\pwsh.dll]
Tracing enabled @ Wed Jan 8 05:39:29 2025 GMT
--- Invoked hostfxr_main_startupinfo [version: 8.0.10 @Commit: 81cabf2857a01351e5ab578947c7403a5b128ad1]
Checking if CoreCLR path exists=[C:\Program Files\PowerShell\7\coreclr.dll]
Detecting mode... CoreCLR present in dotnet root [C:\Program Files\PowerShell\7\] and checking if [pwsh.deps.json] file present=[1]
--- Executing in a native executable mode...
Using dotnet root path [C:\Program Files\PowerShell\7\]
App runtimeconfig.json from [C:\Program Files\PowerShell\7\pwsh.dll]
Runtime config is cfg=C:\Program Files\PowerShell\7\pwsh.runtimeconfig.json dev=C:\Program Files\PowerShell\7\pwsh.runtimeconfig.dev.json
Attempting to read dev runtime config: C:\Program Files\PowerShell\7\pwsh.runtimeconfig.dev.json
Attempting to read runtime config: C:\Program Files\PowerShell\7\pwsh.runtimeconfig.json
Runtime config [C:\Program Files\PowerShell\7\pwsh.runtimeconfig.json] is valid=[1]
Executing as a self-contained app as per config file [C:\Program Files\PowerShell\7\pwsh.runtimeconfig.json]
--- Resolving hostpolicy.dll version from deps json [C:\Program Files\PowerShell\7\pwsh.deps.json]
Resolved version from dependency manifest file [C:\Program Files\PowerShell\7\pwsh.deps.json]
Dependency manifest C:\Program Files\PowerShell\7\pwsh.deps.json does not contain an entry for runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy
The expected hostpolicy.dll directory is [C:\Program Files\PowerShell\7\]
Loaded library from C:\Program Files\PowerShell\7\hostpolicy.dll
Tracing enabled @ Wed Jan 8 05:39:29 2025 GMT
Reading from host interface version: [0x16041101:248] to initialize policy version: [0x16041101:248]
--- Invoked hostpolicy [version: 8.0.10 @Commit: 81cabf2857a01351e5ab578947c7403a5b128ad1] corehost_main = {
C:\Program Files\PowerShell\7\pwsh.exe
-NoProfile
-ExecutionPolicy
Bypass
-Command
Import-Module 'c:\Users\andreww\.vscode-insiders\extensions\ms-vscode.powershell-2024.4.0\modules\PowerShellEditorServices\PowerShellEditorServices.psd1'; Start-EditorServices -HostName 'Visual Studio Code Host' -HostProfileId 'Microsoft.VSCode' -HostVersion '2024.4.0' -BundledModulesPath 'c:\Users\andreww\.vscode-insiders\extensions\ms-vscode.powershell-2024.4.0\modules' -EnableConsoleRepl -StartupBanner "PowerShell Extension v2024.4.0
Copyright (c) Microsoft Corporation.
https://aka.ms/vscode-powershell
Type 'help' to get help.
" -LogLevel 'Normal' -LogPath 'c:\Users\andreww\AppData\Roaming\Code - Insiders\User\globalStorage\ms-vscode.powershell\logs\1736314767-c3d79c84-c7c2-490a-8b4e-5cbce7f5b3371736310558334' -SessionDetailsPath 'c:\Users\andreww\AppData\Roaming\Code - Insiders\User\globalStorage\ms-vscode.powershell\sessions\PSES-VSCode-45660-879997.json' -FeatureFlags @()
}
Mode: apphost
Deps file:
-- arguments_t: app_root='C:\Program Files\PowerShell\7\' deps='C:\Program Files\PowerShell\7\pwsh.deps.json' mgd_app='C:\Program Files\PowerShell\7\pwsh.dll'
Multilevel lookup is true
Looking for architecture-specific registry value in 'HKLM\SOFTWARE\dotnet\Setup\InstalledVersions\x64\InstallLocation'.
Found registered install location 'C:\Program Files\dotnet\'.
Shared store (global): 'C:\Program Files\dotnet\store\x64\net8.0'
Using C:\Program Files\PowerShell\7\pwsh.deps.json deps file
Loading deps file... [C:\Program Files\PowerShell\7\pwsh.deps.json] as framework dependent=0, use_fallback_graph=1
Processing package pwsh/7.4.6.500
Adding runtime assets
pwsh.dll assemblyVersion= fileVersion=
Processing package runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.10
Adding runtime assets
Microsoft.CSharp.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
Microsoft.VisualBasic.Core.dll assemblyVersion=13.0.0.0 fileVersion=13.0.1024.46610
Microsoft.Win32.Primitives.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
Microsoft.Win32.Registry.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.AppContext.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Buffers.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Collections.Concurrent.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Collections.Immutable.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Collections.NonGeneric.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Collections.Specialized.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Collections.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.ComponentModel.Annotations.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.ComponentModel.DataAnnotations.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.ComponentModel.EventBasedAsync.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.ComponentModel.Primitives.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.ComponentModel.TypeConverter.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.ComponentModel.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Configuration.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.Console.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Core.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.Data.Common.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Data.DataSetExtensions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Data.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.Diagnostics.Contracts.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Diagnostics.Debug.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Diagnostics.DiagnosticSource.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Diagnostics.FileVersionInfo.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Diagnostics.Process.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Diagnostics.StackTrace.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Diagnostics.TextWriterTraceListener.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Diagnostics.Tools.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Diagnostics.TraceSource.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Diagnostics.Tracing.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Drawing.Primitives.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Dynamic.Runtime.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Formats.Asn1.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Formats.Tar.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Globalization.Calendars.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Globalization.Extensions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Globalization.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.Compression.Brotli.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.Compression.FileSystem.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.IO.Compression.ZipFile.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.Compression.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.FileSystem.AccessControl.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.FileSystem.DriveInfo.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.FileSystem.Primitives.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.FileSystem.Watcher.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.FileSystem.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.IsolatedStorage.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.MemoryMappedFiles.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.Pipes.AccessControl.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.Pipes.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.UnmanagedMemoryStream.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.IO.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Linq.Expressions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Linq.Parallel.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Linq.Queryable.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Linq.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Memory.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.Http.Json.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.Http.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.HttpListener.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.Mail.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.NameResolution.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.NetworkInformation.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.Ping.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.Primitives.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.Quic.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.Requests.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.Security.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.ServicePoint.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.Sockets.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.WebClient.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.WebHeaderCollection.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.WebProxy.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.WebSockets.Client.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.WebSockets.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Net.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.Numerics.Vectors.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Numerics.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.ObjectModel.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Private.CoreLib.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Private.DataContractSerialization.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Private.Uri.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Private.Xml.Linq.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Private.Xml.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Reflection.DispatchProxy.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Reflection.Emit.ILGeneration.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Reflection.Emit.Lightweight.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Reflection.Emit.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Reflection.Extensions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Reflection.Metadata.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Reflection.Primitives.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Reflection.TypeExtensions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Reflection.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Resources.Reader.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Resources.ResourceManager.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Resources.Writer.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.CompilerServices.Unsafe.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.CompilerServices.VisualC.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.Extensions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.Handles.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.InteropServices.JavaScript.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.InteropServices.RuntimeInformation.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.InteropServices.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.Intrinsics.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.Loader.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.Numerics.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.Serialization.Formatters.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.Serialization.Json.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.Serialization.Primitives.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.Serialization.Xml.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.Serialization.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.Runtime.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.AccessControl.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Claims.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Cryptography.Algorithms.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Cryptography.Cng.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Cryptography.Csp.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Cryptography.Encoding.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Cryptography.OpenSsl.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Cryptography.Primitives.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Cryptography.X509Certificates.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Cryptography.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Principal.Windows.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Principal.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.SecureString.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.ServiceModel.Web.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.ServiceProcess.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.Text.Encoding.CodePages.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Text.Encoding.Extensions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Text.Encoding.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Text.Encodings.Web.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Text.Json.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Text.RegularExpressions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Threading.Channels.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Threading.Overlapped.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Threading.Tasks.Dataflow.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Threading.Tasks.Extensions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Threading.Tasks.Parallel.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Threading.Tasks.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Threading.Thread.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Threading.ThreadPool.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Threading.Timer.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Threading.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Transactions.Local.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Transactions.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.ValueTuple.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Web.HttpUtility.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Web.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.Windows.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.Xml.Linq.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.Xml.ReaderWriter.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Xml.Serialization.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.Xml.XDocument.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Xml.XPath.XDocument.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Xml.XPath.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Xml.XmlDocument.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Xml.XmlSerializer.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Xml.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
System.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
mscorlib.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46610
netstandard.dll assemblyVersion=2.1.0.0 fileVersion=8.0.1024.46610
Adding native assets
System.IO.Compression.Native.dll assemblyVersion= fileVersion=8.0.1024.46610
clretwrc.dll assemblyVersion= fileVersion=8.0.1024.46610
clrgc.dll assemblyVersion= fileVersion=8.0.1024.46610
clrjit.dll assemblyVersion= fileVersion=8.0.1024.46610
coreclr.dll assemblyVersion= fileVersion=8.0.1024.46610
createdump.exe assemblyVersion= fileVersion=8.0.1024.46610
hostfxr.dll assemblyVersion= fileVersion=8.0.1024.46610
hostpolicy.dll assemblyVersion= fileVersion=8.0.1024.46610
mscordaccore.dll assemblyVersion= fileVersion=8.0.1024.46610
mscordaccore_amd64_amd64_8.0.1024.46610.dll assemblyVersion= fileVersion=8.0.1024.46610
mscordbi.dll assemblyVersion= fileVersion=8.0.1024.46610
mscorrc.dll assemblyVersion= fileVersion=8.0.1024.46610
msquic.dll assemblyVersion= fileVersion=2.3.5.0
Processing package runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/8.0.10
Adding runtime assets
Accessibility.dll assemblyVersion=4.0.0.0 fileVersion=8.0.1024.46803
DirectWriteForwarder.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
Microsoft.VisualBasic.Forms.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46803
Microsoft.VisualBasic.dll assemblyVersion=10.1.0.0 fileVersion=8.0.1024.46803
Microsoft.Win32.Registry.AccessControl.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
PresentationCore.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework-SystemCore.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework-SystemData.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework-SystemDrawing.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework-SystemXml.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework-SystemXmlLinq.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework.Aero.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework.Aero2.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework.AeroLite.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework.Classic.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework.Luna.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework.Royale.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationFramework.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
PresentationUI.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
ReachFramework.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
System.CodeDom.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Configuration.ConfigurationManager.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Design.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46803
System.Diagnostics.EventLog.Messages.dll assemblyVersion=8.0.0.0 fileVersion=0.0.0.0
System.Diagnostics.EventLog.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Diagnostics.PerformanceCounter.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.DirectoryServices.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Drawing.Design.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46803
System.Drawing.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46803
System.IO.Packaging.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Printing.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
System.Resources.Extensions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Cryptography.Pkcs.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Cryptography.ProtectedData.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Cryptography.Xml.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Security.Permissions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Windows.Controls.Ribbon.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
System.Windows.Extensions.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46610
System.Windows.Forms.Design.Editors.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46803
System.Windows.Forms.Design.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46803
System.Windows.Forms.Primitives.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46803
System.Windows.Forms.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46803
System.Windows.Input.Manipulations.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
System.Windows.Presentation.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
System.Xaml.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
UIAutomationClient.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
UIAutomationClientSideProviders.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
UIAutomationProvider.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
UIAutomationTypes.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
WindowsBase.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
WindowsFormsIntegration.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46810
Adding native assets
D3DCompiler_47_cor3.dll assemblyVersion= fileVersion=10.0.22621.3233
PenImc_cor3.dll assemblyVersion= fileVersion=8.0.1024.46810
PresentationNative_cor3.dll assemblyVersion= fileVersion=8.0.24.36504
vcruntime140_cor3.dll assemblyVersion= fileVersion=14.40.33810.0
wpfgfx_cor3.dll assemblyVersion= fileVersion=8.0.1024.46810
Processing package DotNetAnalyzers.DocumentationAnalyzers/1.0.0-beta.59
Processing package DotNetAnalyzers.DocumentationAnalyzers.Unstable/1.0.0.59
Processing package Humanizer.Core/2.14.1
Adding runtime assets
lib/net6.0/Humanizer.dll assemblyVersion=2.14.0.0 fileVersion=2.14.1.48190
Processing package Json.More.Net/2.0.1.2
Adding runtime assets
lib/net8.0/Json.More.dll assemblyVersion=2.0.0.0 fileVersion=2.0.1.2
Processing package JsonPointer.Net/5.0.0
Adding runtime assets
lib/net8.0/JsonPointer.Net.dll assemblyVersion=5.0.0.0 fileVersion=5.0.0.0
Processing package JsonSchema.Net/7.0.4
Adding runtime assets
lib/net8.0/JsonSchema.Net.dll assemblyVersion=7.0.0.0 fileVersion=7.0.4.0
Processing package Markdig.Signed/0.33.0
Adding runtime assets
lib/net6.0/Markdig.Signed.dll assemblyVersion=0.33.0.0 fileVersion=0.33.0.0
Processing package Microsoft.ApplicationInsights/2.21.0
Adding runtime assets
lib/netstandard2.0/Microsoft.ApplicationInsights.dll assemblyVersion=2.21.0.429 fileVersion=2.21.0.429
Processing package Microsoft.Bcl.AsyncInterfaces/8.0.0
Adding runtime assets
lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll assemblyVersion=8.0.0.0 fileVersion=8.0.23.53103
Processing package Microsoft.CodeAnalysis.Analyzers/3.3.4
Processing package Microsoft.CodeAnalysis.Common/4.9.2
Adding runtime assets
lib/net7.0/Microsoft.CodeAnalysis.dll assemblyVersion=4.9.0.0 fileVersion=4.900.224.12906
Adding resources assets
lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll assemblyVersion= fileVersion=
Processing package Microsoft.CodeAnalysis.CSharp/4.9.2
Adding runtime assets
lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll assemblyVersion=4.9.0.0 fileVersion=4.900.224.12906
Adding resources assets
lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll assemblyVersion= fileVersion=
Processing package Microsoft.Extensions.ObjectPool/8.0.10
Adding runtime assets
lib/net8.0/Microsoft.Extensions.ObjectPool.dll assemblyVersion=8.0.0.0 fileVersion=8.0.1024.46804
Processing package Microsoft.Management.Infrastructure/3.0.0
Processing package Microsoft.Management.Infrastructure.Runtime.Unix/3.0.0
Processing package Microsoft.Management.Infrastructure.Runtime.Win/3.0.0
Adding runtime assets
runtimes/win-x64/lib/netstandard1.6/microsoft.management.infrastructure.dll assemblyVersion=1.0.0.0 fileVersion=10.0.17763.30000
runtimes/win-x64/lib/netstandard1.6/microsoft.management.infrastructure.native.dll assemblyVersion=1.0.0.0 fileVersion=10.0.17763.30000
Adding native assets
runtimes/win-x64/native/microsoft.management.infrastructure.native.unmanaged.dll assemblyVersion= fileVersion=6.3.9600.18144
Processing package Microsoft.PowerShell.MarkdownRender/7.2.1
Adding runtime assets
lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll assemblyVersion=7.2.1.0 fileVersion=7.2.1.0
Processing package Microsoft.PowerShell.Native/7.4.0
Adding native assets
runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll assemblyVersion= fileVersion=10.0.10011.16384
runtimes/win-x64/native/pwrshplugin.dll assemblyVersion= fileVersion=10.0.10011.16384
Processing package Microsoft.Security.Extensions/1.2.0
Adding runtime assets
runtimes/win-x64/lib/net5.0/getfilesiginforedistwrapper.dll assemblyVersion=10.0.0.0 fileVersion=10.0.25098.1000
Adding native assets
runtimes/win-x64/native/getfilesiginforedist.dll assemblyVersion= fileVersion=0.0.0.0
Processing package Microsoft.Win32.Registry/4.7.0
Processing package Microsoft.Win32.Registry.AccessControl/8.0.0
Processing package Microsoft.Win32.SystemEvents/9.0.0-preview.6.24327.7
Adding runtime assets
runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.dll assemblyVersion=9.0.0.0 fileVersion=9.0.24.32707
Processing package Microsoft.Windows.Compatibility/8.0.10
Processing package Newtonsoft.Json/13.0.3
Adding runtime assets
lib/net6.0/Newtonsoft.Json.dll assemblyVersion=13.0.0.0 fileVersion=13.0.3.27908
Processing package runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0
Processing package runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0
Processing package runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0
Processing package runtime.native.System.Data.SqlClient.sni/4.7.0
Processing package runtime.native.System.IO.Ports/8.0.0
Processing package runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0
Processing package runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0
Processing package runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0
Processing package runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0
Adding native assets
runtimes/win-x64/native/sni.dll assemblyVersion= fileVersion=4.6.25512.1
Processing package runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0
Processing package StyleCop.Analyzers/1.2.0-beta.556
Processing package StyleCop.Analyzers.Unstable/1.2.0.556
Processing package System.CodeDom/8.0.0
Processing package System.Collections.Immutable/8.0.0
Processing package System.ComponentModel.Composition/8.0.0
Adding runtime assets
lib/net8.0/System.ComponentModel.Composition.dll assemblyVersion=8.0.0.0 fileVersion=8.0.23.53103
Processing package System.ComponentModel.Composition.Registration/8.0.0
Adding runtime assets
lib/net8.0/System.ComponentModel.Composition.Registration.dll assemblyVersion=8.0.0.0 fileVersion=8.0.23.53103
Processing package System.Configuration.ConfigurationManager/8.0.1
Processing package System.Data.Odbc/8.0.1
Adding runtime assets
runtimes/win/lib/net8.0/System.Data.Odbc.dll assemblyVersion=8.0.0.1 fileVersion=8.0.1024.46610
Processing package System.Data.OleDb/8.0.1
Adding runtime assets
runtimes/win/lib/net8.0/System.Data.OleDb.dll assemblyVersion=8.0.0.1 fileVersion=8.0.1024.46610
Processing package System.Data.SqlClient/4.8.6
Adding runtime assets
runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll assemblyVersion=4.6.1.6 fileVersion=4.700.23.52603
Processing package System.Diagnostics.DiagnosticSource/8.0.1
Processing package System.Diagnostics.EventLog/8.0.1
Processing package System.Diagnostics.PerformanceCounter/8.0.1
Processing package System.DirectoryServices/8.0.0
Processing package System.DirectoryServices.AccountManagement/8.0.1
Adding runtime assets
runtimes/win/lib/net8.0/System.DirectoryServices.AccountManagement.dll assemblyVersion=8.0.0.1 fileVersion=8.0.1024.46610
Processing package System.DirectoryServices.Protocols/8.0.0
Adding runtime assets
runtimes/win/lib/net8.0/System.DirectoryServices.Protocols.dll assemblyVersion=8.0.0.0 fileVersion=8.0.23.53103
Processing package System.Drawing.Common/9.0.0-preview.6.24327.6
Adding runtime assets
lib/net8.0/System.Drawing.Common.dll assemblyVersion=9.0.0.0 fileVersion=9.0.24.32706
lib/net8.0/System.Private.Windows.Core.dll assemblyVersion=9.0.0.0 fileVersion=9.0.24.32706
Processing package System.Formats.Asn1/8.0.1
Processing package System.IO.Packaging/8.0.1
Processing package System.IO.Ports/8.0.0
Adding runtime assets
runtimes/win/lib/net8.0/System.IO.Ports.dll assemblyVersion=8.0.0.0 fileVersion=8.0.23.53103
Processing package System.Management/8.0.0
Adding runtime assets
runtimes/win/lib/net8.0/System.Management.dll assemblyVersion=8.0.0.0 fileVersion=8.0.23.53103
Processing package System.Net.Http.WinHttpHandler/8.0.2
Adding runtime assets
runtimes/win/lib/net8.0/System.Net.Http.WinHttpHandler.dll assemblyVersion=8.0.0.2 fileVersion=8.0.824.36612
Processing package System.Numerics.Vectors/4.5.0
Processing package System.Private.ServiceModel/4.10.3
Adding runtime assets
lib/netstandard2.0/System.Private.ServiceModel.dll assemblyVersion=4.10.3.0 fileVersion=4.1000.323.51101
Adding resources assets
lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll assemblyVersion= fileVersion=
Processing package System.Reflection.Context/8.0.0
Adding runtime assets
lib/net8.0/System.Reflection.Context.dll assemblyVersion=8.0.0.0 fileVersion=8.0.23.53103
Processing package System.Reflection.DispatchProxy/4.7.1
Processing package System.Reflection.Metadata/8.0.0
Processing package System.Runtime.Caching/8.0.1
Adding runtime assets
runtimes/win/lib/net8.0/System.Runtime.Caching.dll assemblyVersion=8.0.0.1 fileVersion=8.0.1024.46610
Processing package System.Runtime.CompilerServices.Unsafe/6.0.0
Processing package System.Security.AccessControl/6.0.1
Processing package System.Security.Cryptography.Pkcs/8.0.1
Processing package System.Security.Cryptography.ProtectedData/8.0.0
Processing package System.Security.Cryptography.Xml/8.0.2
Processing package System.Security.Permissions/8.0.0
Processing package System.Security.Principal.Windows/5.0.0
Processing package System.ServiceModel.Duplex/4.10.3
Adding runtime assets
lib/net6.0/System.ServiceModel.Duplex.dll assemblyVersion=4.10.3.0 fileVersion=4.1000.323.51101
Processing package System.ServiceModel.Http/4.10.3
Adding runtime assets
lib/net6.0/System.ServiceModel.Http.dll assemblyVersion=4.10.3.0 fileVersion=4.1000.323.51101
Processing package System.ServiceModel.NetTcp/4.10.3
Adding runtime assets
lib/net6.0/System.ServiceModel.NetTcp.dll assemblyVersion=4.10.3.0 fileVersion=4.1000.323.51101
Processing package System.ServiceModel.Primitives/4.10.3
Adding runtime assets
lib/net6.0/System.ServiceModel.Primitives.dll assemblyVersion=4.10.3.0 fileVersion=4.1000.323.51101
lib/net6.0/System.ServiceModel.dll assemblyVersion=4.0.0.0 fileVersion=4.1000.323.51101
Processing package System.ServiceModel.Security/4.10.3
Adding runtime assets
lib/net6.0/System.ServiceModel.Security.dll assemblyVersion=4.10.3.0 fileVersion=4.1000.323.51101
Processing package System.ServiceModel.Syndication/8.0.0
Adding runtime assets
lib/net8.0/System.ServiceModel.Syndication.dll assemblyVersion=8.0.0.0 fileVersion=8.0.23.53103
Processing package System.ServiceProcess.ServiceController/8.0.1
Adding runtime assets
runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll assemblyVersion=8.0.0.1 fileVersion=8.0.1024.46610
Processing package System.Speech/8.0.0
Adding runtime assets
runtimes/win/lib/net8.0/System.Speech.dll assemblyVersion=8.0.0.0 fileVersion=8.0.23.53103
Processing package System.Text.Encoding.CodePages/8.0.0
Processing package System.Text.Encodings.Web/8.0.0
Processing package System.Threading.AccessControl/9.0.0-preview.6.24327.7
Adding runtime assets
runtimes/win/lib/net8.0/System.Threading.AccessControl.dll assemblyVersion=9.0.0.0 fileVersion=9.0.24.32707
Processing package System.Web.Services.Description/4.10.3
Adding runtime assets
lib/netstandard2.0/System.Web.Services.Description.dll assemblyVersion=4.10.3.0 fileVersion=4.1000.323.51101
Adding resources assets
lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/de/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/es/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/it/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll assemblyVersion= fileVersion=
Processing package System.Windows.Extensions/8.0.0
Processing package Microsoft.Management.Infrastructure.CimCmdlets/7.4.6
Adding runtime assets
Microsoft.Management.Infrastructure.CimCmdlets.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Processing package Microsoft.PowerShell.Commands.Diagnostics/7.4.6
Adding runtime assets
Microsoft.PowerShell.Commands.Diagnostics.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Processing package Microsoft.PowerShell.Commands.Management/7.4.6
Adding runtime assets
Microsoft.PowerShell.Commands.Management.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Processing package Microsoft.PowerShell.Commands.Utility/7.4.6
Adding runtime assets
Microsoft.PowerShell.Commands.Utility.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Processing package Microsoft.PowerShell.ConsoleHost/7.4.6
Adding runtime assets
Microsoft.PowerShell.ConsoleHost.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Processing package Microsoft.PowerShell.CoreCLR.Eventing/7.4.6
Adding runtime assets
Microsoft.PowerShell.CoreCLR.Eventing.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Processing package Microsoft.PowerShell.GraphicalHost/7.4.6
Adding runtime assets
Microsoft.PowerShell.GraphicalHost.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Processing package Microsoft.PowerShell.SDK/7.4.6
Adding runtime assets
Microsoft.PowerShell.SDK.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Processing package Microsoft.PowerShell.Security/7.4.6
Adding runtime assets
Microsoft.PowerShell.Security.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Processing package Microsoft.WSMan.Management/7.4.6
Adding runtime assets
Microsoft.WSMan.Management.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Processing package Microsoft.WSMan.Runtime/7.4.6
Adding runtime assets
Microsoft.WSMan.Runtime.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Processing package System.Management.Automation/7.4.6
Adding runtime assets
System.Management.Automation.dll assemblyVersion=7.4.6 fileVersion=7.4.6.500
Reconciling library pwsh/7.4.6.500
project: pwsh, version: 7.4.6.500
Adding runtime assets
Entry 0 for asset name: pwsh, relpath: pwsh.dll, assemblyVersion , fileVersion
Reconciling library runtimepack.Microsoft.NETCore.App.Runtime.win-x64/8.0.10
runtimepack: runtimepack.Microsoft.NETCore.App.Runtime.win-x64, version: 8.0.10
Adding runtime assets
Entry 1 for asset name: Microsoft.CSharp, relpath: Microsoft.CSharp.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 2 for asset name: Microsoft.VisualBasic.Core, relpath: Microsoft.VisualBasic.Core.dll, assemblyVersion 13.0.0.0, fileVersion 13.0.1024.46610
Entry 3 for asset name: Microsoft.Win32.Primitives, relpath: Microsoft.Win32.Primitives.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 4 for asset name: Microsoft.Win32.Registry, relpath: Microsoft.Win32.Registry.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 5 for asset name: System.AppContext, relpath: System.AppContext.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 6 for asset name: System.Buffers, relpath: System.Buffers.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 7 for asset name: System.Collections.Concurrent, relpath: System.Collections.Concurrent.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 8 for asset name: System.Collections.Immutable, relpath: System.Collections.Immutable.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 9 for asset name: System.Collections.NonGeneric, relpath: System.Collections.NonGeneric.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 10 for asset name: System.Collections.Specialized, relpath: System.Collections.Specialized.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 11 for asset name: System.Collections, relpath: System.Collections.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 12 for asset name: System.ComponentModel.Annotations, relpath: System.ComponentModel.Annotations.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 13 for asset name: System.ComponentModel.DataAnnotations, relpath: System.ComponentModel.DataAnnotations.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 14 for asset name: System.ComponentModel.EventBasedAsync, relpath: System.ComponentModel.EventBasedAsync.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 15 for asset name: System.ComponentModel.Primitives, relpath: System.ComponentModel.Primitives.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 16 for asset name: System.ComponentModel.TypeConverter, relpath: System.ComponentModel.TypeConverter.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 17 for asset name: System.ComponentModel, relpath: System.ComponentModel.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 18 for asset name: System.Configuration, relpath: System.Configuration.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 19 for asset name: System.Console, relpath: System.Console.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 20 for asset name: System.Core, relpath: System.Core.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 21 for asset name: System.Data.Common, relpath: System.Data.Common.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 22 for asset name: System.Data.DataSetExtensions, relpath: System.Data.DataSetExtensions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 23 for asset name: System.Data, relpath: System.Data.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 24 for asset name: System.Diagnostics.Contracts, relpath: System.Diagnostics.Contracts.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 25 for asset name: System.Diagnostics.Debug, relpath: System.Diagnostics.Debug.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 26 for asset name: System.Diagnostics.DiagnosticSource, relpath: System.Diagnostics.DiagnosticSource.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 27 for asset name: System.Diagnostics.FileVersionInfo, relpath: System.Diagnostics.FileVersionInfo.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 28 for asset name: System.Diagnostics.Process, relpath: System.Diagnostics.Process.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 29 for asset name: System.Diagnostics.StackTrace, relpath: System.Diagnostics.StackTrace.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 30 for asset name: System.Diagnostics.TextWriterTraceListener, relpath: System.Diagnostics.TextWriterTraceListener.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 31 for asset name: System.Diagnostics.Tools, relpath: System.Diagnostics.Tools.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 32 for asset name: System.Diagnostics.TraceSource, relpath: System.Diagnostics.TraceSource.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 33 for asset name: System.Diagnostics.Tracing, relpath: System.Diagnostics.Tracing.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 34 for asset name: System.Drawing.Primitives, relpath: System.Drawing.Primitives.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 35 for asset name: System.Dynamic.Runtime, relpath: System.Dynamic.Runtime.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 36 for asset name: System.Formats.Asn1, relpath: System.Formats.Asn1.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 37 for asset name: System.Formats.Tar, relpath: System.Formats.Tar.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 38 for asset name: System.Globalization.Calendars, relpath: System.Globalization.Calendars.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 39 for asset name: System.Globalization.Extensions, relpath: System.Globalization.Extensions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 40 for asset name: System.Globalization, relpath: System.Globalization.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 41 for asset name: System.IO.Compression.Brotli, relpath: System.IO.Compression.Brotli.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 42 for asset name: System.IO.Compression.FileSystem, relpath: System.IO.Compression.FileSystem.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 43 for asset name: System.IO.Compression.ZipFile, relpath: System.IO.Compression.ZipFile.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 44 for asset name: System.IO.Compression, relpath: System.IO.Compression.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 45 for asset name: System.IO.FileSystem.AccessControl, relpath: System.IO.FileSystem.AccessControl.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 46 for asset name: System.IO.FileSystem.DriveInfo, relpath: System.IO.FileSystem.DriveInfo.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 47 for asset name: System.IO.FileSystem.Primitives, relpath: System.IO.FileSystem.Primitives.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 48 for asset name: System.IO.FileSystem.Watcher, relpath: System.IO.FileSystem.Watcher.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 49 for asset name: System.IO.FileSystem, relpath: System.IO.FileSystem.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 50 for asset name: System.IO.IsolatedStorage, relpath: System.IO.IsolatedStorage.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 51 for asset name: System.IO.MemoryMappedFiles, relpath: System.IO.MemoryMappedFiles.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 52 for asset name: System.IO.Pipes.AccessControl, relpath: System.IO.Pipes.AccessControl.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 53 for asset name: System.IO.Pipes, relpath: System.IO.Pipes.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 54 for asset name: System.IO.UnmanagedMemoryStream, relpath: System.IO.UnmanagedMemoryStream.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 55 for asset name: System.IO, relpath: System.IO.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 56 for asset name: System.Linq.Expressions, relpath: System.Linq.Expressions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 57 for asset name: System.Linq.Parallel, relpath: System.Linq.Parallel.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 58 for asset name: System.Linq.Queryable, relpath: System.Linq.Queryable.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 59 for asset name: System.Linq, relpath: System.Linq.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 60 for asset name: System.Memory, relpath: System.Memory.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 61 for asset name: System.Net.Http.Json, relpath: System.Net.Http.Json.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 62 for asset name: System.Net.Http, relpath: System.Net.Http.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 63 for asset name: System.Net.HttpListener, relpath: System.Net.HttpListener.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 64 for asset name: System.Net.Mail, relpath: System.Net.Mail.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 65 for asset name: System.Net.NameResolution, relpath: System.Net.NameResolution.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 66 for asset name: System.Net.NetworkInformation, relpath: System.Net.NetworkInformation.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 67 for asset name: System.Net.Ping, relpath: System.Net.Ping.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 68 for asset name: System.Net.Primitives, relpath: System.Net.Primitives.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 69 for asset name: System.Net.Quic, relpath: System.Net.Quic.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 70 for asset name: System.Net.Requests, relpath: System.Net.Requests.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 71 for asset name: System.Net.Security, relpath: System.Net.Security.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 72 for asset name: System.Net.ServicePoint, relpath: System.Net.ServicePoint.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 73 for asset name: System.Net.Sockets, relpath: System.Net.Sockets.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 74 for asset name: System.Net.WebClient, relpath: System.Net.WebClient.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 75 for asset name: System.Net.WebHeaderCollection, relpath: System.Net.WebHeaderCollection.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 76 for asset name: System.Net.WebProxy, relpath: System.Net.WebProxy.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 77 for asset name: System.Net.WebSockets.Client, relpath: System.Net.WebSockets.Client.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 78 for asset name: System.Net.WebSockets, relpath: System.Net.WebSockets.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 79 for asset name: System.Net, relpath: System.Net.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 80 for asset name: System.Numerics.Vectors, relpath: System.Numerics.Vectors.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 81 for asset name: System.Numerics, relpath: System.Numerics.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 82 for asset name: System.ObjectModel, relpath: System.ObjectModel.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 83 for asset name: System.Private.CoreLib, relpath: System.Private.CoreLib.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 84 for asset name: System.Private.DataContractSerialization, relpath: System.Private.DataContractSerialization.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 85 for asset name: System.Private.Uri, relpath: System.Private.Uri.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 86 for asset name: System.Private.Xml.Linq, relpath: System.Private.Xml.Linq.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 87 for asset name: System.Private.Xml, relpath: System.Private.Xml.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 88 for asset name: System.Reflection.DispatchProxy, relpath: System.Reflection.DispatchProxy.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 89 for asset name: System.Reflection.Emit.ILGeneration, relpath: System.Reflection.Emit.ILGeneration.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 90 for asset name: System.Reflection.Emit.Lightweight, relpath: System.Reflection.Emit.Lightweight.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 91 for asset name: System.Reflection.Emit, relpath: System.Reflection.Emit.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 92 for asset name: System.Reflection.Extensions, relpath: System.Reflection.Extensions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 93 for asset name: System.Reflection.Metadata, relpath: System.Reflection.Metadata.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 94 for asset name: System.Reflection.Primitives, relpath: System.Reflection.Primitives.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 95 for asset name: System.Reflection.TypeExtensions, relpath: System.Reflection.TypeExtensions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 96 for asset name: System.Reflection, relpath: System.Reflection.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 97 for asset name: System.Resources.Reader, relpath: System.Resources.Reader.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 98 for asset name: System.Resources.ResourceManager, relpath: System.Resources.ResourceManager.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 99 for asset name: System.Resources.Writer, relpath: System.Resources.Writer.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 100 for asset name: System.Runtime.CompilerServices.Unsafe, relpath: System.Runtime.CompilerServices.Unsafe.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 101 for asset name: System.Runtime.CompilerServices.VisualC, relpath: System.Runtime.CompilerServices.VisualC.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 102 for asset name: System.Runtime.Extensions, relpath: System.Runtime.Extensions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 103 for asset name: System.Runtime.Handles, relpath: System.Runtime.Handles.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 104 for asset name: System.Runtime.InteropServices.JavaScript, relpath: System.Runtime.InteropServices.JavaScript.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 105 for asset name: System.Runtime.InteropServices.RuntimeInformation, relpath: System.Runtime.InteropServices.RuntimeInformation.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 106 for asset name: System.Runtime.InteropServices, relpath: System.Runtime.InteropServices.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 107 for asset name: System.Runtime.Intrinsics, relpath: System.Runtime.Intrinsics.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 108 for asset name: System.Runtime.Loader, relpath: System.Runtime.Loader.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 109 for asset name: System.Runtime.Numerics, relpath: System.Runtime.Numerics.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 110 for asset name: System.Runtime.Serialization.Formatters, relpath: System.Runtime.Serialization.Formatters.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 111 for asset name: System.Runtime.Serialization.Json, relpath: System.Runtime.Serialization.Json.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 112 for asset name: System.Runtime.Serialization.Primitives, relpath: System.Runtime.Serialization.Primitives.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 113 for asset name: System.Runtime.Serialization.Xml, relpath: System.Runtime.Serialization.Xml.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 114 for asset name: System.Runtime.Serialization, relpath: System.Runtime.Serialization.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 115 for asset name: System.Runtime, relpath: System.Runtime.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 116 for asset name: System.Security.AccessControl, relpath: System.Security.AccessControl.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 117 for asset name: System.Security.Claims, relpath: System.Security.Claims.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 118 for asset name: System.Security.Cryptography.Algorithms, relpath: System.Security.Cryptography.Algorithms.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 119 for asset name: System.Security.Cryptography.Cng, relpath: System.Security.Cryptography.Cng.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 120 for asset name: System.Security.Cryptography.Csp, relpath: System.Security.Cryptography.Csp.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 121 for asset name: System.Security.Cryptography.Encoding, relpath: System.Security.Cryptography.Encoding.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 122 for asset name: System.Security.Cryptography.OpenSsl, relpath: System.Security.Cryptography.OpenSsl.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 123 for asset name: System.Security.Cryptography.Primitives, relpath: System.Security.Cryptography.Primitives.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 124 for asset name: System.Security.Cryptography.X509Certificates, relpath: System.Security.Cryptography.X509Certificates.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 125 for asset name: System.Security.Cryptography, relpath: System.Security.Cryptography.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 126 for asset name: System.Security.Principal.Windows, relpath: System.Security.Principal.Windows.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 127 for asset name: System.Security.Principal, relpath: System.Security.Principal.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 128 for asset name: System.Security.SecureString, relpath: System.Security.SecureString.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 129 for asset name: System.Security, relpath: System.Security.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 130 for asset name: System.ServiceModel.Web, relpath: System.ServiceModel.Web.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 131 for asset name: System.ServiceProcess, relpath: System.ServiceProcess.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 132 for asset name: System.Text.Encoding.CodePages, relpath: System.Text.Encoding.CodePages.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 133 for asset name: System.Text.Encoding.Extensions, relpath: System.Text.Encoding.Extensions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 134 for asset name: System.Text.Encoding, relpath: System.Text.Encoding.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 135 for asset name: System.Text.Encodings.Web, relpath: System.Text.Encodings.Web.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 136 for asset name: System.Text.Json, relpath: System.Text.Json.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 137 for asset name: System.Text.RegularExpressions, relpath: System.Text.RegularExpressions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 138 for asset name: System.Threading.Channels, relpath: System.Threading.Channels.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 139 for asset name: System.Threading.Overlapped, relpath: System.Threading.Overlapped.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 140 for asset name: System.Threading.Tasks.Dataflow, relpath: System.Threading.Tasks.Dataflow.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 141 for asset name: System.Threading.Tasks.Extensions, relpath: System.Threading.Tasks.Extensions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 142 for asset name: System.Threading.Tasks.Parallel, relpath: System.Threading.Tasks.Parallel.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 143 for asset name: System.Threading.Tasks, relpath: System.Threading.Tasks.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 144 for asset name: System.Threading.Thread, relpath: System.Threading.Thread.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 145 for asset name: System.Threading.ThreadPool, relpath: System.Threading.ThreadPool.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 146 for asset name: System.Threading.Timer, relpath: System.Threading.Timer.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 147 for asset name: System.Threading, relpath: System.Threading.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 148 for asset name: System.Transactions.Local, relpath: System.Transactions.Local.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 149 for asset name: System.Transactions, relpath: System.Transactions.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 150 for asset name: System.ValueTuple, relpath: System.ValueTuple.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 151 for asset name: System.Web.HttpUtility, relpath: System.Web.HttpUtility.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 152 for asset name: System.Web, relpath: System.Web.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 153 for asset name: System.Windows, relpath: System.Windows.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 154 for asset name: System.Xml.Linq, relpath: System.Xml.Linq.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 155 for asset name: System.Xml.ReaderWriter, relpath: System.Xml.ReaderWriter.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 156 for asset name: System.Xml.Serialization, relpath: System.Xml.Serialization.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 157 for asset name: System.Xml.XDocument, relpath: System.Xml.XDocument.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 158 for asset name: System.Xml.XPath.XDocument, relpath: System.Xml.XPath.XDocument.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 159 for asset name: System.Xml.XPath, relpath: System.Xml.XPath.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 160 for asset name: System.Xml.XmlDocument, relpath: System.Xml.XmlDocument.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 161 for asset name: System.Xml.XmlSerializer, relpath: System.Xml.XmlSerializer.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 162 for asset name: System.Xml, relpath: System.Xml.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 163 for asset name: System, relpath: System.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 164 for asset name: mscorlib, relpath: mscorlib.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46610
Entry 165 for asset name: netstandard, relpath: netstandard.dll, assemblyVersion 2.1.0.0, fileVersion 8.0.1024.46610
Adding native assets
Entry 0 for asset name: System.IO.Compression.Native, relpath: System.IO.Compression.Native.dll, assemblyVersion , fileVersion 8.0.1024.46610
Entry 1 for asset name: clretwrc, relpath: clretwrc.dll, assemblyVersion , fileVersion 8.0.1024.46610
Entry 2 for asset name: clrgc, relpath: clrgc.dll, assemblyVersion , fileVersion 8.0.1024.46610
Entry 3 for asset name: clrjit, relpath: clrjit.dll, assemblyVersion , fileVersion 8.0.1024.46610
Entry 4 for asset name: coreclr, relpath: coreclr.dll, assemblyVersion , fileVersion 8.0.1024.46610
Entry 5 for asset name: createdump, relpath: createdump.exe, assemblyVersion , fileVersion 8.0.1024.46610
Entry 6 for asset name: hostfxr, relpath: hostfxr.dll, assemblyVersion , fileVersion 8.0.1024.46610
Entry 7 for asset name: hostpolicy, relpath: hostpolicy.dll, assemblyVersion , fileVersion 8.0.1024.46610
Entry 8 for asset name: mscordaccore, relpath: mscordaccore.dll, assemblyVersion , fileVersion 8.0.1024.46610
Entry 9 for asset name: mscordaccore_amd64_amd64_8.0.1024.46610, relpath: mscordaccore_amd64_amd64_8.0.1024.46610.dll, assemblyVersion , fileVersion 8.0.1024.46610
Entry 10 for asset name: mscordbi, relpath: mscordbi.dll, assemblyVersion , fileVersion 8.0.1024.46610
Entry 11 for asset name: mscorrc, relpath: mscorrc.dll, assemblyVersion , fileVersion 8.0.1024.46610
Entry 12 for asset name: msquic, relpath: msquic.dll, assemblyVersion , fileVersion 2.3.5.0
Reconciling library runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/8.0.10
runtimepack: runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64, version: 8.0.10
Adding runtime assets
Entry 166 for asset name: Accessibility, relpath: Accessibility.dll, assemblyVersion 4.0.0.0, fileVersion 8.0.1024.46803
Entry 167 for asset name: DirectWriteForwarder, relpath: DirectWriteForwarder.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 168 for asset name: Microsoft.VisualBasic.Forms, relpath: Microsoft.VisualBasic.Forms.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46803
Entry 169 for asset name: Microsoft.VisualBasic, relpath: Microsoft.VisualBasic.dll, assemblyVersion 10.1.0.0, fileVersion 8.0.1024.46803
Entry 170 for asset name: Microsoft.Win32.Registry.AccessControl, relpath: Microsoft.Win32.Registry.AccessControl.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 171 for asset name: PresentationCore, relpath: PresentationCore.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 172 for asset name: PresentationFramework-SystemCore, relpath: PresentationFramework-SystemCore.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 173 for asset name: PresentationFramework-SystemData, relpath: PresentationFramework-SystemData.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 174 for asset name: PresentationFramework-SystemDrawing, relpath: PresentationFramework-SystemDrawing.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 175 for asset name: PresentationFramework-SystemXml, relpath: PresentationFramework-SystemXml.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 176 for asset name: PresentationFramework-SystemXmlLinq, relpath: PresentationFramework-SystemXmlLinq.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 177 for asset name: PresentationFramework.Aero, relpath: PresentationFramework.Aero.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 178 for asset name: PresentationFramework.Aero2, relpath: PresentationFramework.Aero2.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 179 for asset name: PresentationFramework.AeroLite, relpath: PresentationFramework.AeroLite.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 180 for asset name: PresentationFramework.Classic, relpath: PresentationFramework.Classic.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 181 for asset name: PresentationFramework.Luna, relpath: PresentationFramework.Luna.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 182 for asset name: PresentationFramework.Royale, relpath: PresentationFramework.Royale.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 183 for asset name: PresentationFramework, relpath: PresentationFramework.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 184 for asset name: PresentationUI, relpath: PresentationUI.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 185 for asset name: ReachFramework, relpath: ReachFramework.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 186 for asset name: System.CodeDom, relpath: System.CodeDom.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 187 for asset name: System.Configuration.ConfigurationManager, relpath: System.Configuration.ConfigurationManager.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 188 for asset name: System.Design, relpath: System.Design.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46803
Entry 189 for asset name: System.Diagnostics.EventLog.Messages, relpath: System.Diagnostics.EventLog.Messages.dll, assemblyVersion 8.0.0.0, fileVersion 0.0.0.0
Entry 190 for asset name: System.Diagnostics.EventLog, relpath: System.Diagnostics.EventLog.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 191 for asset name: System.Diagnostics.PerformanceCounter, relpath: System.Diagnostics.PerformanceCounter.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 192 for asset name: System.DirectoryServices, relpath: System.DirectoryServices.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 193 for asset name: System.Drawing.Design, relpath: System.Drawing.Design.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46803
Entry 194 for asset name: System.Drawing, relpath: System.Drawing.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46803
Entry 195 for asset name: System.IO.Packaging, relpath: System.IO.Packaging.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 196 for asset name: System.Printing, relpath: System.Printing.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 197 for asset name: System.Resources.Extensions, relpath: System.Resources.Extensions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 198 for asset name: System.Security.Cryptography.Pkcs, relpath: System.Security.Cryptography.Pkcs.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 199 for asset name: System.Security.Cryptography.ProtectedData, relpath: System.Security.Cryptography.ProtectedData.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 200 for asset name: System.Security.Cryptography.Xml, relpath: System.Security.Cryptography.Xml.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 201 for asset name: System.Security.Permissions, relpath: System.Security.Permissions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 202 for asset name: System.Windows.Controls.Ribbon, relpath: System.Windows.Controls.Ribbon.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 203 for asset name: System.Windows.Extensions, relpath: System.Windows.Extensions.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46610
Entry 204 for asset name: System.Windows.Forms.Design.Editors, relpath: System.Windows.Forms.Design.Editors.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46803
Entry 205 for asset name: System.Windows.Forms.Design, relpath: System.Windows.Forms.Design.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46803
Entry 206 for asset name: System.Windows.Forms.Primitives, relpath: System.Windows.Forms.Primitives.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46803
Entry 207 for asset name: System.Windows.Forms, relpath: System.Windows.Forms.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46803
Entry 208 for asset name: System.Windows.Input.Manipulations, relpath: System.Windows.Input.Manipulations.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 209 for asset name: System.Windows.Presentation, relpath: System.Windows.Presentation.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 210 for asset name: System.Xaml, relpath: System.Xaml.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 211 for asset name: UIAutomationClient, relpath: UIAutomationClient.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 212 for asset name: UIAutomationClientSideProviders, relpath: UIAutomationClientSideProviders.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 213 for asset name: UIAutomationProvider, relpath: UIAutomationProvider.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 214 for asset name: UIAutomationTypes, relpath: UIAutomationTypes.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 215 for asset name: WindowsBase, relpath: WindowsBase.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Entry 216 for asset name: WindowsFormsIntegration, relpath: WindowsFormsIntegration.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46810
Adding native assets
Entry 13 for asset name: D3DCompiler_47_cor3, relpath: D3DCompiler_47_cor3.dll, assemblyVersion , fileVersion 10.0.22621.3233
Entry 14 for asset name: PenImc_cor3, relpath: PenImc_cor3.dll, assemblyVersion , fileVersion 8.0.1024.46810
Entry 15 for asset name: PresentationNative_cor3, relpath: PresentationNative_cor3.dll, assemblyVersion , fileVersion 8.0.24.36504
Entry 16 for asset name: vcruntime140_cor3, relpath: vcruntime140_cor3.dll, assemblyVersion , fileVersion 14.40.33810.0
Entry 17 for asset name: wpfgfx_cor3, relpath: wpfgfx_cor3.dll, assemblyVersion , fileVersion 8.0.1024.46810
Reconciling library DotNetAnalyzers.DocumentationAnalyzers/1.0.0-beta.59
No assets for library DotNetAnalyzers.DocumentationAnalyzers/1.0.0-beta.59
Reconciling library DotNetAnalyzers.DocumentationAnalyzers.Unstable/1.0.0.59
No assets for library DotNetAnalyzers.DocumentationAnalyzers.Unstable/1.0.0.59
Reconciling library Humanizer.Core/2.14.1
package: Humanizer.Core, version: 2.14.1
Adding runtime assets
Entry 217 for asset name: Humanizer, relpath: lib/net6.0/Humanizer.dll, assemblyVersion 2.14.0.0, fileVersion 2.14.1.48190
Reconciling library Json.More.Net/2.0.1.2
package: Json.More.Net, version: 2.0.1.2
Adding runtime assets
Entry 218 for asset name: Json.More, relpath: lib/net8.0/Json.More.dll, assemblyVersion 2.0.0.0, fileVersion 2.0.1.2
Reconciling library JsonPointer.Net/5.0.0
package: JsonPointer.Net, version: 5.0.0
Adding runtime assets
Entry 219 for asset name: JsonPointer.Net, relpath: lib/net8.0/JsonPointer.Net.dll, assemblyVersion 5.0.0.0, fileVersion 5.0.0.0
Reconciling library JsonSchema.Net/7.0.4
package: JsonSchema.Net, version: 7.0.4
Adding runtime assets
Entry 220 for asset name: JsonSchema.Net, relpath: lib/net8.0/JsonSchema.Net.dll, assemblyVersion 7.0.0.0, fileVersion 7.0.4.0
Reconciling library Markdig.Signed/0.33.0
package: Markdig.Signed, version: 0.33.0
Adding runtime assets
Entry 221 for asset name: Markdig.Signed, relpath: lib/net6.0/Markdig.Signed.dll, assemblyVersion 0.33.0.0, fileVersion 0.33.0.0
Reconciling library Microsoft.ApplicationInsights/2.21.0
package: Microsoft.ApplicationInsights, version: 2.21.0
Adding runtime assets
Entry 222 for asset name: Microsoft.ApplicationInsights, relpath: lib/netstandard2.0/Microsoft.ApplicationInsights.dll, assemblyVersion 2.21.0.429, fileVersion 2.21.0.429
Reconciling library Microsoft.Bcl.AsyncInterfaces/8.0.0
package: Microsoft.Bcl.AsyncInterfaces, version: 8.0.0
Adding runtime assets
Entry 223 for asset name: Microsoft.Bcl.AsyncInterfaces, relpath: lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.23.53103
Reconciling library Microsoft.CodeAnalysis.Analyzers/3.3.4
No assets for library Microsoft.CodeAnalysis.Analyzers/3.3.4
Reconciling library Microsoft.CodeAnalysis.Common/4.9.2
package: Microsoft.CodeAnalysis.Common, version: 4.9.2
Adding runtime assets
Entry 224 for asset name: Microsoft.CodeAnalysis, relpath: lib/net7.0/Microsoft.CodeAnalysis.dll, assemblyVersion 4.9.0.0, fileVersion 4.900.224.12906
Adding resources assets
Entry 0 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 1 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 2 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 3 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 4 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 5 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 6 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 7 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 8 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 9 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 10 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 11 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Entry 12 for asset name: Microsoft.CodeAnalysis.resources, relpath: lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll, assemblyVersion , fileVersion
Reconciling library Microsoft.CodeAnalysis.CSharp/4.9.2
package: Microsoft.CodeAnalysis.CSharp, version: 4.9.2
Adding runtime assets
Entry 225 for asset name: Microsoft.CodeAnalysis.CSharp, relpath: lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll, assemblyVersion 4.9.0.0, fileVersion 4.900.224.12906
Adding resources assets
Entry 13 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 14 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 15 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 16 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 17 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 18 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 19 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 20 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 21 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 22 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 23 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 24 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Entry 25 for asset name: Microsoft.CodeAnalysis.CSharp.resources, relpath: lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll, assemblyVersion , fileVersion
Reconciling library Microsoft.Extensions.ObjectPool/8.0.10
package: Microsoft.Extensions.ObjectPool, version: 8.0.10
Adding runtime assets
Entry 226 for asset name: Microsoft.Extensions.ObjectPool, relpath: lib/net8.0/Microsoft.Extensions.ObjectPool.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.1024.46804
Reconciling library Microsoft.Management.Infrastructure/3.0.0
No assets for library Microsoft.Management.Infrastructure/3.0.0
Reconciling library Microsoft.Management.Infrastructure.Runtime.Unix/3.0.0
No assets for library Microsoft.Management.Infrastructure.Runtime.Unix/3.0.0
Reconciling library Microsoft.Management.Infrastructure.Runtime.Win/3.0.0
package: Microsoft.Management.Infrastructure.Runtime.Win, version: 3.0.0
Adding runtime assets
Entry 227 for asset name: microsoft.management.infrastructure, relpath: runtimes/win-x64/lib/netstandard1.6/microsoft.management.infrastructure.dll, assemblyVersion 1.0.0.0, fileVersion 10.0.17763.30000
Entry 228 for asset name: microsoft.management.infrastructure.native, relpath: runtimes/win-x64/lib/netstandard1.6/microsoft.management.infrastructure.native.dll, assemblyVersion 1.0.0.0, fileVersion 10.0.17763.30000
Adding native assets
Entry 18 for asset name: microsoft.management.infrastructure.native.unmanaged, relpath: runtimes/win-x64/native/microsoft.management.infrastructure.native.unmanaged.dll, assemblyVersion , fileVersion 6.3.9600.18144
Reconciling library Microsoft.PowerShell.MarkdownRender/7.2.1
package: Microsoft.PowerShell.MarkdownRender, version: 7.2.1
Adding runtime assets
Entry 229 for asset name: Microsoft.PowerShell.MarkdownRender, relpath: lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll, assemblyVersion 7.2.1.0, fileVersion 7.2.1.0
Reconciling library Microsoft.PowerShell.Native/7.4.0
package: Microsoft.PowerShell.Native, version: 7.4.0
Adding native assets
Entry 19 for asset name: PowerShell.Core.Instrumentation, relpath: runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll, assemblyVersion , fileVersion 10.0.10011.16384
Entry 20 for asset name: pwrshplugin, relpath: runtimes/win-x64/native/pwrshplugin.dll, assemblyVersion , fileVersion 10.0.10011.16384
Reconciling library Microsoft.Security.Extensions/1.2.0
package: Microsoft.Security.Extensions, version: 1.2.0
Adding runtime assets
Entry 230 for asset name: getfilesiginforedistwrapper, relpath: runtimes/win-x64/lib/net5.0/getfilesiginforedistwrapper.dll, assemblyVersion 10.0.0.0, fileVersion 10.0.25098.1000
Adding native assets
Entry 21 for asset name: getfilesiginforedist, relpath: runtimes/win-x64/native/getfilesiginforedist.dll, assemblyVersion , fileVersion 0.0.0.0
Reconciling library Microsoft.Win32.Registry/4.7.0
No assets for library Microsoft.Win32.Registry/4.7.0
Reconciling library Microsoft.Win32.Registry.AccessControl/8.0.0
No assets for library Microsoft.Win32.Registry.AccessControl/8.0.0
Reconciling library Microsoft.Win32.SystemEvents/9.0.0-preview.6.24327.7
package: Microsoft.Win32.SystemEvents, version: 9.0.0-preview.6.24327.7
Adding runtime assets
Entry 231 for asset name: Microsoft.Win32.SystemEvents, relpath: runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.dll, assemblyVersion 9.0.0.0, fileVersion 9.0.24.32707
Reconciling library Microsoft.Windows.Compatibility/8.0.10
No assets for library Microsoft.Windows.Compatibility/8.0.10
Reconciling library Newtonsoft.Json/13.0.3
package: Newtonsoft.Json, version: 13.0.3
Adding runtime assets
Entry 232 for asset name: Newtonsoft.Json, relpath: lib/net6.0/Newtonsoft.Json.dll, assemblyVersion 13.0.0.0, fileVersion 13.0.3.27908
Reconciling library runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0
No assets for library runtime.linux-arm.runtime.native.System.IO.Ports/8.0.0
Reconciling library runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0
No assets for library runtime.linux-arm64.runtime.native.System.IO.Ports/8.0.0
Reconciling library runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0
No assets for library runtime.linux-x64.runtime.native.System.IO.Ports/8.0.0
Reconciling library runtime.native.System.Data.SqlClient.sni/4.7.0
No assets for library runtime.native.System.Data.SqlClient.sni/4.7.0
Reconciling library runtime.native.System.IO.Ports/8.0.0
No assets for library runtime.native.System.IO.Ports/8.0.0
Reconciling library runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0
No assets for library runtime.osx-arm64.runtime.native.System.IO.Ports/8.0.0
Reconciling library runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0
No assets for library runtime.osx-x64.runtime.native.System.IO.Ports/8.0.0
Reconciling library runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0
No assets for library runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0
Reconciling library runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0
package: runtime.win-x64.runtime.native.System.Data.SqlClient.sni, version: 4.4.0
Adding native assets
Entry 22 for asset name: sni, relpath: runtimes/win-x64/native/sni.dll, assemblyVersion , fileVersion 4.6.25512.1
Reconciling library runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0
No assets for library runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0
Reconciling library StyleCop.Analyzers/1.2.0-beta.556
No assets for library StyleCop.Analyzers/1.2.0-beta.556
Reconciling library StyleCop.Analyzers.Unstable/1.2.0.556
No assets for library StyleCop.Analyzers.Unstable/1.2.0.556
Reconciling library System.CodeDom/8.0.0
No assets for library System.CodeDom/8.0.0
Reconciling library System.Collections.Immutable/8.0.0
No assets for library System.Collections.Immutable/8.0.0
Reconciling library System.ComponentModel.Composition/8.0.0
package: System.ComponentModel.Composition, version: 8.0.0
Adding runtime assets
Entry 233 for asset name: System.ComponentModel.Composition, relpath: lib/net8.0/System.ComponentModel.Composition.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.23.53103
Reconciling library System.ComponentModel.Composition.Registration/8.0.0
package: System.ComponentModel.Composition.Registration, version: 8.0.0
Adding runtime assets
Entry 234 for asset name: System.ComponentModel.Composition.Registration, relpath: lib/net8.0/System.ComponentModel.Composition.Registration.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.23.53103
Reconciling library System.Configuration.ConfigurationManager/8.0.1
No assets for library System.Configuration.ConfigurationManager/8.0.1
Reconciling library System.Data.Odbc/8.0.1
package: System.Data.Odbc, version: 8.0.1
Adding runtime assets
Entry 235 for asset name: System.Data.Odbc, relpath: runtimes/win/lib/net8.0/System.Data.Odbc.dll, assemblyVersion 8.0.0.1, fileVersion 8.0.1024.46610
Reconciling library System.Data.OleDb/8.0.1
package: System.Data.OleDb, version: 8.0.1
Adding runtime assets
Entry 236 for asset name: System.Data.OleDb, relpath: runtimes/win/lib/net8.0/System.Data.OleDb.dll, assemblyVersion 8.0.0.1, fileVersion 8.0.1024.46610
Reconciling library System.Data.SqlClient/4.8.6
package: System.Data.SqlClient, version: 4.8.6
Adding runtime assets
Entry 237 for asset name: System.Data.SqlClient, relpath: runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll, assemblyVersion 4.6.1.6, fileVersion 4.700.23.52603
Reconciling library System.Diagnostics.DiagnosticSource/8.0.1
No assets for library System.Diagnostics.DiagnosticSource/8.0.1
Reconciling library System.Diagnostics.EventLog/8.0.1
No assets for library System.Diagnostics.EventLog/8.0.1
Reconciling library System.Diagnostics.PerformanceCounter/8.0.1
No assets for library System.Diagnostics.PerformanceCounter/8.0.1
Reconciling library System.DirectoryServices/8.0.0
No assets for library System.DirectoryServices/8.0.0
Reconciling library System.DirectoryServices.AccountManagement/8.0.1
package: System.DirectoryServices.AccountManagement, version: 8.0.1
Adding runtime assets
Entry 238 for asset name: System.DirectoryServices.AccountManagement, relpath: runtimes/win/lib/net8.0/System.DirectoryServices.AccountManagement.dll, assemblyVersion 8.0.0.1, fileVersion 8.0.1024.46610
Reconciling library System.DirectoryServices.Protocols/8.0.0
package: System.DirectoryServices.Protocols, version: 8.0.0
Adding runtime assets
Entry 239 for asset name: System.DirectoryServices.Protocols, relpath: runtimes/win/lib/net8.0/System.DirectoryServices.Protocols.dll, assemblyVersion 8.0.0.0, fileVersion 8.0.23.53103
Reconciling library System.Drawing.Common/9.0.0-preview.6.24327.6
package: System.Drawing.Common, version: 9.0.0-preview.6.24327.6