-
Notifications
You must be signed in to change notification settings - Fork 0
/
StackOverflow.txt
2172 lines (2170 loc) · 398 KB
/
StackOverflow.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
Expected command to pass but it did not."
File Name: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/dotnet
Arguments: /Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.dll
Exit Code: 134
StdOut:
StdErr:
Tracing enabled @ Thu Jul 18 17:01:36 2019 UTC
--- Invoked dotnet [version: 5.0.0-alpha1.27918.2, commit hash: d9c80479ba67e811b4ea3933c68cb6aa403b966d] main = {
/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/dotnet
/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.dll
}
Reading fx resolver directory=[/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/host/fxr]
Considering fxr version=[5.0.0-alpha1.27918.2]...
Detected latest fxr version=[/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/host/fxr/5.0.0-alpha1.27918.2]...
Resolved fxr [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/host/fxr/5.0.0-alpha1.27918.2/libhostfxr.dylib]...
Invoking fx resolver [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/host/fxr/5.0.0-alpha1.27918.2/libhostfxr.dylib] v2
Host path: [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/dotnet]
Dotnet path: [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/]
App path: [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/dotnet.dll]
Tracing enabled @ Thu Jul 18 17:01:36 2019 UTC
--- Invoked hostfxr_main_startupinfo [commit hash: d9c80479ba67e811b4ea3933c68cb6aa403b966d]
Checking if CoreCLR path exists=[/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/libcoreclr.dylib]
--- Executing in muxer mode...
Using the provided arguments to determine the application to execute.
Using dotnet root path [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/]
App runtimeconfig.json from [/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.dll]
Runtime config is cfg=/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.runtimeconfig.json dev=/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.runtimeconfig.dev.json
Attempting to read runtime config: /Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.runtimeconfig.json
Attempting to read dev runtime config: /Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.runtimeconfig.dev.json
Runtime config [/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.runtimeconfig.json] is valid=[1]
--- The specified framework 'Microsoft.NETCore.App', version '5.0.0-alpha1.27918.2', apply_patches=1, version_compatibility_range=minor is compatible with the previously referenced version '5.0.0-alpha1.27918.2'.
--- Resolving FX directory, name 'Microsoft.NETCore.App' version '5.0.0-alpha1.27918.2'
Searching FX directory in [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish]
Attempting FX roll forward starting from version='[5.0.0-alpha1.27918.2]', apply_patches=1, version_compatibility_range=minor, roll_to_highest_version=0, prefer_release=0
'Roll forward' enabled with version_compatibility_range [minor]. Looking for the lowest release/pre-release greater than or equal version to [5.0.0-alpha1.27918.2]
Found version [5.0.0-alpha1.27918.2]
Framework reference resolved to version '5.0.0-alpha1.27918.2'.
Changing Selected FX version from [] to [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2]
Chose FX version [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2]
Runtime config is cfg=/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.NETCore.App.runtimeconfig.json dev=/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.NETCore.App.runtimeconfig.dev.json
Attempting to read runtime config: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.NETCore.App.runtimeconfig.json
Attempting to read dev runtime config: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.NETCore.App.runtimeconfig.dev.json
Runtime config [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.NETCore.App.runtimeconfig.json] is valid=[1]
--- Summary of all frameworks:
framework:'Microsoft.NETCore.App', lowest requested version='5.0.0-alpha1.27918.2', found version='5.0.0-alpha1.27918.2', effective reference version='5.0.0-alpha1.27918.2' apply_patches=1, version_compatibility_range=minor, roll_to_highest_version=0, folder=/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Executing as a framework-dependent app as per config file [/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.runtimeconfig.json]
--- Resolving libhostpolicy.dylib version from deps json [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.NETCore.App.deps.json]
Resolved version 5.0.0-alpha1.27918.2 from dependency manifest file [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.NETCore.App.deps.json]
Directory core servicing at [] was not specified or found
Fallback directory core servicing at [opt/coreservicing] was not found
Did not find libhostpolicy.dylib in directory pkgs/runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy/5.0.0-alpha1.27918.2/runtimes/osx-x64/native
The expected libhostpolicy.dylib directory is [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2]
Tracing enabled @ Thu Jul 18 17:01:36 2019 UTC
Reading from host interface version: [0x16041101:240] to initialize policy version: [0x16041101:240]
--- Invoked hostpolicy [commit hash: d9c80479ba67e811b4ea3933c68cb6aa403b966d] [runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy,5.0.0-alpha1.27918.2,runtimes/osx-x64/native][x64] corehost_main = {
/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/dotnet
/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.dll
}
Deps file:
Directory core servicing at [] was not specified or found
Fallback directory core servicing at [opt/coreservicing] was not found
-- arguments_t: host_path='/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/dotnet' app_root='/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/' deps='/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.deps.json' core_svc='' mgd_app='/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.dll'
-- arguments_t: dotnet shared store: '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/store/x64/netcoreapp5.0'
Using Fx /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.NETCore.App.deps.json deps file
Loading deps file... /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.NETCore.App.deps.json as framework dependent=[0]
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.CSharp.dll assemblyVersion=4.0.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.VisualBasic.Core.dll assemblyVersion=10.0.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.VisualBasic.dll assemblyVersion=10.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.Win32.Primitives.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.Win32.Registry.dll assemblyVersion=4.1.2.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.AppContext.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Buffers.dll assemblyVersion=4.0.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Concurrent.dll assemblyVersion=4.0.14.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Immutable.dll assemblyVersion=1.2.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.NonGeneric.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Specialized.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.Annotations.dll assemblyVersion=4.3.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.DataAnnotations.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.EventBasedAsync.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.Primitives.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.TypeConverter.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.dll assemblyVersion=4.0.3.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Configuration.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Console.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Core.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Data.Common.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Data.DataSetExtensions.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Data.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Contracts.dll assemblyVersion=4.0.3.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Debug.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.DiagnosticSource.dll assemblyVersion=4.0.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.FileVersionInfo.dll assemblyVersion=4.0.3.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Process.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.StackTrace.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.TextWriterTraceListener.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Tools.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.TraceSource.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Tracing.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Drawing.Primitives.dll assemblyVersion=4.2.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Drawing.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Dynamic.Runtime.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Globalization.Calendars.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Globalization.Extensions.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Globalization.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Compression.Brotli.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Compression.FileSystem.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Compression.ZipFile.dll assemblyVersion=4.0.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Compression.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.FileSystem.AccessControl.dll assemblyVersion=4.0.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.FileSystem.DriveInfo.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.FileSystem.Primitives.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.FileSystem.Watcher.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.FileSystem.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.IsolatedStorage.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.MemoryMappedFiles.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Pipes.AccessControl.dll assemblyVersion=4.0.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Pipes.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.UnmanagedMemoryStream.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.IO.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Linq.Expressions.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Linq.Parallel.dll assemblyVersion=4.0.3.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Linq.Queryable.dll assemblyVersion=4.0.3.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Linq.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Memory.dll assemblyVersion=4.2.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Http.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.HttpListener.dll assemblyVersion=4.0.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Mail.dll assemblyVersion=4.0.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.NameResolution.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.NetworkInformation.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Ping.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Primitives.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Requests.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Security.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.ServicePoint.dll assemblyVersion=4.0.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Sockets.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.WebClient.dll assemblyVersion=4.0.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.WebHeaderCollection.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.WebProxy.dll assemblyVersion=4.0.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.WebSockets.Client.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.WebSockets.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Net.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Numerics.Vectors.dll assemblyVersion=4.1.5.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Numerics.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.ObjectModel.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Private.DataContractSerialization.dll assemblyVersion=4.1.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Private.Uri.dll assemblyVersion=4.0.5.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Private.Xml.Linq.dll assemblyVersion=4.0.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Private.Xml.dll assemblyVersion=4.0.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.DispatchProxy.dll assemblyVersion=4.0.5.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Emit.ILGeneration.dll assemblyVersion=4.1.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Emit.Lightweight.dll assemblyVersion=4.1.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Emit.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Extensions.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Metadata.dll assemblyVersion=1.4.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Primitives.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.TypeExtensions.dll assemblyVersion=4.1.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Resources.Reader.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Resources.ResourceManager.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Resources.Writer.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.CompilerServices.Unsafe.dll assemblyVersion=4.0.5.0 fileVersion=4.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.CompilerServices.VisualC.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Extensions.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Handles.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.InteropServices.RuntimeInformation.dll assemblyVersion=4.0.3.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.InteropServices.WindowsRuntime.dll assemblyVersion=4.0.3.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.InteropServices.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Intrinsics.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Loader.dll assemblyVersion=4.1.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Numerics.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Serialization.Formatters.dll assemblyVersion=4.0.3.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Serialization.Json.dll assemblyVersion=4.0.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Serialization.Primitives.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Serialization.Xml.dll assemblyVersion=4.1.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Serialization.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.WindowsRuntime.UI.Xaml.dll assemblyVersion=4.0.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.WindowsRuntime.dll assemblyVersion=4.0.14.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.AccessControl.dll assemblyVersion=4.1.2.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Claims.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.Algorithms.dll assemblyVersion=4.3.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.Cng.dll assemblyVersion=4.3.2.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.Csp.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.Encoding.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.OpenSsl.dll assemblyVersion=4.1.2.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.Primitives.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.X509Certificates.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Principal.Windows.dll assemblyVersion=4.1.2.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Principal.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.SecureString.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Security.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.ServiceModel.Web.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.ServiceProcess.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Text.Encoding.CodePages.dll assemblyVersion=4.1.2.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Text.Encoding.Extensions.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Text.Encoding.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Text.Encodings.Web.dll assemblyVersion=4.0.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Text.Json.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Text.RegularExpressions.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Channels.dll assemblyVersion=4.0.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Overlapped.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Tasks.Dataflow.dll assemblyVersion=4.6.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Tasks.Extensions.dll assemblyVersion=4.3.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Tasks.Parallel.dll assemblyVersion=4.0.3.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Tasks.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Thread.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.ThreadPool.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Timer.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Transactions.Local.dll assemblyVersion=4.0.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Transactions.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.ValueTuple.dll assemblyVersion=4.0.4.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Web.HttpUtility.dll assemblyVersion=4.0.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Web.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Windows.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.Linq.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.ReaderWriter.dll assemblyVersion=4.2.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.Serialization.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.XDocument.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.XPath.XDocument.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.XPath.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.XmlDocument.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.XmlSerializer.dll assemblyVersion=4.1.1.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/System.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/WindowsBase.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/mscorlib.dll assemblyVersion=4.0.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding runtime asset runtimes/osx-x64/lib/netcoreapp5.0/netstandard.dll assemblyVersion=2.1.0.0 fileVersion=5.0.19.36705 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/SOS_README.md assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Globalization.Native.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.IO.Compression.Native.a assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.IO.Compression.Native.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Native.a assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Native.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Net.Http.Native.a assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Net.Http.Native.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Net.Security.Native.a assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Net.Security.Native.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Private.CoreLib.dll assemblyVersion=5.0.0.0 fileVersion=5.0.19.36703 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Security.Cryptography.Native.Apple.a assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Security.Cryptography.Native.Apple.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Security.Cryptography.Native.OpenSsl.a assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/libclrjit.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/libcoreclr.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/libdbgshim.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/libmscordaccore.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/libmscordbi.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Adding native asset runtimes/osx-x64/native/libhostpolicy.dylib assemblyVersion= fileVersion=0.0.0.0 from runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy/5.0.0-alpha1.27918.2
Reconciling library Microsoft.NETCore.App.Internal/5.0.0-alpha1.27918.2
Library Microsoft.NETCore.App.Internal/5.0.0-alpha1.27918.2 does not exist
Reconciling library Microsoft.NETCore.DotNetHostPolicy/5.0.0-alpha1.27918.2
Library Microsoft.NETCore.DotNetHostPolicy/5.0.0-alpha1.27918.2 does not exist
Reconciling library Microsoft.NETCore.Platforms/5.0.0-alpha1.19367.5
Library Microsoft.NETCore.Platforms/5.0.0-alpha1.19367.5 does not exist
Reconciling library Microsoft.NETCore.Targets/5.0.0-alpha1.19367.5
Library Microsoft.NETCore.Targets/5.0.0-alpha1.19367.5 does not exist
Reconciling library NETStandard.Library/2.2.0-prerelease.19367.3
Library NETStandard.Library/2.2.0-prerelease.19367.3 does not exist
Reconciling library runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2
Parsed runtime deps entry 0 for asset name: Microsoft.CSharp from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.CSharp.dll, assemblyVersion 4.0.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 1 for asset name: Microsoft.VisualBasic.Core from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.VisualBasic.Core.dll, assemblyVersion 10.0.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 2 for asset name: Microsoft.VisualBasic from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.VisualBasic.dll, assemblyVersion 10.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 3 for asset name: Microsoft.Win32.Primitives from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.Win32.Primitives.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 4 for asset name: Microsoft.Win32.Registry from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.Win32.Registry.dll, assemblyVersion 4.1.2.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 5 for asset name: System.AppContext from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.AppContext.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 6 for asset name: System.Buffers from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Buffers.dll, assemblyVersion 4.0.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 7 for asset name: System.Collections.Concurrent from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Concurrent.dll, assemblyVersion 4.0.14.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 8 for asset name: System.Collections.Immutable from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Immutable.dll, assemblyVersion 1.2.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 9 for asset name: System.Collections.NonGeneric from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.NonGeneric.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 10 for asset name: System.Collections.Specialized from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Specialized.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 11 for asset name: System.Collections from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 12 for asset name: System.ComponentModel.Annotations from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.Annotations.dll, assemblyVersion 4.3.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 13 for asset name: System.ComponentModel.DataAnnotations from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.DataAnnotations.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 14 for asset name: System.ComponentModel.EventBasedAsync from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.EventBasedAsync.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 15 for asset name: System.ComponentModel.Primitives from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.Primitives.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 16 for asset name: System.ComponentModel.TypeConverter from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.TypeConverter.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 17 for asset name: System.ComponentModel from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.dll, assemblyVersion 4.0.3.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 18 for asset name: System.Configuration from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Configuration.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 19 for asset name: System.Console from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Console.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 20 for asset name: System.Core from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Core.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 21 for asset name: System.Data.Common from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Data.Common.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 22 for asset name: System.Data.DataSetExtensions from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Data.DataSetExtensions.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 23 for asset name: System.Data from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Data.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 24 for asset name: System.Diagnostics.Contracts from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Contracts.dll, assemblyVersion 4.0.3.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 25 for asset name: System.Diagnostics.Debug from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Debug.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 26 for asset name: System.Diagnostics.DiagnosticSource from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.DiagnosticSource.dll, assemblyVersion 4.0.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 27 for asset name: System.Diagnostics.FileVersionInfo from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.FileVersionInfo.dll, assemblyVersion 4.0.3.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 28 for asset name: System.Diagnostics.Process from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Process.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 29 for asset name: System.Diagnostics.StackTrace from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.StackTrace.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 30 for asset name: System.Diagnostics.TextWriterTraceListener from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.TextWriterTraceListener.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 31 for asset name: System.Diagnostics.Tools from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Tools.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 32 for asset name: System.Diagnostics.TraceSource from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.TraceSource.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 33 for asset name: System.Diagnostics.Tracing from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Tracing.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 34 for asset name: System.Drawing.Primitives from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Drawing.Primitives.dll, assemblyVersion 4.2.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 35 for asset name: System.Drawing from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Drawing.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 36 for asset name: System.Dynamic.Runtime from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Dynamic.Runtime.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 37 for asset name: System.Globalization.Calendars from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Globalization.Calendars.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 38 for asset name: System.Globalization.Extensions from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Globalization.Extensions.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 39 for asset name: System.Globalization from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Globalization.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 40 for asset name: System.IO.Compression.Brotli from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Compression.Brotli.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 41 for asset name: System.IO.Compression.FileSystem from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Compression.FileSystem.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 42 for asset name: System.IO.Compression.ZipFile from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Compression.ZipFile.dll, assemblyVersion 4.0.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 43 for asset name: System.IO.Compression from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Compression.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 44 for asset name: System.IO.FileSystem.AccessControl from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.FileSystem.AccessControl.dll, assemblyVersion 4.0.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 45 for asset name: System.IO.FileSystem.DriveInfo from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.FileSystem.DriveInfo.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 46 for asset name: System.IO.FileSystem.Primitives from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.FileSystem.Primitives.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 47 for asset name: System.IO.FileSystem.Watcher from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.FileSystem.Watcher.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 48 for asset name: System.IO.FileSystem from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.FileSystem.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 49 for asset name: System.IO.IsolatedStorage from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.IsolatedStorage.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 50 for asset name: System.IO.MemoryMappedFiles from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.MemoryMappedFiles.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 51 for asset name: System.IO.Pipes.AccessControl from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Pipes.AccessControl.dll, assemblyVersion 4.0.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 52 for asset name: System.IO.Pipes from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.Pipes.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 53 for asset name: System.IO.UnmanagedMemoryStream from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.UnmanagedMemoryStream.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 54 for asset name: System.IO from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.IO.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 55 for asset name: System.Linq.Expressions from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Linq.Expressions.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 56 for asset name: System.Linq.Parallel from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Linq.Parallel.dll, assemblyVersion 4.0.3.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 57 for asset name: System.Linq.Queryable from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Linq.Queryable.dll, assemblyVersion 4.0.3.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 58 for asset name: System.Linq from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Linq.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 59 for asset name: System.Memory from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Memory.dll, assemblyVersion 4.2.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 60 for asset name: System.Net.Http from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Http.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 61 for asset name: System.Net.HttpListener from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.HttpListener.dll, assemblyVersion 4.0.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 62 for asset name: System.Net.Mail from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Mail.dll, assemblyVersion 4.0.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 63 for asset name: System.Net.NameResolution from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.NameResolution.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 64 for asset name: System.Net.NetworkInformation from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.NetworkInformation.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 65 for asset name: System.Net.Ping from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Ping.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 66 for asset name: System.Net.Primitives from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Primitives.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 67 for asset name: System.Net.Requests from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Requests.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 68 for asset name: System.Net.Security from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Security.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 69 for asset name: System.Net.ServicePoint from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.ServicePoint.dll, assemblyVersion 4.0.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 70 for asset name: System.Net.Sockets from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.Sockets.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 71 for asset name: System.Net.WebClient from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.WebClient.dll, assemblyVersion 4.0.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 72 for asset name: System.Net.WebHeaderCollection from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.WebHeaderCollection.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 73 for asset name: System.Net.WebProxy from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.WebProxy.dll, assemblyVersion 4.0.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 74 for asset name: System.Net.WebSockets.Client from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.WebSockets.Client.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 75 for asset name: System.Net.WebSockets from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.WebSockets.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 76 for asset name: System.Net from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Net.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 77 for asset name: System.Numerics.Vectors from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Numerics.Vectors.dll, assemblyVersion 4.1.5.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 78 for asset name: System.Numerics from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Numerics.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 79 for asset name: System.ObjectModel from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.ObjectModel.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 80 for asset name: System.Private.DataContractSerialization from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Private.DataContractSerialization.dll, assemblyVersion 4.1.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 81 for asset name: System.Private.Uri from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Private.Uri.dll, assemblyVersion 4.0.5.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 82 for asset name: System.Private.Xml.Linq from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Private.Xml.Linq.dll, assemblyVersion 4.0.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 83 for asset name: System.Private.Xml from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Private.Xml.dll, assemblyVersion 4.0.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 84 for asset name: System.Reflection.DispatchProxy from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.DispatchProxy.dll, assemblyVersion 4.0.5.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 85 for asset name: System.Reflection.Emit.ILGeneration from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Emit.ILGeneration.dll, assemblyVersion 4.1.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 86 for asset name: System.Reflection.Emit.Lightweight from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Emit.Lightweight.dll, assemblyVersion 4.1.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 87 for asset name: System.Reflection.Emit from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Emit.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 88 for asset name: System.Reflection.Extensions from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Extensions.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 89 for asset name: System.Reflection.Metadata from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Metadata.dll, assemblyVersion 1.4.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 90 for asset name: System.Reflection.Primitives from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.Primitives.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 91 for asset name: System.Reflection.TypeExtensions from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.TypeExtensions.dll, assemblyVersion 4.1.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 92 for asset name: System.Reflection from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Reflection.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 93 for asset name: System.Resources.Reader from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Resources.Reader.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 94 for asset name: System.Resources.ResourceManager from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Resources.ResourceManager.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 95 for asset name: System.Resources.Writer from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Resources.Writer.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 96 for asset name: System.Runtime.CompilerServices.Unsafe from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.CompilerServices.Unsafe.dll, assemblyVersion 4.0.5.0, fileVersion 4.0.0.0
Parsed runtime deps entry 97 for asset name: System.Runtime.CompilerServices.VisualC from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.CompilerServices.VisualC.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 98 for asset name: System.Runtime.Extensions from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Extensions.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 99 for asset name: System.Runtime.Handles from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Handles.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 100 for asset name: System.Runtime.InteropServices.RuntimeInformation from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.InteropServices.RuntimeInformation.dll, assemblyVersion 4.0.3.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 101 for asset name: System.Runtime.InteropServices.WindowsRuntime from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.InteropServices.WindowsRuntime.dll, assemblyVersion 4.0.3.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 102 for asset name: System.Runtime.InteropServices from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.InteropServices.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 103 for asset name: System.Runtime.Intrinsics from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Intrinsics.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 104 for asset name: System.Runtime.Loader from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Loader.dll, assemblyVersion 4.1.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 105 for asset name: System.Runtime.Numerics from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Numerics.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 106 for asset name: System.Runtime.Serialization.Formatters from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Serialization.Formatters.dll, assemblyVersion 4.0.3.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 107 for asset name: System.Runtime.Serialization.Json from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Serialization.Json.dll, assemblyVersion 4.0.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 108 for asset name: System.Runtime.Serialization.Primitives from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Serialization.Primitives.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 109 for asset name: System.Runtime.Serialization.Xml from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Serialization.Xml.dll, assemblyVersion 4.1.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 110 for asset name: System.Runtime.Serialization from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.Serialization.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 111 for asset name: System.Runtime.WindowsRuntime.UI.Xaml from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.WindowsRuntime.UI.Xaml.dll, assemblyVersion 4.0.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 112 for asset name: System.Runtime.WindowsRuntime from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.WindowsRuntime.dll, assemblyVersion 4.0.14.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 113 for asset name: System.Runtime from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Runtime.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 114 for asset name: System.Security.AccessControl from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.AccessControl.dll, assemblyVersion 4.1.2.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 115 for asset name: System.Security.Claims from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Claims.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 116 for asset name: System.Security.Cryptography.Algorithms from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.Algorithms.dll, assemblyVersion 4.3.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 117 for asset name: System.Security.Cryptography.Cng from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.Cng.dll, assemblyVersion 4.3.2.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 118 for asset name: System.Security.Cryptography.Csp from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.Csp.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 119 for asset name: System.Security.Cryptography.Encoding from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.Encoding.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 120 for asset name: System.Security.Cryptography.OpenSsl from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.OpenSsl.dll, assemblyVersion 4.1.2.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 121 for asset name: System.Security.Cryptography.Primitives from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.Primitives.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 122 for asset name: System.Security.Cryptography.X509Certificates from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Cryptography.X509Certificates.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 123 for asset name: System.Security.Principal.Windows from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Principal.Windows.dll, assemblyVersion 4.1.2.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 124 for asset name: System.Security.Principal from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.Principal.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 125 for asset name: System.Security.SecureString from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.SecureString.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 126 for asset name: System.Security from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Security.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 127 for asset name: System.ServiceModel.Web from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.ServiceModel.Web.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 128 for asset name: System.ServiceProcess from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.ServiceProcess.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 129 for asset name: System.Text.Encoding.CodePages from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Text.Encoding.CodePages.dll, assemblyVersion 4.1.2.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 130 for asset name: System.Text.Encoding.Extensions from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Text.Encoding.Extensions.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 131 for asset name: System.Text.Encoding from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Text.Encoding.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 132 for asset name: System.Text.Encodings.Web from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Text.Encodings.Web.dll, assemblyVersion 4.0.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 133 for asset name: System.Text.Json from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Text.Json.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 134 for asset name: System.Text.RegularExpressions from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Text.RegularExpressions.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 135 for asset name: System.Threading.Channels from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Channels.dll, assemblyVersion 4.0.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 136 for asset name: System.Threading.Overlapped from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Overlapped.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 137 for asset name: System.Threading.Tasks.Dataflow from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Tasks.Dataflow.dll, assemblyVersion 4.6.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 138 for asset name: System.Threading.Tasks.Extensions from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Tasks.Extensions.dll, assemblyVersion 4.3.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 139 for asset name: System.Threading.Tasks.Parallel from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Tasks.Parallel.dll, assemblyVersion 4.0.3.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 140 for asset name: System.Threading.Tasks from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Tasks.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 141 for asset name: System.Threading.Thread from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Thread.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 142 for asset name: System.Threading.ThreadPool from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.ThreadPool.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 143 for asset name: System.Threading.Timer from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.Timer.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 144 for asset name: System.Threading from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Threading.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 145 for asset name: System.Transactions.Local from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Transactions.Local.dll, assemblyVersion 4.0.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 146 for asset name: System.Transactions from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Transactions.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 147 for asset name: System.ValueTuple from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.ValueTuple.dll, assemblyVersion 4.0.4.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 148 for asset name: System.Web.HttpUtility from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Web.HttpUtility.dll, assemblyVersion 4.0.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 149 for asset name: System.Web from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Web.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 150 for asset name: System.Windows from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Windows.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 151 for asset name: System.Xml.Linq from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.Linq.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 152 for asset name: System.Xml.ReaderWriter from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.ReaderWriter.dll, assemblyVersion 4.2.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 153 for asset name: System.Xml.Serialization from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.Serialization.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 154 for asset name: System.Xml.XDocument from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.XDocument.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 155 for asset name: System.Xml.XPath.XDocument from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.XPath.XDocument.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 156 for asset name: System.Xml.XPath from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.XPath.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 157 for asset name: System.Xml.XmlDocument from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.XmlDocument.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 158 for asset name: System.Xml.XmlSerializer from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.XmlSerializer.dll, assemblyVersion 4.1.1.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 159 for asset name: System.Xml from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.Xml.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 160 for asset name: System from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/System.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 161 for asset name: WindowsBase from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/WindowsBase.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 162 for asset name: mscorlib from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/mscorlib.dll, assemblyVersion 4.0.0.0, fileVersion 5.0.19.36705
Parsed runtime deps entry 163 for asset name: netstandard from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/lib/netcoreapp5.0/netstandard.dll, assemblyVersion 2.1.0.0, fileVersion 5.0.19.36705
Parsed native deps entry 0 for asset name: SOS_README from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/SOS_README.md, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 1 for asset name: System.Globalization.Native from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Globalization.Native.dylib, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 2 for asset name: System.IO.Compression.Native from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.IO.Compression.Native.a, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 3 for asset name: System.IO.Compression.Native from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.IO.Compression.Native.dylib, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 4 for asset name: System.Native from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Native.a, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 5 for asset name: System.Native from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Native.dylib, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 6 for asset name: System.Net.Http.Native from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Net.Http.Native.a, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 7 for asset name: System.Net.Http.Native from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Net.Http.Native.dylib, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 8 for asset name: System.Net.Security.Native from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Net.Security.Native.a, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 9 for asset name: System.Net.Security.Native from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Net.Security.Native.dylib, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 10 for asset name: System.Private.CoreLib from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Private.CoreLib.dll, assemblyVersion 5.0.0.0, fileVersion 5.0.19.36703
Parsed native deps entry 11 for asset name: System.Security.Cryptography.Native.Apple from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Security.Cryptography.Native.Apple.a, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 12 for asset name: System.Security.Cryptography.Native.Apple from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Security.Cryptography.Native.Apple.dylib, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 13 for asset name: System.Security.Cryptography.Native.OpenSsl from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Security.Cryptography.Native.OpenSsl.a, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 14 for asset name: System.Security.Cryptography.Native.OpenSsl from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 15 for asset name: libclrjit from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/libclrjit.dylib, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 16 for asset name: libcoreclr from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/libcoreclr.dylib, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 17 for asset name: libdbgshim from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/libdbgshim.dylib, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 18 for asset name: libmscordaccore from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/libmscordaccore.dylib, assemblyVersion , fileVersion 0.0.0.0
Parsed native deps entry 19 for asset name: libmscordbi from package: runtime.osx-x64.Microsoft.NETCore.App, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/libmscordbi.dylib, assemblyVersion , fileVersion 0.0.0.0
Reconciling library runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy/5.0.0-alpha1.27918.2
Parsed native deps entry 20 for asset name: libhostpolicy from package: runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy, library version: 5.0.0-alpha1.27918.2, relpath: runtimes/osx-x64/native/libhostpolicy.dylib, assemblyVersion , fileVersion 0.0.0.0
The rid fallback graph is: {
osx.10.15-x64 => [
osx.10.15,
osx.10.14-x64,
osx.10.14,
osx.10.13-x64,
osx.10.13,
osx.10.12-x64,
osx.10.12,
osx.10.11-x64,
osx.10.11,
osx.10.10-x64,
osx.10.10,
osx-x64,
osx,
unix-x64,
unix,
any,
base,
]
osx.10.15 => [
osx.10.14,
osx.10.13,
osx.10.12,
osx.10.11,
osx.10.10,
osx,
unix,
any,
base,
]
osx.10.14-x64 => [
osx.10.14,
osx.10.13-x64,
osx.10.13,
osx.10.12-x64,
osx.10.12,
osx.10.11-x64,
osx.10.11,
osx.10.10-x64,
osx.10.10,
osx-x64,
osx,
unix-x64,
unix,
any,
base,
]
osx.10.13 => [
osx.10.12,
osx.10.11,
osx.10.10,
osx,
unix,
any,
base,
]
osx.10.14 => [
osx.10.13,
osx.10.12,
osx.10.11,
osx.10.10,
osx,
unix,
any,
base,
]
osx.10.13-x64 => [
osx.10.13,
osx.10.12-x64,
osx.10.12,
osx.10.11-x64,
osx.10.11,
osx.10.10-x64,
osx.10.10,
osx-x64,
osx,
unix-x64,
unix,
any,
base,
]
osx.10.11-x64 => [
osx.10.11,
osx.10.10-x64,
osx.10.10,
osx-x64,
osx,
unix-x64,
unix,
any,
base,
]
osx.10.12 => [
osx.10.11,
osx.10.10,
osx,
unix,
any,
base,
]
osx.10.10 => [
osx,
unix,
any,
base,
]
osx.10.11 => [
osx.10.10,
osx,
unix,
any,
base,
]
osx.10.10-x64 => [
osx.10.10,
osx-x64,
osx,
unix-x64,
unix,
any,
base,
]
osx-x64 => [
osx,
unix-x64,
unix,
any,
base,
]
osx.10.12-x64 => [
osx.10.12,
osx.10.11-x64,
osx.10.11,
osx.10.10-x64,
osx.10.10,
osx-x64,
osx,
unix-x64,
unix,
any,
base,
]
osx => [
unix,
any,
base,
]
}
Using /Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.deps.json deps file
Loading deps file... /Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.deps.json as framework dependent=[1]
HostRID is osx.10.14-x64
Adding runtime asset lib/netstandard1.0/Newtonsoft.Json.dll assemblyVersion=9.0.0.0 fileVersion=9.0.1.19813 from Newtonsoft.Json/9.0.1
Adding runtime asset PortableApp.dll assemblyVersion= fileVersion= from PortableApp/1.0.0
Reconciling library Microsoft.CSharp/4.0.1
Library Microsoft.CSharp/4.0.1 does not exist
Reconciling library Microsoft.NETCore.App.Internal/5.0.0-alpha1.27918.2
Library Microsoft.NETCore.App.Internal/5.0.0-alpha1.27918.2 does not exist
Reconciling library Microsoft.NETCore.DotNetAppHost/5.0.0-alpha1.27918.2
Library Microsoft.NETCore.DotNetAppHost/5.0.0-alpha1.27918.2 does not exist
Reconciling library Microsoft.NETCore.DotNetHostPolicy/5.0.0-alpha1.27918.2
Library Microsoft.NETCore.DotNetHostPolicy/5.0.0-alpha1.27918.2 does not exist
Reconciling library Microsoft.NETCore.DotNetHostResolver/5.0.0-alpha1.27918.2
Library Microsoft.NETCore.DotNetHostResolver/5.0.0-alpha1.27918.2 does not exist
Reconciling library Microsoft.NETCore.Targets/5.0.0-alpha1.19367.5
Library Microsoft.NETCore.Targets/5.0.0-alpha1.19367.5 does not exist
Reconciling library NETStandard.Library/2.2.0-prerelease.19367.3
Library NETStandard.Library/2.2.0-prerelease.19367.3 does not exist
Reconciling library Newtonsoft.Json/9.0.1
Parsed runtime deps entry 0 for asset name: Newtonsoft.Json from package: Newtonsoft.Json, library version: 9.0.1, relpath: lib/netstandard1.0/Newtonsoft.Json.dll, assemblyVersion 9.0.0.0, fileVersion 9.0.1.19813
Reconciling library PortableApp/1.0.0
Parsed runtime deps entry 1 for asset name: PortableApp from project: PortableApp, library version: 1.0.0, relpath: PortableApp.dll, assemblyVersion , fileVersion
Reconciling library System.Collections/4.0.11
Library System.Collections/4.0.11 does not exist
Reconciling library System.Diagnostics.Debug/4.0.11
Library System.Diagnostics.Debug/4.0.11 does not exist
Reconciling library System.Diagnostics.Tools/4.0.1
Library System.Diagnostics.Tools/4.0.1 does not exist
Reconciling library System.Dynamic.Runtime/4.0.11
Library System.Dynamic.Runtime/4.0.11 does not exist
Reconciling library System.Globalization/4.0.11
Library System.Globalization/4.0.11 does not exist
Reconciling library System.IO.FileSystem.Primitives/4.0.1
Library System.IO.FileSystem.Primitives/4.0.1 does not exist
Reconciling library System.IO.FileSystem/4.0.1
Library System.IO.FileSystem/4.0.1 does not exist
Reconciling library System.IO/4.1.0
Library System.IO/4.1.0 does not exist
Reconciling library System.Linq.Expressions/4.1.0
Library System.Linq.Expressions/4.1.0 does not exist
Reconciling library System.Linq/4.1.0
Library System.Linq/4.1.0 does not exist
Reconciling library System.ObjectModel/4.0.12
Library System.ObjectModel/4.0.12 does not exist
Reconciling library System.Reflection.Emit.ILGeneration/4.0.1
Library System.Reflection.Emit.ILGeneration/4.0.1 does not exist
Reconciling library System.Reflection.Emit.Lightweight/4.0.1
Library System.Reflection.Emit.Lightweight/4.0.1 does not exist
Reconciling library System.Reflection.Emit/4.0.1
Library System.Reflection.Emit/4.0.1 does not exist
Reconciling library System.Reflection.Extensions/4.0.1
Library System.Reflection.Extensions/4.0.1 does not exist
Reconciling library System.Reflection.Primitives/4.0.1
Library System.Reflection.Primitives/4.0.1 does not exist
Reconciling library System.Reflection.TypeExtensions/4.1.0
Library System.Reflection.TypeExtensions/4.1.0 does not exist
Reconciling library System.Reflection/4.1.0
Library System.Reflection/4.1.0 does not exist
Reconciling library System.Resources.ResourceManager/4.0.1
Library System.Resources.ResourceManager/4.0.1 does not exist
Reconciling library System.Runtime.Extensions/4.1.0
Library System.Runtime.Extensions/4.1.0 does not exist
Reconciling library System.Runtime.Handles/4.0.1
Library System.Runtime.Handles/4.0.1 does not exist
Reconciling library System.Runtime.InteropServices/4.1.0
Library System.Runtime.InteropServices/4.1.0 does not exist
Reconciling library System.Runtime.Serialization.Primitives/4.1.1
Library System.Runtime.Serialization.Primitives/4.1.1 does not exist
Reconciling library System.Runtime/4.1.0
Library System.Runtime/4.1.0 does not exist
Reconciling library System.Text.Encoding.Extensions/4.0.11
Library System.Text.Encoding.Extensions/4.0.11 does not exist
Reconciling library System.Text.Encoding/4.0.11
Library System.Text.Encoding/4.0.11 does not exist
Reconciling library System.Text.RegularExpressions/4.1.0
Library System.Text.RegularExpressions/4.1.0 does not exist
Reconciling library System.Threading.Tasks.Extensions/4.0.0
Library System.Threading.Tasks.Extensions/4.0.0 does not exist
Reconciling library System.Threading.Tasks/4.0.11
Library System.Threading.Tasks/4.0.11 does not exist
Reconciling library System.Threading/4.0.11
Library System.Threading/4.0.11 does not exist
Reconciling library System.Xml.ReaderWriter/4.0.11
Library System.Xml.ReaderWriter/4.0.11 does not exist
Reconciling library System.Xml.XDocument/4.0.11
Library System.Xml.XDocument/4.0.11 does not exist
-- Listing probe configurations...
probe_config_t: probe=[] deps-dir-probe=[1]
probe_config_t: probe=[/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2] deps-dir-probe=[0]
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.dll, AssemblyVersion: , FileVersion:
Processing TPA for deps entry [Newtonsoft.Json, 9.0.1, lib/netstandard1.0/Newtonsoft.Json.dll]
Considering entry [Newtonsoft.Json/9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/Newtonsoft.Json.dll
Probed deps dir and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/Newtonsoft.Json.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/Newtonsoft.Json.dll, AssemblyVersion: 9.0.0.0, FileVersion: 9.0.1.19813
Processing TPA for deps entry [PortableApp, 1.0.0, PortableApp.dll]
Considering entry [PortableApp/1.0.0/PortableApp.dll], probe dir [], probe fx level:0, entry fx level:0
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.dll
Probed deps dir and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/tests/osx-x64.Debug/1/PortableApp/bin/PortableApp.dll'
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.CSharp.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.CSharp.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.CSharp.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.CSharp.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.CSharp.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.CSharp.dll, AssemblyVersion: 4.0.4.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.VisualBasic.Core.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.VisualBasic.Core.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.VisualBasic.Core.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.VisualBasic.Core.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.VisualBasic.Core.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.VisualBasic.Core.dll, AssemblyVersion: 10.0.4.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.VisualBasic.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.VisualBasic.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.VisualBasic.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.VisualBasic.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.VisualBasic.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.VisualBasic.dll, AssemblyVersion: 10.0.0.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.Win32.Primitives.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.Win32.Primitives.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.Win32.Primitives.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.Win32.Primitives.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.Win32.Primitives.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.Win32.Primitives.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.Win32.Registry.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.Win32.Registry.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/Microsoft.Win32.Registry.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.Win32.Registry.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.Win32.Registry.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/Microsoft.Win32.Registry.dll, AssemblyVersion: 4.1.2.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.AppContext.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.AppContext.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.AppContext.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.AppContext.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.AppContext.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.AppContext.dll, AssemblyVersion: 4.2.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Buffers.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Buffers.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Buffers.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Buffers.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Buffers.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Buffers.dll, AssemblyVersion: 4.0.4.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Concurrent.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Concurrent.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Concurrent.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.Concurrent.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.Concurrent.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.Concurrent.dll, AssemblyVersion: 4.0.14.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Immutable.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Immutable.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Immutable.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.Immutable.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.Immutable.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.Immutable.dll, AssemblyVersion: 1.2.4.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.NonGeneric.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.NonGeneric.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.NonGeneric.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.NonGeneric.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.NonGeneric.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.NonGeneric.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Specialized.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Specialized.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.Specialized.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.Specialized.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.Specialized.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.Specialized.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Collections.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Collections.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.Annotations.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.Annotations.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.Annotations.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.Annotations.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.Annotations.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.Annotations.dll, AssemblyVersion: 4.3.0.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.DataAnnotations.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.DataAnnotations.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.DataAnnotations.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.DataAnnotations.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.DataAnnotations.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.DataAnnotations.dll, AssemblyVersion: 4.0.0.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.EventBasedAsync.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.EventBasedAsync.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.EventBasedAsync.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.EventBasedAsync.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.EventBasedAsync.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.EventBasedAsync.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.Primitives.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.Primitives.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.Primitives.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.Primitives.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.Primitives.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.Primitives.dll, AssemblyVersion: 4.2.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.TypeConverter.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.TypeConverter.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.TypeConverter.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.TypeConverter.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.TypeConverter.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.TypeConverter.dll, AssemblyVersion: 4.2.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.ComponentModel.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.ComponentModel.dll, AssemblyVersion: 4.0.3.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Configuration.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Configuration.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Configuration.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Configuration.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Configuration.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Configuration.dll, AssemblyVersion: 4.0.0.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Console.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Console.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Console.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Console.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Console.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Console.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Core.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Core.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Core.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Core.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Core.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Core.dll, AssemblyVersion: 4.0.0.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Data.Common.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Data.Common.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Data.Common.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Data.Common.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Data.Common.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Data.Common.dll, AssemblyVersion: 4.2.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Data.DataSetExtensions.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Data.DataSetExtensions.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Data.DataSetExtensions.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Data.DataSetExtensions.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Data.DataSetExtensions.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Data.DataSetExtensions.dll, AssemblyVersion: 4.0.0.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Data.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Data.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Data.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Data.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Data.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Data.dll, AssemblyVersion: 4.0.0.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Contracts.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Contracts.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Contracts.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Contracts.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Contracts.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Contracts.dll, AssemblyVersion: 4.0.3.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Debug.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Debug.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Debug.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Debug.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Debug.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Debug.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.DiagnosticSource.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.DiagnosticSource.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.DiagnosticSource.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.DiagnosticSource.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.DiagnosticSource.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.DiagnosticSource.dll, AssemblyVersion: 4.0.4.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.FileVersionInfo.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.FileVersionInfo.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.FileVersionInfo.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.FileVersionInfo.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.FileVersionInfo.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.FileVersionInfo.dll, AssemblyVersion: 4.0.3.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Process.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Process.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Process.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Process.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Process.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Process.dll, AssemblyVersion: 4.2.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.StackTrace.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.StackTrace.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.StackTrace.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.StackTrace.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.StackTrace.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.StackTrace.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.TextWriterTraceListener.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.TextWriterTraceListener.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.TextWriterTraceListener.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.TextWriterTraceListener.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.TextWriterTraceListener.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.TextWriterTraceListener.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Tools.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Tools.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Tools.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Tools.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Tools.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Tools.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.TraceSource.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.TraceSource.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.TraceSource.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.TraceSource.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.TraceSource.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.TraceSource.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Tracing.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Tracing.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Diagnostics.Tracing.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Tracing.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Tracing.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Diagnostics.Tracing.dll, AssemblyVersion: 4.2.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Drawing.Primitives.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Drawing.Primitives.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Drawing.Primitives.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Drawing.Primitives.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Drawing.Primitives.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Drawing.Primitives.dll, AssemblyVersion: 4.2.0.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Drawing.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Drawing.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Drawing.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Drawing.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Drawing.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Drawing.dll, AssemblyVersion: 4.0.0.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Dynamic.Runtime.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Dynamic.Runtime.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Dynamic.Runtime.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Dynamic.Runtime.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Dynamic.Runtime.dll'
Adding tpa entry: /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Dynamic.Runtime.dll, AssemblyVersion: 4.1.1.0, FileVersion: 5.0.19.36705
Processing TPA for deps entry [runtime.osx-x64.Microsoft.NETCore.App, 5.0.0-alpha1.27918.2, runtimes/osx-x64/lib/netcoreapp5.0/System.Globalization.Calendars.dll]
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Globalization.Calendars.dll], probe dir [], probe fx level:0, entry fx level:1
Skipping... not found in deps dir '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2'
Skipping... not found in probe dir ''
Considering entry [runtime.osx-x64.Microsoft.NETCore.App/5.0.0-alpha1.27918.2/runtimes/osx-x64/lib/netcoreapp5.0/System.Globalization.Calendars.dll], probe dir [/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2], probe fx level:1, entry fx level:1
Local path query exists /Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Globalization.Calendars.dll
Probed deps json and matched '/Users/vsts/agent/2.154.3/work/1/s/bin/obj/osx-x64.Debug/sharedFrameworkPublish/shared/Microsoft.NETCore.App/5.0.0-alpha1.27918.2/System.Globalization.Calendars.dll'