summaryrefslogtreecommitdiff
path: root/Tools/ilasm/obj/project.assets.json
blob: 8c6506e26ee697e8c6c9b8339e1d40960c023d67 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
{
  "version": 3,
  "targets": {
    ".NETCoreApp,Version=v2.0": {
      "Microsoft.NETCore.App/2.0.0": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.DotNetHostPolicy": "2.0.0",
          "Microsoft.NETCore.Platforms": "2.0.0",
          "NETStandard.Library": "2.0.0"
        },
        "compile": {
          "ref/netcoreapp2.0/Microsoft.CSharp.dll": {},
          "ref/netcoreapp2.0/Microsoft.VisualBasic.dll": {},
          "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {},
          "ref/netcoreapp2.0/System.AppContext.dll": {},
          "ref/netcoreapp2.0/System.Buffers.dll": {},
          "ref/netcoreapp2.0/System.Collections.Concurrent.dll": {},
          "ref/netcoreapp2.0/System.Collections.Immutable.dll": {},
          "ref/netcoreapp2.0/System.Collections.NonGeneric.dll": {},
          "ref/netcoreapp2.0/System.Collections.Specialized.dll": {},
          "ref/netcoreapp2.0/System.Collections.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.Composition.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.dll": {},
          "ref/netcoreapp2.0/System.Configuration.dll": {},
          "ref/netcoreapp2.0/System.Console.dll": {},
          "ref/netcoreapp2.0/System.Core.dll": {},
          "ref/netcoreapp2.0/System.Data.Common.dll": {},
          "ref/netcoreapp2.0/System.Data.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.Debug.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.Process.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.Tools.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll": {},
          "ref/netcoreapp2.0/System.Drawing.Primitives.dll": {},
          "ref/netcoreapp2.0/System.Drawing.dll": {},
          "ref/netcoreapp2.0/System.Dynamic.Runtime.dll": {},
          "ref/netcoreapp2.0/System.Globalization.Calendars.dll": {},
          "ref/netcoreapp2.0/System.Globalization.Extensions.dll": {},
          "ref/netcoreapp2.0/System.Globalization.dll": {},
          "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {},
          "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {},
          "ref/netcoreapp2.0/System.IO.Compression.dll": {},
          "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {},
          "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {},
          "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {},
          "ref/netcoreapp2.0/System.IO.FileSystem.dll": {},
          "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll": {},
          "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {},
          "ref/netcoreapp2.0/System.IO.Pipes.dll": {},
          "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {},
          "ref/netcoreapp2.0/System.IO.dll": {},
          "ref/netcoreapp2.0/System.Linq.Expressions.dll": {},
          "ref/netcoreapp2.0/System.Linq.Parallel.dll": {},
          "ref/netcoreapp2.0/System.Linq.Queryable.dll": {},
          "ref/netcoreapp2.0/System.Linq.dll": {},
          "ref/netcoreapp2.0/System.Net.Http.dll": {},
          "ref/netcoreapp2.0/System.Net.HttpListener.dll": {},
          "ref/netcoreapp2.0/System.Net.Mail.dll": {},
          "ref/netcoreapp2.0/System.Net.NameResolution.dll": {},
          "ref/netcoreapp2.0/System.Net.NetworkInformation.dll": {},
          "ref/netcoreapp2.0/System.Net.Ping.dll": {},
          "ref/netcoreapp2.0/System.Net.Primitives.dll": {},
          "ref/netcoreapp2.0/System.Net.Requests.dll": {},
          "ref/netcoreapp2.0/System.Net.Security.dll": {},
          "ref/netcoreapp2.0/System.Net.ServicePoint.dll": {},
          "ref/netcoreapp2.0/System.Net.Sockets.dll": {},
          "ref/netcoreapp2.0/System.Net.WebClient.dll": {},
          "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {},
          "ref/netcoreapp2.0/System.Net.WebProxy.dll": {},
          "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll": {},
          "ref/netcoreapp2.0/System.Net.WebSockets.dll": {},
          "ref/netcoreapp2.0/System.Net.dll": {},
          "ref/netcoreapp2.0/System.Numerics.Vectors.dll": {},
          "ref/netcoreapp2.0/System.Numerics.dll": {},
          "ref/netcoreapp2.0/System.ObjectModel.dll": {},
          "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Emit.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Extensions.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Metadata.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Primitives.dll": {},
          "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {},
          "ref/netcoreapp2.0/System.Reflection.dll": {},
          "ref/netcoreapp2.0/System.Resources.Reader.dll": {},
          "ref/netcoreapp2.0/System.Resources.ResourceManager.dll": {},
          "ref/netcoreapp2.0/System.Resources.Writer.dll": {},
          "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Extensions.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Handles.dll": {},
          "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {},
          "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {},
          "ref/netcoreapp2.0/System.Runtime.InteropServices.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Loader.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Numerics.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Serialization.dll": {},
          "ref/netcoreapp2.0/System.Runtime.dll": {},
          "ref/netcoreapp2.0/System.Security.Claims.dll": {},
          "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {},
          "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {},
          "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {},
          "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {},
          "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {},
          "ref/netcoreapp2.0/System.Security.Principal.dll": {},
          "ref/netcoreapp2.0/System.Security.SecureString.dll": {},
          "ref/netcoreapp2.0/System.Security.dll": {},
          "ref/netcoreapp2.0/System.ServiceModel.Web.dll": {},
          "ref/netcoreapp2.0/System.ServiceProcess.dll": {},
          "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {},
          "ref/netcoreapp2.0/System.Text.Encoding.dll": {},
          "ref/netcoreapp2.0/System.Text.RegularExpressions.dll": {},
          "ref/netcoreapp2.0/System.Threading.Overlapped.dll": {},
          "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {},
          "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {},
          "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {},
          "ref/netcoreapp2.0/System.Threading.Tasks.dll": {},
          "ref/netcoreapp2.0/System.Threading.Thread.dll": {},
          "ref/netcoreapp2.0/System.Threading.ThreadPool.dll": {},
          "ref/netcoreapp2.0/System.Threading.Timer.dll": {},
          "ref/netcoreapp2.0/System.Threading.dll": {},
          "ref/netcoreapp2.0/System.Transactions.Local.dll": {},
          "ref/netcoreapp2.0/System.Transactions.dll": {},
          "ref/netcoreapp2.0/System.ValueTuple.dll": {},
          "ref/netcoreapp2.0/System.Web.HttpUtility.dll": {},
          "ref/netcoreapp2.0/System.Web.dll": {},
          "ref/netcoreapp2.0/System.Windows.dll": {},
          "ref/netcoreapp2.0/System.Xml.Linq.dll": {},
          "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll": {},
          "ref/netcoreapp2.0/System.Xml.Serialization.dll": {},
          "ref/netcoreapp2.0/System.Xml.XDocument.dll": {},
          "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {},
          "ref/netcoreapp2.0/System.Xml.XPath.dll": {},
          "ref/netcoreapp2.0/System.Xml.XmlDocument.dll": {},
          "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll": {},
          "ref/netcoreapp2.0/System.Xml.dll": {},
          "ref/netcoreapp2.0/System.dll": {},
          "ref/netcoreapp2.0/WindowsBase.dll": {},
          "ref/netcoreapp2.0/mscorlib.dll": {},
          "ref/netcoreapp2.0/netstandard.dll": {}
        },
        "build": {
          "build/netcoreapp2.0/Microsoft.NETCore.App.props": {},
          "build/netcoreapp2.0/Microsoft.NETCore.App.targets": {}
        }
      },
      "Microsoft.NETCore.DotNetAppHost/2.0.0": {
        "type": "package"
      },
      "Microsoft.NETCore.DotNetHostPolicy/2.0.0": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "2.0.0"
        }
      },
      "Microsoft.NETCore.DotNetHostResolver/2.0.0": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.DotNetAppHost": "2.0.0"
        }
      },
      "Microsoft.NETCore.ILAsm/2.1.0-rtm-26514-02": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.Runtime.CoreCLR": "2.1.0-rtm-26514-02"
        }
      },
      "Microsoft.NETCore.Jit/2.1.0-rtm-26514-02": {
        "type": "package"
      },
      "Microsoft.NETCore.Platforms/2.0.0": {
        "type": "package",
        "compile": {
          "lib/netstandard1.0/_._": {}
        },
        "runtime": {
          "lib/netstandard1.0/_._": {}
        }
      },
      "Microsoft.NETCore.Runtime.CoreCLR/2.1.0-rtm-26514-02": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.Jit": "2.1.0-rtm-26514-02"
        },
        "compile": {
          "ref/netstandard1.0/_._": {}
        }
      },
      "NETStandard.Library/2.0.0": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0"
        },
        "compile": {
          "lib/netstandard1.0/_._": {}
        },
        "runtime": {
          "lib/netstandard1.0/_._": {}
        },
        "build": {
          "build/netstandard2.0/NETStandard.Library.targets": {}
        }
      }
    },
    ".NETCoreApp,Version=v2.0/linux-x64": {
      "Microsoft.NETCore.App/2.0.0": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.DotNetHostPolicy": "2.0.0",
          "Microsoft.NETCore.Platforms": "2.0.0",
          "NETStandard.Library": "2.0.0",
          "runtime.linux-x64.Microsoft.NETCore.App": "2.0.0"
        },
        "compile": {
          "ref/netcoreapp2.0/Microsoft.CSharp.dll": {},
          "ref/netcoreapp2.0/Microsoft.VisualBasic.dll": {},
          "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {},
          "ref/netcoreapp2.0/System.AppContext.dll": {},
          "ref/netcoreapp2.0/System.Buffers.dll": {},
          "ref/netcoreapp2.0/System.Collections.Concurrent.dll": {},
          "ref/netcoreapp2.0/System.Collections.Immutable.dll": {},
          "ref/netcoreapp2.0/System.Collections.NonGeneric.dll": {},
          "ref/netcoreapp2.0/System.Collections.Specialized.dll": {},
          "ref/netcoreapp2.0/System.Collections.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.Composition.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {},
          "ref/netcoreapp2.0/System.ComponentModel.dll": {},
          "ref/netcoreapp2.0/System.Configuration.dll": {},
          "ref/netcoreapp2.0/System.Console.dll": {},
          "ref/netcoreapp2.0/System.Core.dll": {},
          "ref/netcoreapp2.0/System.Data.Common.dll": {},
          "ref/netcoreapp2.0/System.Data.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.Debug.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.Process.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.Tools.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {},
          "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll": {},
          "ref/netcoreapp2.0/System.Drawing.Primitives.dll": {},
          "ref/netcoreapp2.0/System.Drawing.dll": {},
          "ref/netcoreapp2.0/System.Dynamic.Runtime.dll": {},
          "ref/netcoreapp2.0/System.Globalization.Calendars.dll": {},
          "ref/netcoreapp2.0/System.Globalization.Extensions.dll": {},
          "ref/netcoreapp2.0/System.Globalization.dll": {},
          "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {},
          "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {},
          "ref/netcoreapp2.0/System.IO.Compression.dll": {},
          "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {},
          "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {},
          "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {},
          "ref/netcoreapp2.0/System.IO.FileSystem.dll": {},
          "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll": {},
          "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {},
          "ref/netcoreapp2.0/System.IO.Pipes.dll": {},
          "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {},
          "ref/netcoreapp2.0/System.IO.dll": {},
          "ref/netcoreapp2.0/System.Linq.Expressions.dll": {},
          "ref/netcoreapp2.0/System.Linq.Parallel.dll": {},
          "ref/netcoreapp2.0/System.Linq.Queryable.dll": {},
          "ref/netcoreapp2.0/System.Linq.dll": {},
          "ref/netcoreapp2.0/System.Net.Http.dll": {},
          "ref/netcoreapp2.0/System.Net.HttpListener.dll": {},
          "ref/netcoreapp2.0/System.Net.Mail.dll": {},
          "ref/netcoreapp2.0/System.Net.NameResolution.dll": {},
          "ref/netcoreapp2.0/System.Net.NetworkInformation.dll": {},
          "ref/netcoreapp2.0/System.Net.Ping.dll": {},
          "ref/netcoreapp2.0/System.Net.Primitives.dll": {},
          "ref/netcoreapp2.0/System.Net.Requests.dll": {},
          "ref/netcoreapp2.0/System.Net.Security.dll": {},
          "ref/netcoreapp2.0/System.Net.ServicePoint.dll": {},
          "ref/netcoreapp2.0/System.Net.Sockets.dll": {},
          "ref/netcoreapp2.0/System.Net.WebClient.dll": {},
          "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {},
          "ref/netcoreapp2.0/System.Net.WebProxy.dll": {},
          "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll": {},
          "ref/netcoreapp2.0/System.Net.WebSockets.dll": {},
          "ref/netcoreapp2.0/System.Net.dll": {},
          "ref/netcoreapp2.0/System.Numerics.Vectors.dll": {},
          "ref/netcoreapp2.0/System.Numerics.dll": {},
          "ref/netcoreapp2.0/System.ObjectModel.dll": {},
          "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Emit.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Extensions.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Metadata.dll": {},
          "ref/netcoreapp2.0/System.Reflection.Primitives.dll": {},
          "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {},
          "ref/netcoreapp2.0/System.Reflection.dll": {},
          "ref/netcoreapp2.0/System.Resources.Reader.dll": {},
          "ref/netcoreapp2.0/System.Resources.ResourceManager.dll": {},
          "ref/netcoreapp2.0/System.Resources.Writer.dll": {},
          "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Extensions.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Handles.dll": {},
          "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {},
          "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {},
          "ref/netcoreapp2.0/System.Runtime.InteropServices.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Loader.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Numerics.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {},
          "ref/netcoreapp2.0/System.Runtime.Serialization.dll": {},
          "ref/netcoreapp2.0/System.Runtime.dll": {},
          "ref/netcoreapp2.0/System.Security.Claims.dll": {},
          "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {},
          "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {},
          "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {},
          "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {},
          "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {},
          "ref/netcoreapp2.0/System.Security.Principal.dll": {},
          "ref/netcoreapp2.0/System.Security.SecureString.dll": {},
          "ref/netcoreapp2.0/System.Security.dll": {},
          "ref/netcoreapp2.0/System.ServiceModel.Web.dll": {},
          "ref/netcoreapp2.0/System.ServiceProcess.dll": {},
          "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {},
          "ref/netcoreapp2.0/System.Text.Encoding.dll": {},
          "ref/netcoreapp2.0/System.Text.RegularExpressions.dll": {},
          "ref/netcoreapp2.0/System.Threading.Overlapped.dll": {},
          "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {},
          "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {},
          "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {},
          "ref/netcoreapp2.0/System.Threading.Tasks.dll": {},
          "ref/netcoreapp2.0/System.Threading.Thread.dll": {},
          "ref/netcoreapp2.0/System.Threading.ThreadPool.dll": {},
          "ref/netcoreapp2.0/System.Threading.Timer.dll": {},
          "ref/netcoreapp2.0/System.Threading.dll": {},
          "ref/netcoreapp2.0/System.Transactions.Local.dll": {},
          "ref/netcoreapp2.0/System.Transactions.dll": {},
          "ref/netcoreapp2.0/System.ValueTuple.dll": {},
          "ref/netcoreapp2.0/System.Web.HttpUtility.dll": {},
          "ref/netcoreapp2.0/System.Web.dll": {},
          "ref/netcoreapp2.0/System.Windows.dll": {},
          "ref/netcoreapp2.0/System.Xml.Linq.dll": {},
          "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll": {},
          "ref/netcoreapp2.0/System.Xml.Serialization.dll": {},
          "ref/netcoreapp2.0/System.Xml.XDocument.dll": {},
          "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {},
          "ref/netcoreapp2.0/System.Xml.XPath.dll": {},
          "ref/netcoreapp2.0/System.Xml.XmlDocument.dll": {},
          "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll": {},
          "ref/netcoreapp2.0/System.Xml.dll": {},
          "ref/netcoreapp2.0/System.dll": {},
          "ref/netcoreapp2.0/WindowsBase.dll": {},
          "ref/netcoreapp2.0/mscorlib.dll": {},
          "ref/netcoreapp2.0/netstandard.dll": {}
        },
        "build": {
          "build/netcoreapp2.0/Microsoft.NETCore.App.props": {},
          "build/netcoreapp2.0/Microsoft.NETCore.App.targets": {}
        }
      },
      "Microsoft.NETCore.DotNetAppHost/2.0.0": {
        "type": "package",
        "dependencies": {
          "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost": "2.0.0"
        }
      },
      "Microsoft.NETCore.DotNetHostPolicy/2.0.0": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "2.0.0",
          "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy": "2.0.0"
        }
      },
      "Microsoft.NETCore.DotNetHostResolver/2.0.0": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.DotNetAppHost": "2.0.0",
          "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver": "2.0.0"
        }
      },
      "Microsoft.NETCore.ILAsm/2.1.0-rtm-26514-02": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.Runtime.CoreCLR": "2.1.0-rtm-26514-02",
          "runtime.linux-x64.Microsoft.NETCore.ILAsm": "2.1.0-rtm-26514-02"
        }
      },
      "Microsoft.NETCore.Jit/2.1.0-rtm-26514-02": {
        "type": "package",
        "dependencies": {
          "runtime.linux-x64.Microsoft.NETCore.Jit": "2.1.0-rtm-26514-02"
        }
      },
      "Microsoft.NETCore.Platforms/2.0.0": {
        "type": "package",
        "compile": {
          "lib/netstandard1.0/_._": {}
        },
        "runtime": {
          "lib/netstandard1.0/_._": {}
        }
      },
      "Microsoft.NETCore.Runtime.CoreCLR/2.1.0-rtm-26514-02": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.Jit": "2.1.0-rtm-26514-02",
          "runtime.linux-x64.Microsoft.NETCore.Runtime.CoreCLR": "2.1.0-rtm-26514-02"
        },
        "compile": {
          "ref/netstandard1.0/_._": {}
        }
      },
      "NETStandard.Library/2.0.0": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0"
        },
        "compile": {
          "lib/netstandard1.0/_._": {}
        },
        "runtime": {
          "lib/netstandard1.0/_._": {}
        },
        "build": {
          "build/netstandard2.0/NETStandard.Library.targets": {}
        }
      },
      "runtime.linux-x64.Microsoft.NETCore.App/2.0.0": {
        "type": "package",
        "compile": {
          "ref/netstandard/_._": {}
        },
        "runtime": {
          "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.CSharp.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.VisualBasic.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/SOS.NETCore.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.AppContext.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Buffers.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.Concurrent.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.Immutable.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.NonGeneric.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.Specialized.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.Annotations.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.Composition.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.Primitives.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Configuration.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Console.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Core.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Data.Common.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Data.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Contracts.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Debug.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Process.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Tools.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Tracing.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Drawing.Primitives.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Drawing.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Dynamic.Runtime.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Globalization.Calendars.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Globalization.Extensions.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Globalization.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Compression.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.AccessControl.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.IsolatedStorage.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Pipes.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.Expressions.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.Parallel.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.Queryable.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Http.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.HttpListener.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Mail.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.NameResolution.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.NetworkInformation.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Ping.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Primitives.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Requests.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Security.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.ServicePoint.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Sockets.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebClient.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebProxy.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebSockets.Client.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebSockets.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Numerics.Vectors.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Numerics.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.ObjectModel.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.DataContractSerialization.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.Uri.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.Xml.Linq.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.Xml.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Emit.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Extensions.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Metadata.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Primitives.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Resources.Reader.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Resources.ResourceManager.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Resources.Writer.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Extensions.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Handles.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.InteropServices.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Loader.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Numerics.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.AccessControl.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Claims.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.OpenSsl.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Principal.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.SecureString.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.ServiceModel.Web.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.ServiceProcess.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Text.Encoding.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Text.RegularExpressions.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Overlapped.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Thread.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.ThreadPool.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Timer.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Transactions.Local.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Transactions.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.ValueTuple.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Web.HttpUtility.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Web.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Windows.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.Linq.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.ReaderWriter.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.Serialization.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XDocument.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XPath.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XmlDocument.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XmlSerializer.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/System.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/WindowsBase.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/mscorlib.dll": {},
          "runtimes/linux-x64/lib/netcoreapp2.0/netstandard.dll": {}
        },
        "native": {
          "runtimes/linux-x64/native/System.Globalization.Native.so": {},
          "runtimes/linux-x64/native/System.IO.Compression.Native.so": {},
          "runtimes/linux-x64/native/System.Native.a": {},
          "runtimes/linux-x64/native/System.Native.so": {},
          "runtimes/linux-x64/native/System.Net.Http.Native.so": {},
          "runtimes/linux-x64/native/System.Net.Security.Native.so": {},
          "runtimes/linux-x64/native/System.Private.CoreLib.dll": {},
          "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {},
          "runtimes/linux-x64/native/createdump": {},
          "runtimes/linux-x64/native/libclrjit.so": {},
          "runtimes/linux-x64/native/libcoreclr.so": {},
          "runtimes/linux-x64/native/libcoreclrtraceptprovider.so": {},
          "runtimes/linux-x64/native/libdbgshim.so": {},
          "runtimes/linux-x64/native/libmscordaccore.so": {},
          "runtimes/linux-x64/native/libmscordbi.so": {},
          "runtimes/linux-x64/native/libsos.so": {},
          "runtimes/linux-x64/native/libsosplugin.so": {},
          "runtimes/linux-x64/native/sosdocsunix.txt": {}
        }
      },
      "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost/2.0.0": {
        "type": "package",
        "native": {
          "runtimes/linux-x64/native/apphost": {}
        }
      },
      "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy/2.0.0": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "2.0.0"
        },
        "native": {
          "runtimes/linux-x64/native/libhostpolicy.so": {}
        }
      },
      "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver/2.0.0": {
        "type": "package",
        "dependencies": {
          "Microsoft.NETCore.DotNetAppHost": "2.0.0"
        },
        "native": {
          "runtimes/linux-x64/native/libhostfxr.so": {}
        }
      },
      "runtime.linux-x64.Microsoft.NETCore.ILAsm/2.1.0-rtm-26514-02": {
        "type": "package",
        "native": {
          "runtimes/linux-x64/native/ilasm": {}
        }
      },
      "runtime.linux-x64.Microsoft.NETCore.Jit/2.1.0-rtm-26514-02": {
        "type": "package",
        "native": {
          "runtimes/linux-x64/native/libclrjit.so": {}
        }
      },
      "runtime.linux-x64.Microsoft.NETCore.Runtime.CoreCLR/2.1.0-rtm-26514-02": {
        "type": "package",
        "compile": {
          "ref/netstandard1.0/_._": {}
        },
        "runtime": {
          "runtimes/linux-x64/lib/netstandard1.0/SOS.NETCore.dll": {}
        },
        "native": {
          "runtimes/linux-x64/native/System.Globalization.Native.so": {},
          "runtimes/linux-x64/native/System.Private.CoreLib.dll": {},
          "runtimes/linux-x64/native/createdump": {},
          "runtimes/linux-x64/native/libcoreclr.so": {},
          "runtimes/linux-x64/native/libcoreclrtraceptprovider.so": {},
          "runtimes/linux-x64/native/libdbgshim.so": {},
          "runtimes/linux-x64/native/libmscordaccore.so": {},
          "runtimes/linux-x64/native/libmscordbi.so": {},
          "runtimes/linux-x64/native/libsos.so": {},
          "runtimes/linux-x64/native/libsosplugin.so": {},
          "runtimes/linux-x64/native/sosdocsunix.txt": {}
        }
      }
    }
  },
  "libraries": {
    "Microsoft.NETCore.App/2.0.0": {
      "sha512": "/mzXF+UtZef+VpzzN88EpvFq5U6z4rj54ZMq/J968H6pcvyLOmcupmTRpJ3CJm8ILoCGh9WI7qpDdiKtuzswrQ==",
      "type": "package",
      "path": "microsoft.netcore.app/2.0.0",
      "files": [
        "LICENSE.TXT",
        "Microsoft.NETCore.App.versions.txt",
        "THIRD-PARTY-NOTICES.TXT",
        "build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt",
        "build/netcoreapp2.0/Microsoft.NETCore.App.props",
        "build/netcoreapp2.0/Microsoft.NETCore.App.targets",
        "microsoft.netcore.app.2.0.0.nupkg.sha512",
        "microsoft.netcore.app.nuspec",
        "ref/netcoreapp/_._",
        "ref/netcoreapp2.0/Microsoft.CSharp.dll",
        "ref/netcoreapp2.0/Microsoft.CSharp.xml",
        "ref/netcoreapp2.0/Microsoft.VisualBasic.dll",
        "ref/netcoreapp2.0/Microsoft.VisualBasic.xml",
        "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll",
        "ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml",
        "ref/netcoreapp2.0/System.AppContext.dll",
        "ref/netcoreapp2.0/System.AppContext.xml",
        "ref/netcoreapp2.0/System.Buffers.dll",
        "ref/netcoreapp2.0/System.Buffers.xml",
        "ref/netcoreapp2.0/System.Collections.Concurrent.dll",
        "ref/netcoreapp2.0/System.Collections.Concurrent.xml",
        "ref/netcoreapp2.0/System.Collections.Immutable.dll",
        "ref/netcoreapp2.0/System.Collections.Immutable.xml",
        "ref/netcoreapp2.0/System.Collections.NonGeneric.dll",
        "ref/netcoreapp2.0/System.Collections.NonGeneric.xml",
        "ref/netcoreapp2.0/System.Collections.Specialized.dll",
        "ref/netcoreapp2.0/System.Collections.Specialized.xml",
        "ref/netcoreapp2.0/System.Collections.dll",
        "ref/netcoreapp2.0/System.Collections.xml",
        "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll",
        "ref/netcoreapp2.0/System.ComponentModel.Annotations.xml",
        "ref/netcoreapp2.0/System.ComponentModel.Composition.dll",
        "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll",
        "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll",
        "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml",
        "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll",
        "ref/netcoreapp2.0/System.ComponentModel.Primitives.xml",
        "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll",
        "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml",
        "ref/netcoreapp2.0/System.ComponentModel.dll",
        "ref/netcoreapp2.0/System.ComponentModel.xml",
        "ref/netcoreapp2.0/System.Configuration.dll",
        "ref/netcoreapp2.0/System.Console.dll",
        "ref/netcoreapp2.0/System.Console.xml",
        "ref/netcoreapp2.0/System.Core.dll",
        "ref/netcoreapp2.0/System.Data.Common.dll",
        "ref/netcoreapp2.0/System.Data.Common.xml",
        "ref/netcoreapp2.0/System.Data.dll",
        "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll",
        "ref/netcoreapp2.0/System.Diagnostics.Contracts.xml",
        "ref/netcoreapp2.0/System.Diagnostics.Debug.dll",
        "ref/netcoreapp2.0/System.Diagnostics.Debug.xml",
        "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll",
        "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml",
        "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll",
        "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml",
        "ref/netcoreapp2.0/System.Diagnostics.Process.dll",
        "ref/netcoreapp2.0/System.Diagnostics.Process.xml",
        "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll",
        "ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml",
        "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll",
        "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml",
        "ref/netcoreapp2.0/System.Diagnostics.Tools.dll",
        "ref/netcoreapp2.0/System.Diagnostics.Tools.xml",
        "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll",
        "ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml",
        "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll",
        "ref/netcoreapp2.0/System.Diagnostics.Tracing.xml",
        "ref/netcoreapp2.0/System.Drawing.Primitives.dll",
        "ref/netcoreapp2.0/System.Drawing.Primitives.xml",
        "ref/netcoreapp2.0/System.Drawing.dll",
        "ref/netcoreapp2.0/System.Dynamic.Runtime.dll",
        "ref/netcoreapp2.0/System.Dynamic.Runtime.xml",
        "ref/netcoreapp2.0/System.Globalization.Calendars.dll",
        "ref/netcoreapp2.0/System.Globalization.Calendars.xml",
        "ref/netcoreapp2.0/System.Globalization.Extensions.dll",
        "ref/netcoreapp2.0/System.Globalization.Extensions.xml",
        "ref/netcoreapp2.0/System.Globalization.dll",
        "ref/netcoreapp2.0/System.Globalization.xml",
        "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll",
        "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll",
        "ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml",
        "ref/netcoreapp2.0/System.IO.Compression.dll",
        "ref/netcoreapp2.0/System.IO.Compression.xml",
        "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll",
        "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml",
        "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll",
        "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml",
        "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll",
        "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml",
        "ref/netcoreapp2.0/System.IO.FileSystem.dll",
        "ref/netcoreapp2.0/System.IO.FileSystem.xml",
        "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll",
        "ref/netcoreapp2.0/System.IO.IsolatedStorage.xml",
        "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll",
        "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml",
        "ref/netcoreapp2.0/System.IO.Pipes.dll",
        "ref/netcoreapp2.0/System.IO.Pipes.xml",
        "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll",
        "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml",
        "ref/netcoreapp2.0/System.IO.dll",
        "ref/netcoreapp2.0/System.IO.xml",
        "ref/netcoreapp2.0/System.Linq.Expressions.dll",
        "ref/netcoreapp2.0/System.Linq.Expressions.xml",
        "ref/netcoreapp2.0/System.Linq.Parallel.dll",
        "ref/netcoreapp2.0/System.Linq.Parallel.xml",
        "ref/netcoreapp2.0/System.Linq.Queryable.dll",
        "ref/netcoreapp2.0/System.Linq.Queryable.xml",
        "ref/netcoreapp2.0/System.Linq.dll",
        "ref/netcoreapp2.0/System.Linq.xml",
        "ref/netcoreapp2.0/System.Net.Http.dll",
        "ref/netcoreapp2.0/System.Net.Http.xml",
        "ref/netcoreapp2.0/System.Net.HttpListener.dll",
        "ref/netcoreapp2.0/System.Net.HttpListener.xml",
        "ref/netcoreapp2.0/System.Net.Mail.dll",
        "ref/netcoreapp2.0/System.Net.Mail.xml",
        "ref/netcoreapp2.0/System.Net.NameResolution.dll",
        "ref/netcoreapp2.0/System.Net.NameResolution.xml",
        "ref/netcoreapp2.0/System.Net.NetworkInformation.dll",
        "ref/netcoreapp2.0/System.Net.NetworkInformation.xml",
        "ref/netcoreapp2.0/System.Net.Ping.dll",
        "ref/netcoreapp2.0/System.Net.Ping.xml",
        "ref/netcoreapp2.0/System.Net.Primitives.dll",
        "ref/netcoreapp2.0/System.Net.Primitives.xml",
        "ref/netcoreapp2.0/System.Net.Requests.dll",
        "ref/netcoreapp2.0/System.Net.Requests.xml",
        "ref/netcoreapp2.0/System.Net.Security.dll",
        "ref/netcoreapp2.0/System.Net.Security.xml",
        "ref/netcoreapp2.0/System.Net.ServicePoint.dll",
        "ref/netcoreapp2.0/System.Net.ServicePoint.xml",
        "ref/netcoreapp2.0/System.Net.Sockets.dll",
        "ref/netcoreapp2.0/System.Net.Sockets.xml",
        "ref/netcoreapp2.0/System.Net.WebClient.dll",
        "ref/netcoreapp2.0/System.Net.WebClient.xml",
        "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll",
        "ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml",
        "ref/netcoreapp2.0/System.Net.WebProxy.dll",
        "ref/netcoreapp2.0/System.Net.WebProxy.xml",
        "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll",
        "ref/netcoreapp2.0/System.Net.WebSockets.Client.xml",
        "ref/netcoreapp2.0/System.Net.WebSockets.dll",
        "ref/netcoreapp2.0/System.Net.WebSockets.xml",
        "ref/netcoreapp2.0/System.Net.dll",
        "ref/netcoreapp2.0/System.Numerics.Vectors.dll",
        "ref/netcoreapp2.0/System.Numerics.Vectors.xml",
        "ref/netcoreapp2.0/System.Numerics.dll",
        "ref/netcoreapp2.0/System.ObjectModel.dll",
        "ref/netcoreapp2.0/System.ObjectModel.xml",
        "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll",
        "ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml",
        "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll",
        "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml",
        "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll",
        "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml",
        "ref/netcoreapp2.0/System.Reflection.Emit.dll",
        "ref/netcoreapp2.0/System.Reflection.Emit.xml",
        "ref/netcoreapp2.0/System.Reflection.Extensions.dll",
        "ref/netcoreapp2.0/System.Reflection.Extensions.xml",
        "ref/netcoreapp2.0/System.Reflection.Metadata.dll",
        "ref/netcoreapp2.0/System.Reflection.Metadata.xml",
        "ref/netcoreapp2.0/System.Reflection.Primitives.dll",
        "ref/netcoreapp2.0/System.Reflection.Primitives.xml",
        "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll",
        "ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml",
        "ref/netcoreapp2.0/System.Reflection.dll",
        "ref/netcoreapp2.0/System.Reflection.xml",
        "ref/netcoreapp2.0/System.Resources.Reader.dll",
        "ref/netcoreapp2.0/System.Resources.Reader.xml",
        "ref/netcoreapp2.0/System.Resources.ResourceManager.dll",
        "ref/netcoreapp2.0/System.Resources.ResourceManager.xml",
        "ref/netcoreapp2.0/System.Resources.Writer.dll",
        "ref/netcoreapp2.0/System.Resources.Writer.xml",
        "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll",
        "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml",
        "ref/netcoreapp2.0/System.Runtime.Extensions.dll",
        "ref/netcoreapp2.0/System.Runtime.Extensions.xml",
        "ref/netcoreapp2.0/System.Runtime.Handles.dll",
        "ref/netcoreapp2.0/System.Runtime.Handles.xml",
        "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll",
        "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml",
        "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll",
        "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml",
        "ref/netcoreapp2.0/System.Runtime.InteropServices.dll",
        "ref/netcoreapp2.0/System.Runtime.InteropServices.xml",
        "ref/netcoreapp2.0/System.Runtime.Loader.dll",
        "ref/netcoreapp2.0/System.Runtime.Loader.xml",
        "ref/netcoreapp2.0/System.Runtime.Numerics.dll",
        "ref/netcoreapp2.0/System.Runtime.Numerics.xml",
        "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll",
        "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml",
        "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll",
        "ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml",
        "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll",
        "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml",
        "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll",
        "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml",
        "ref/netcoreapp2.0/System.Runtime.Serialization.dll",
        "ref/netcoreapp2.0/System.Runtime.dll",
        "ref/netcoreapp2.0/System.Runtime.xml",
        "ref/netcoreapp2.0/System.Security.Claims.dll",
        "ref/netcoreapp2.0/System.Security.Claims.xml",
        "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll",
        "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml",
        "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll",
        "ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml",
        "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll",
        "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml",
        "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll",
        "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml",
        "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll",
        "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml",
        "ref/netcoreapp2.0/System.Security.Principal.dll",
        "ref/netcoreapp2.0/System.Security.Principal.xml",
        "ref/netcoreapp2.0/System.Security.SecureString.dll",
        "ref/netcoreapp2.0/System.Security.SecureString.xml",
        "ref/netcoreapp2.0/System.Security.dll",
        "ref/netcoreapp2.0/System.ServiceModel.Web.dll",
        "ref/netcoreapp2.0/System.ServiceProcess.dll",
        "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll",
        "ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml",
        "ref/netcoreapp2.0/System.Text.Encoding.dll",
        "ref/netcoreapp2.0/System.Text.Encoding.xml",
        "ref/netcoreapp2.0/System.Text.RegularExpressions.dll",
        "ref/netcoreapp2.0/System.Text.RegularExpressions.xml",
        "ref/netcoreapp2.0/System.Threading.Overlapped.dll",
        "ref/netcoreapp2.0/System.Threading.Overlapped.xml",
        "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll",
        "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml",
        "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll",
        "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml",
        "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll",
        "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml",
        "ref/netcoreapp2.0/System.Threading.Tasks.dll",
        "ref/netcoreapp2.0/System.Threading.Tasks.xml",
        "ref/netcoreapp2.0/System.Threading.Thread.dll",
        "ref/netcoreapp2.0/System.Threading.Thread.xml",
        "ref/netcoreapp2.0/System.Threading.ThreadPool.dll",
        "ref/netcoreapp2.0/System.Threading.ThreadPool.xml",
        "ref/netcoreapp2.0/System.Threading.Timer.dll",
        "ref/netcoreapp2.0/System.Threading.Timer.xml",
        "ref/netcoreapp2.0/System.Threading.dll",
        "ref/netcoreapp2.0/System.Threading.xml",
        "ref/netcoreapp2.0/System.Transactions.Local.dll",
        "ref/netcoreapp2.0/System.Transactions.Local.xml",
        "ref/netcoreapp2.0/System.Transactions.dll",
        "ref/netcoreapp2.0/System.ValueTuple.dll",
        "ref/netcoreapp2.0/System.ValueTuple.xml",
        "ref/netcoreapp2.0/System.Web.HttpUtility.dll",
        "ref/netcoreapp2.0/System.Web.HttpUtility.xml",
        "ref/netcoreapp2.0/System.Web.dll",
        "ref/netcoreapp2.0/System.Windows.dll",
        "ref/netcoreapp2.0/System.Xml.Linq.dll",
        "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll",
        "ref/netcoreapp2.0/System.Xml.ReaderWriter.xml",
        "ref/netcoreapp2.0/System.Xml.Serialization.dll",
        "ref/netcoreapp2.0/System.Xml.XDocument.dll",
        "ref/netcoreapp2.0/System.Xml.XDocument.xml",
        "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll",
        "ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml",
        "ref/netcoreapp2.0/System.Xml.XPath.dll",
        "ref/netcoreapp2.0/System.Xml.XPath.xml",
        "ref/netcoreapp2.0/System.Xml.XmlDocument.dll",
        "ref/netcoreapp2.0/System.Xml.XmlDocument.xml",
        "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll",
        "ref/netcoreapp2.0/System.Xml.XmlSerializer.xml",
        "ref/netcoreapp2.0/System.Xml.dll",
        "ref/netcoreapp2.0/System.dll",
        "ref/netcoreapp2.0/WindowsBase.dll",
        "ref/netcoreapp2.0/mscorlib.dll",
        "ref/netcoreapp2.0/netstandard.dll",
        "runtime.json"
      ]
    },
    "Microsoft.NETCore.DotNetAppHost/2.0.0": {
      "sha512": "L4GGkcI/Mxl8PKLRpFdGmLb5oI8sGIR05bDTGkzCoamAjdUl1Zhkov2swjEsZvKYT8kkdiz39LtwyGYuCJxm1A==",
      "type": "package",
      "path": "microsoft.netcore.dotnetapphost/2.0.0",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512",
        "microsoft.netcore.dotnetapphost.nuspec",
        "runtime.json"
      ]
    },
    "Microsoft.NETCore.DotNetHostPolicy/2.0.0": {
      "sha512": "rm7mMn0A93fwyAwVhbyOCcPuu2hZNL0A0dAur9sNG9pEkONPfCEQeF7m2mC8KpqZO0Ol6tpV5J0AF3HTXT3GXA==",
      "type": "package",
      "path": "microsoft.netcore.dotnethostpolicy/2.0.0",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512",
        "microsoft.netcore.dotnethostpolicy.nuspec",
        "runtime.json"
      ]
    },
    "Microsoft.NETCore.DotNetHostResolver/2.0.0": {
      "sha512": "uBbjpeSrwsaTCADZCzRk+3aBzNnMqkC4zftJWBsL+Zk+8u+W+/lMb2thM5Y4hiVrv1YQg9t6dKldXzOKkY+pQw==",
      "type": "package",
      "path": "microsoft.netcore.dotnethostresolver/2.0.0",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512",
        "microsoft.netcore.dotnethostresolver.nuspec",
        "runtime.json"
      ]
    },
    "Microsoft.NETCore.ILAsm/2.1.0-rtm-26514-02": {
      "sha512": "8S03/tRb4borePe/izEs3gza0lTfkt2/chmcx4Wosd+X58kPT8fgsUFRJob2hwXUlrSJrdS+WGdMsU49OeXr9A==",
      "type": "package",
      "path": "microsoft.netcore.ilasm/2.1.0-rtm-26514-02",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "microsoft.netcore.ilasm.2.1.0-rtm-26514-02.nupkg.sha512",
        "microsoft.netcore.ilasm.nuspec",
        "runtime.json",
        "version.txt"
      ]
    },
    "Microsoft.NETCore.Jit/2.1.0-rtm-26514-02": {
      "sha512": "7TKGpTG44GJ96wYDw9eYQjVQOHfmqNk1kTtM/h+0nsZfsIsZlkLRAP4NhR1RVq2NvMTpwjoDCftEGBnqY1ci8A==",
      "type": "package",
      "path": "microsoft.netcore.jit/2.1.0-rtm-26514-02",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "microsoft.netcore.jit.2.1.0-rtm-26514-02.nupkg.sha512",
        "microsoft.netcore.jit.nuspec",
        "runtime.json",
        "version.txt"
      ]
    },
    "Microsoft.NETCore.Platforms/2.0.0": {
      "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
      "type": "package",
      "path": "microsoft.netcore.platforms/2.0.0",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "lib/netstandard1.0/_._",
        "microsoft.netcore.platforms.2.0.0.nupkg.sha512",
        "microsoft.netcore.platforms.nuspec",
        "runtime.json",
        "useSharedDesignerContext.txt",
        "version.txt"
      ]
    },
    "Microsoft.NETCore.Runtime.CoreCLR/2.1.0-rtm-26514-02": {
      "sha512": "rMn5fYWzlULbzTc5TuGlckBccnbGq42wp/f5YOiWSe7c6nxeZ0LYYXE+iKTEGnV0jJNvye/4wRsg0gCyFZ5bqQ==",
      "type": "package",
      "path": "microsoft.netcore.runtime.coreclr/2.1.0-rtm-26514-02",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "microsoft.netcore.runtime.coreclr.2.1.0-rtm-26514-02.nupkg.sha512",
        "microsoft.netcore.runtime.coreclr.nuspec",
        "ref/netstandard1.0/_._",
        "runtime.json",
        "version.txt"
      ]
    },
    "NETStandard.Library/2.0.0": {
      "sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",
      "type": "package",
      "path": "netstandard.library/2.0.0",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "build/NETStandard.Library.targets",
        "build/netstandard2.0/NETStandard.Library.targets",
        "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
        "build/netstandard2.0/ref/System.AppContext.dll",
        "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
        "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
        "build/netstandard2.0/ref/System.Collections.Specialized.dll",
        "build/netstandard2.0/ref/System.Collections.dll",
        "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
        "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
        "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
        "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
        "build/netstandard2.0/ref/System.ComponentModel.dll",
        "build/netstandard2.0/ref/System.Console.dll",
        "build/netstandard2.0/ref/System.Core.dll",
        "build/netstandard2.0/ref/System.Data.Common.dll",
        "build/netstandard2.0/ref/System.Data.dll",
        "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
        "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
        "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
        "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
        "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
        "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
        "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
        "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
        "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
        "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
        "build/netstandard2.0/ref/System.Drawing.dll",
        "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
        "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
        "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
        "build/netstandard2.0/ref/System.Globalization.dll",
        "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
        "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
        "build/netstandard2.0/ref/System.IO.Compression.dll",
        "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
        "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
        "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
        "build/netstandard2.0/ref/System.IO.FileSystem.dll",
        "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
        "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
        "build/netstandard2.0/ref/System.IO.Pipes.dll",
        "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
        "build/netstandard2.0/ref/System.IO.dll",
        "build/netstandard2.0/ref/System.Linq.Expressions.dll",
        "build/netstandard2.0/ref/System.Linq.Parallel.dll",
        "build/netstandard2.0/ref/System.Linq.Queryable.dll",
        "build/netstandard2.0/ref/System.Linq.dll",
        "build/netstandard2.0/ref/System.Net.Http.dll",
        "build/netstandard2.0/ref/System.Net.NameResolution.dll",
        "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
        "build/netstandard2.0/ref/System.Net.Ping.dll",
        "build/netstandard2.0/ref/System.Net.Primitives.dll",
        "build/netstandard2.0/ref/System.Net.Requests.dll",
        "build/netstandard2.0/ref/System.Net.Security.dll",
        "build/netstandard2.0/ref/System.Net.Sockets.dll",
        "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
        "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
        "build/netstandard2.0/ref/System.Net.WebSockets.dll",
        "build/netstandard2.0/ref/System.Net.dll",
        "build/netstandard2.0/ref/System.Numerics.dll",
        "build/netstandard2.0/ref/System.ObjectModel.dll",
        "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
        "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
        "build/netstandard2.0/ref/System.Reflection.dll",
        "build/netstandard2.0/ref/System.Resources.Reader.dll",
        "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
        "build/netstandard2.0/ref/System.Resources.Writer.dll",
        "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
        "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
        "build/netstandard2.0/ref/System.Runtime.Handles.dll",
        "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
        "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
        "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
        "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
        "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
        "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
        "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
        "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
        "build/netstandard2.0/ref/System.Runtime.dll",
        "build/netstandard2.0/ref/System.Security.Claims.dll",
        "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
        "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
        "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
        "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
        "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
        "build/netstandard2.0/ref/System.Security.Principal.dll",
        "build/netstandard2.0/ref/System.Security.SecureString.dll",
        "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
        "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
        "build/netstandard2.0/ref/System.Text.Encoding.dll",
        "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
        "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
        "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
        "build/netstandard2.0/ref/System.Threading.Tasks.dll",
        "build/netstandard2.0/ref/System.Threading.Thread.dll",
        "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
        "build/netstandard2.0/ref/System.Threading.Timer.dll",
        "build/netstandard2.0/ref/System.Threading.dll",
        "build/netstandard2.0/ref/System.Transactions.dll",
        "build/netstandard2.0/ref/System.ValueTuple.dll",
        "build/netstandard2.0/ref/System.Web.dll",
        "build/netstandard2.0/ref/System.Windows.dll",
        "build/netstandard2.0/ref/System.Xml.Linq.dll",
        "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
        "build/netstandard2.0/ref/System.Xml.Serialization.dll",
        "build/netstandard2.0/ref/System.Xml.XDocument.dll",
        "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
        "build/netstandard2.0/ref/System.Xml.XPath.dll",
        "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
        "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
        "build/netstandard2.0/ref/System.Xml.dll",
        "build/netstandard2.0/ref/System.dll",
        "build/netstandard2.0/ref/mscorlib.dll",
        "build/netstandard2.0/ref/netstandard.dll",
        "build/netstandard2.0/ref/netstandard.xml",
        "lib/netstandard1.0/_._",
        "netstandard.library.2.0.0.nupkg.sha512",
        "netstandard.library.nuspec"
      ]
    },
    "runtime.linux-x64.Microsoft.NETCore.App/2.0.0": {
      "sha512": "TIOakbBmt8RwnJaY0MARsPu7wqvqJXYWEwWpL9bPDF91KQubpsi06OXHZsZG5rTweOTI1sinmGBF2LIjhVvftQ==",
      "type": "package",
      "path": "runtime.linux-x64.microsoft.netcore.app/2.0.0",
      "files": [
        "LICENSE.TXT",
        "Microsoft.NETCore.App.versions.txt",
        "THIRD-PARTY-NOTICES.TXT",
        "ref/netstandard/_._",
        "runtime.linux-x64.microsoft.netcore.app.2.0.0.nupkg.sha512",
        "runtime.linux-x64.microsoft.netcore.app.nuspec",
        "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.CSharp.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.CSharp.ni.{41c05c8d-23f1-4236-a7ac-55a4283e4e57}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.VisualBasic.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.VisualBasic.ni.{ae62189e-96fd-497e-abe4-4d98f5bdd65b}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.Win32.Primitives.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.Win32.Primitives.ni.{dc585123-8ab2-4669-b536-87a36f711de4}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/Microsoft.Win32.Registry.ni.{1b436b4a-0d68-4241-8b1c-95ebee429751}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/SOS.NETCore.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/SOS.NETCore.ni.{c6f399c5-4d6c-41c5-bf14-52dc68b1a32a}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.AppContext.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.AppContext.ni.{6d5e9da5-ff32-49f2-b9e5-ace7cc938c9d}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Buffers.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Buffers.ni.{e2cf2940-4f55-410c-9e72-009369528e70}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.Concurrent.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.Concurrent.ni.{e2582dab-e846-4c37-b761-df64a87eebca}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.Immutable.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.Immutable.ni.{c8711bda-0770-4985-81e1-6e71830fb2d6}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.NonGeneric.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.NonGeneric.ni.{2434dc9e-5e00-4c2a-a5a1-8205fd8445dd}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.Specialized.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.Specialized.ni.{b1877ab7-7304-499c-aa86-898175b807ea}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Collections.ni.{8a6c3c77-5143-4f6b-a6b3-a4f4277c3751}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.Annotations.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.Annotations.ni.{ec982244-66c3-41fa-9c73-2e7ddd3cfea0}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.Composition.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.Composition.ni.{8db640eb-1e2e-4d2d-a59c-c92d81c5108a}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.DataAnnotations.ni.{4595fc6c-83c9-4ece-9aee-5e541b552ed9}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.EventBasedAsync.ni.{effaebe4-6472-425d-9566-59c19d175e57}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.Primitives.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.Primitives.ni.{a40c8dad-fe97-44ea-8bde-60ab121d586e}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.TypeConverter.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.TypeConverter.ni.{180d2d55-21c3-420a-b800-3b527b1d25de}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ComponentModel.ni.{a93818c4-77de-4600-8af6-de43d4abf99d}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Configuration.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Configuration.ni.{d32038cc-e5d8-49fb-9586-aef36a733c63}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Console.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Console.ni.{d2de1c76-d19d-4c52-8ff5-70e88349ea91}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Core.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Core.ni.{00b5a0b0-cacf-4313-849f-a7d1c0344e55}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Data.Common.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Data.Common.ni.{0c663b2a-128c-4a09-9348-dbc616cd5a7b}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Data.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Data.ni.{da3f327d-8cd1-40ef-b2a3-7f85673e65dc}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Contracts.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Contracts.ni.{6fdc04e8-024f-4367-803b-2a797e2a7d56}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Debug.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Debug.ni.{25124273-ca03-49ea-b248-e90bc6db492c}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.DiagnosticSource.ni.{f0e994fa-c15d-4051-8db9-7e24f60bda5b}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.FileVersionInfo.ni.{af5c9f5c-d0d3-4659-9bd7-6afc1228317f}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Process.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Process.ni.{1c91654d-e061-4140-98ce-25b9c423c2bc}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.StackTrace.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.StackTrace.ni.{63e6ca45-33a5-47fd-94fb-be4561c8363b}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.ni.{1796c810-1e66-419b-a0d0-b4295a6236ce}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Tools.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Tools.ni.{1daf529b-f439-45aa-8e1c-684704270b7f}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.TraceSource.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.TraceSource.ni.{de4b5b24-685d-4815-aba4-bc2107b063bb}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Tracing.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Diagnostics.Tracing.ni.{c20a3bf7-e80d-4252-b27e-991dfd5e0a20}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Drawing.Primitives.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Drawing.Primitives.ni.{2f49c45e-becd-4cd8-b658-d013a3018186}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Drawing.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Drawing.ni.{7ccd4cb4-015f-4001-8c3d-869364ab1b42}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Dynamic.Runtime.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Dynamic.Runtime.ni.{b2324c85-2e61-442c-8ed9-105877d20671}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Globalization.Calendars.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Globalization.Calendars.ni.{4fa454c7-cc4a-4887-8cd1-fff4cea852f7}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Globalization.Extensions.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Globalization.Extensions.ni.{4cef7e0b-1cb6-4476-aefe-0a174be60eae}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Globalization.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Globalization.ni.{0f59f9a1-ac43-4d5a-a8f8-c0193723c092}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Compression.FileSystem.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Compression.FileSystem.ni.{0c18dfe6-119e-4d8d-926f-bafba04381a9}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Compression.ZipFile.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Compression.ZipFile.ni.{209b7b31-3caa-4132-ac41-b3c6c36c9977}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Compression.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Compression.ni.{e2f594a0-d420-4911-a536-e5ecc356d322}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.AccessControl.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.AccessControl.ni.{abb5259b-33ae-4109-9565-69db991d108c}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.DriveInfo.ni.{f50b3607-53f8-43c2-8155-a38b79badab0}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.Primitives.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.Primitives.ni.{c8c36bb5-1905-4f6c-8a29-db008ed611f9}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.Watcher.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.Watcher.ni.{84c6fe10-f5e4-487a-9c27-36a2a32590c2}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.FileSystem.ni.{88e705fa-257e-4775-aa61-0c755bb79468}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.IsolatedStorage.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.IsolatedStorage.ni.{24a5fe07-9680-4424-a2fd-c65d162b305a}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.MemoryMappedFiles.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.MemoryMappedFiles.ni.{798afc64-2ad9-441a-a277-be18986fece8}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Pipes.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.Pipes.ni.{5357b955-bfcc-4243-af65-6db61241797e}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.UnmanagedMemoryStream.ni.{ccf92048-ef6b-4502-a058-0c247c1a50f7}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.IO.ni.{79b40727-0068-408b-b03b-3854160279a0}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.Expressions.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.Expressions.ni.{3052f606-3a9a-496d-94e6-4923fc41323c}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.Parallel.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.Parallel.ni.{75ae6a4c-bc2f-4469-8991-dddcc885f391}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.Queryable.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.Queryable.ni.{6841db72-61f3-4293-8215-0a65cc493895}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Linq.ni.{4778670b-4e7f-48f3-85ab-1e9559344dcf}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Http.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Http.ni.{111adad0-b6c2-4bca-92b7-e57e7c3e3c05}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.HttpListener.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.HttpListener.ni.{c3037904-0b71-44fe-9774-c667abdd6a8e}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Mail.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Mail.ni.{b0667f03-75fd-48c8-a5ce-1d0cc647c636}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.NameResolution.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.NameResolution.ni.{36feb1fa-226f-408f-aa31-d41446a04281}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.NetworkInformation.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.NetworkInformation.ni.{b5f99c16-b3d3-4c19-804d-113b2450f1dc}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Ping.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Ping.ni.{88c72d43-5b9f-44e1-b414-e96b881e2fb4}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Primitives.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Primitives.ni.{67e8c449-9ba4-4b8e-af30-ad1984f679bb}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Requests.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Requests.ni.{289d84c0-f67e-4848-8205-fb6006b7b454}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Security.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Security.ni.{1e8b4908-b289-49a3-8e08-209092019281}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.ServicePoint.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.ServicePoint.ni.{8163241a-729a-4020-aa48-45d547b33e14}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Sockets.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.Sockets.ni.{f29750ff-a6cc-4586-8ee4-240c09b3c5fe}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebClient.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebClient.ni.{b8f9a0f6-7d34-462e-a56a-d8aebe3839db}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebHeaderCollection.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebHeaderCollection.ni.{cd174cd2-c35f-4fe1-8bdf-4393d7e4857e}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebProxy.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebProxy.ni.{ee04b162-7501-4769-9046-9be490858139}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebSockets.Client.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebSockets.Client.ni.{aeed154e-7eee-419e-bedb-a63756bea179}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebSockets.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.WebSockets.ni.{f96681ec-5dd9-46ad-bbb1-38d5196ef8f0}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Net.ni.{9eb131c6-3779-40e5-82a3-8d3a7c2dd329}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Numerics.Vectors.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Numerics.Vectors.ni.{670ea9c1-14d0-4076-923c-42703d4b61a2}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Numerics.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Numerics.ni.{5ba866cf-ccfa-4bf5-a06d-0de017c89a16}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ObjectModel.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ObjectModel.ni.{32b8b204-c539-4c9e-a7fe-9130a30097c9}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.DataContractSerialization.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.DataContractSerialization.ni.{2e2c9201-fd24-465c-b446-2347efa3b1bc}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.Uri.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.Uri.ni.{6a78bbb4-a8b6-4414-b424-daf95070adfd}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.Xml.Linq.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.Xml.Linq.ni.{02cf50c2-cea7-40a7-8282-aeddc78a675f}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.Xml.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Private.Xml.ni.{a85cbb77-0da2-4de4-8646-cb5472dd1f97}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.DispatchProxy.ni.{6f1c855c-f8f2-4a71-9757-19269fc4b2f5}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Emit.ILGeneration.ni.{aec6a3eb-ef9a-42a2-900a-a750a69926b4}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Emit.Lightweight.ni.{bcbdbddc-f387-43f4-8e1a-b909e1f33c5c}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Emit.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Emit.ni.{99714843-1863-4238-9091-a4ddfeff8124}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Extensions.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Extensions.ni.{373aea2b-2a41-47a3-a597-fe246ded2d0f}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Metadata.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Metadata.ni.{3f98401c-6d63-496e-90b1-73eb96aac90a}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Primitives.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.Primitives.ni.{1f2679d5-25d4-42bc-b272-83fed6491be7}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.TypeExtensions.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.TypeExtensions.ni.{fb61e0c6-b202-4d3f-91b2-f126a0f2bc50}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Reflection.ni.{eaaa3cdc-8136-4e0a-8cce-d370e38580a5}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Resources.Reader.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Resources.Reader.ni.{1160b6a8-ba9f-408f-a270-21ce636e7c81}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Resources.ResourceManager.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Resources.ResourceManager.ni.{78edc1cf-2b30-4830-b7e3-99dec5f8e9c5}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Resources.Writer.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Resources.Writer.ni.{8c985225-9a80-41f0-86d1-6a28fad28ac5}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.ni.{dee96a0c-bab1-4884-9ae4-63555669b4e4}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Extensions.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Extensions.ni.{a5881647-c9b9-4b42-b3ae-78a1d1f7c51b}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Handles.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Handles.ni.{b248b222-2c75-412a-8c5d-8161e670c319}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.ni.{b857e3f7-e0c1-488a-b046-a4237a3c7e8f}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.ni.{44f3524a-7d32-4152-9751-e09a391f6f43}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.InteropServices.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.InteropServices.ni.{c9877489-915f-4a01-b3e8-f3c9dcb0728a}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Loader.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Loader.ni.{3ecff17f-2e8e-4149-8839-657813093e38}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Numerics.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Numerics.ni.{a9ddb526-9cb5-404e-84da-921d2511d43f}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Formatters.ni.{6a6aa3ea-a9bd-4073-b373-c52e46e913b8}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Json.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Json.ni.{c525b320-5732-4cb9-9fc9-b9a950519518}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Primitives.ni.{718ca9f2-4218-4f3f-a043-4d5a37ee6fcb}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Xml.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.Xml.ni.{791a094b-76bc-4453-9e91-1a920b60b360}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.Serialization.ni.{50289b4d-3379-46ac-b3b3-94dbf3243ac0}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Runtime.ni.{cb0e5172-470c-4125-bfa9-fea7686a0e91}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.AccessControl.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.AccessControl.ni.{292de460-58e8-4849-82b4-6171d3e01a51}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Claims.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Claims.ni.{ddabe3dd-5ff4-44c0-989e-81195d298bb2}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Algorithms.ni.{79445bd0-c274-4b93-85e4-91e39e026034}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Cng.ni.{7677eaef-39f1-4ce9-a7f2-5adfc978819d}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Csp.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Csp.ni.{8b6318f4-d626-4dca-87c7-d947873c9087}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Encoding.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Encoding.ni.{4c21e544-17d4-4b98-a99d-21e2c9364084}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.OpenSsl.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.OpenSsl.ni.{a3229ae3-d16b-4998-a27f-c7afb775c105}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Primitives.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.Primitives.ni.{d656e746-54d2-48d4-9c9f-b4f67d3c5719}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Cryptography.X509Certificates.ni.{4e8cfd23-26aa-48de-86e9-06c100e9dedb}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Principal.Windows.ni.{51748b0e-c1e6-4b54-be42-6e0184779a70}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Principal.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.Principal.ni.{46c5e39f-d9e7-4fb9-9806-dc602002564d}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.SecureString.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.SecureString.ni.{3e4ac61d-b659-4f2b-a3a7-70c758b744af}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Security.ni.{0e0cf194-72c2-4c24-9ea1-35e3354ff264}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ServiceModel.Web.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ServiceModel.Web.ni.{1eb28a2b-12e7-4756-a27e-7aa057405ca1}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ServiceProcess.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ServiceProcess.ni.{07bbe3dc-de7f-4b41-a42e-31d31b4a1936}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Text.Encoding.Extensions.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Text.Encoding.Extensions.ni.{a83ee9d2-1a26-4a3f-941e-12b5ce1e604e}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Text.Encoding.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Text.Encoding.ni.{703e3313-5cb2-498b-a32f-73b3deffae71}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Text.RegularExpressions.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Text.RegularExpressions.ni.{7e1656fc-05eb-4844-8fe0-9fe5bcf33a61}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Overlapped.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Overlapped.ni.{b33fc02d-af7c-43bb-a248-51a980f7117a}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.Dataflow.ni.{6fe8a713-e5ee-49ba-a52a-46eb83ab5bcc}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.Extensions.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.Extensions.ni.{0ff1639c-55ed-4142-8e9c-d38a8286d1f1}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.Parallel.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.Parallel.ni.{d7708b09-bd12-4650-9925-c6239ec67721}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Tasks.ni.{048c25b2-e07f-41da-8f30-8af74d086f80}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Thread.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Thread.ni.{a9d4472f-7579-47ee-bbc0-aa93257641f4}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.ThreadPool.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.ThreadPool.ni.{d3ac32ec-968c-4d01-8219-7acb3dd62241}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Timer.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.Timer.ni.{2e9e3a39-7f73-4283-8e91-b14c173a40b1}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Threading.ni.{867c5723-291c-45b1-9ae6-a7186d1be4d1}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Transactions.Local.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Transactions.Local.ni.{90f69bbe-6f5c-4a1b-99ae-3c8eaf54ad76}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Transactions.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Transactions.ni.{d5ec42d5-b453-473d-acdd-bb18dbf9c99b}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ValueTuple.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ValueTuple.ni.{2e1a951c-bb95-49f8-ae36-393018c7af13}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Web.HttpUtility.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Web.HttpUtility.ni.{35ac3787-f116-4eee-ad3a-2f1cf854d452}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Web.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Web.ni.{2c4bb922-39a2-4c35-a349-a1e360da92a2}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Windows.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Windows.ni.{41603d86-436a-447c-80ff-1fc43ee9d0f3}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.Linq.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.Linq.ni.{f2270b01-8256-42d8-bc6c-d364b1e42602}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.ReaderWriter.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.ReaderWriter.ni.{2c5edfd7-1e25-48f4-86db-9674ca8a17a0}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.Serialization.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.Serialization.ni.{614539d7-90ae-4723-8956-f9f9def535c7}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XDocument.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XDocument.ni.{805412d9-beb7-4312-8e3f-e9fa0993d3be}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XPath.XDocument.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XPath.XDocument.ni.{d1e546d5-2fc1-4087-a35f-dc616557b7e5}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XPath.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XPath.ni.{dec26f03-c305-4bb5-89b2-5dd2ff14b5fc}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XmlDocument.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XmlDocument.ni.{a2b07942-4863-4315-8729-34805a022c8f}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XmlSerializer.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.XmlSerializer.ni.{8bc1d34b-26e2-4fa5-b8b5-dfa941c592d0}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.Xml.ni.{17ab1dfb-2b36-488a-b71a-c94a73db47c8}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/System.ni.{836455d2-8f0f-4f9a-b836-4d0638ce65db}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/WindowsBase.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/WindowsBase.ni.{65839e5e-5738-46d4-93ee-826bb13837c3}.map",
        "runtimes/linux-x64/lib/netcoreapp2.0/mscorlib.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/netstandard.dll",
        "runtimes/linux-x64/lib/netcoreapp2.0/netstandard.ni.{dfb73f61-f906-4122-b107-63db5df9be01}.map",
        "runtimes/linux-x64/native/System.Globalization.Native.so",
        "runtimes/linux-x64/native/System.IO.Compression.Native.so",
        "runtimes/linux-x64/native/System.Native.a",
        "runtimes/linux-x64/native/System.Native.so",
        "runtimes/linux-x64/native/System.Net.Http.Native.so",
        "runtimes/linux-x64/native/System.Net.Security.Native.so",
        "runtimes/linux-x64/native/System.Private.CoreLib.dll",
        "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so",
        "runtimes/linux-x64/native/createdump",
        "runtimes/linux-x64/native/libclrjit.so",
        "runtimes/linux-x64/native/libcoreclr.so",
        "runtimes/linux-x64/native/libcoreclrtraceptprovider.so",
        "runtimes/linux-x64/native/libdbgshim.so",
        "runtimes/linux-x64/native/libmscordaccore.so",
        "runtimes/linux-x64/native/libmscordbi.so",
        "runtimes/linux-x64/native/libsos.so",
        "runtimes/linux-x64/native/libsosplugin.so",
        "runtimes/linux-x64/native/sosdocsunix.txt",
        "tools/crossgen"
      ]
    },
    "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost/2.0.0": {
      "sha512": "C+B1dqLnkrQR8mR47rR+r3JdZx8O165SL1INaqlOrhFDGTbLgmdiErXTp6D6D0Qv8gjIQerRe3y/hiUGJR7TPQ==",
      "type": "package",
      "path": "runtime.linux-x64.microsoft.netcore.dotnetapphost/2.0.0",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "runtime.linux-x64.microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512",
        "runtime.linux-x64.microsoft.netcore.dotnetapphost.nuspec",
        "runtimes/linux-x64/native/apphost",
        "version.txt"
      ]
    },
    "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy/2.0.0": {
      "sha512": "JDVVeDUWGn2E8yyA8oULTfJfo8Ej8gB5/NiIPYttf1zqU1T1UJzN4XsQyLyNgKgakCIIxXcAsiGXYYj3n8mtqg==",
      "type": "package",
      "path": "runtime.linux-x64.microsoft.netcore.dotnethostpolicy/2.0.0",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "runtime.linux-x64.microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512",
        "runtime.linux-x64.microsoft.netcore.dotnethostpolicy.nuspec",
        "runtimes/linux-x64/native/libhostpolicy.so",
        "version.txt"
      ]
    },
    "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver/2.0.0": {
      "sha512": "V+gIc/7DjFwqFmu1SpQ2NANx7qYELi4SXk7DWPUQjOBeXBoqMBoZdhFpuyzplQju/SSFaKBBLJABNCyOWbH1ag==",
      "type": "package",
      "path": "runtime.linux-x64.microsoft.netcore.dotnethostresolver/2.0.0",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "runtime.linux-x64.microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512",
        "runtime.linux-x64.microsoft.netcore.dotnethostresolver.nuspec",
        "runtimes/linux-x64/native/libhostfxr.so",
        "version.txt"
      ]
    },
    "runtime.linux-x64.Microsoft.NETCore.ILAsm/2.1.0-rtm-26514-02": {
      "sha512": "f7V7sJGXSPx4HAIrhjEyVLmY/LaKgTaTCkZDYGKQJJnucSXhjUAdaltsvspW2I4QPaDQKzX1eIrF/LeiwKs69g==",
      "type": "package",
      "path": "runtime.linux-x64.microsoft.netcore.ilasm/2.1.0-rtm-26514-02",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "runtime.linux-x64.microsoft.netcore.ilasm.2.1.0-rtm-26514-02.nupkg.sha512",
        "runtime.linux-x64.microsoft.netcore.ilasm.nuspec",
        "runtimes/linux-x64/native/ilasm",
        "version.txt"
      ]
    },
    "runtime.linux-x64.Microsoft.NETCore.Jit/2.1.0-rtm-26514-02": {
      "sha512": "1p0zl1/Zup79o/8XancU2nsQE7zlWcBeDwpX3Yf8PYaitL7x6CjoBapa/qSbuZ6QP3lyPTNgXi+FieAwYKxqtQ==",
      "type": "package",
      "path": "runtime.linux-x64.microsoft.netcore.jit/2.1.0-rtm-26514-02",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "runtime.linux-x64.microsoft.netcore.jit.2.1.0-rtm-26514-02.nupkg.sha512",
        "runtime.linux-x64.microsoft.netcore.jit.nuspec",
        "runtimes/linux-x64/native/libclrjit.so",
        "version.txt"
      ]
    },
    "runtime.linux-x64.Microsoft.NETCore.Runtime.CoreCLR/2.1.0-rtm-26514-02": {
      "sha512": "pzDaG16LsVB5Z723e+E/WMouAwwnAPO314GOFoj5l/IHR7f9Xz9h+edxQ7CEJQ20W4KdDEnLF5zUoz2ETz2P5w==",
      "type": "package",
      "path": "runtime.linux-x64.microsoft.netcore.runtime.coreclr/2.1.0-rtm-26514-02",
      "files": [
        "LICENSE.TXT",
        "THIRD-PARTY-NOTICES.TXT",
        "ref/netstandard1.0/_._",
        "runtime.linux-x64.microsoft.netcore.runtime.coreclr.2.1.0-rtm-26514-02.nupkg.sha512",
        "runtime.linux-x64.microsoft.netcore.runtime.coreclr.nuspec",
        "runtimes/linux-x64/lib/netstandard1.0/SOS.NETCore.dll",
        "runtimes/linux-x64/native/System.Globalization.Native.so",
        "runtimes/linux-x64/native/System.Private.CoreLib.dll",
        "runtimes/linux-x64/native/createdump",
        "runtimes/linux-x64/native/libcoreclr.so",
        "runtimes/linux-x64/native/libcoreclrtraceptprovider.so",
        "runtimes/linux-x64/native/libdbgshim.so",
        "runtimes/linux-x64/native/libmscordaccore.so",
        "runtimes/linux-x64/native/libmscordbi.so",
        "runtimes/linux-x64/native/libsos.so",
        "runtimes/linux-x64/native/libsosplugin.so",
        "runtimes/linux-x64/native/sosdocsunix.txt",
        "tools/crossgen",
        "version.txt"
      ]
    }
  },
  "projectFileDependencyGroups": {
    ".NETCoreApp,Version=v2.0": [
      "Microsoft.NETCore.App >= 2.0.0",
      "Microsoft.NETCore.ILAsm >= 2.1.0-rtm-26514-02",
      "Microsoft.NETCore.Runtime.CoreCLR >= 2.1.0-rtm-26514-02"
    ]
  },
  "packageFolders": {
    "/home/junghyukpark/workspace/sec.github.update/coreclr/packages": {},
    "/home/junghyukpark/.dotnet/NuGetFallbackFolder": {},
    "/home/junghyukpark/workspace/sec.github.update/coreclr/Tools/dotnetcli/sdk/NuGetFallbackFolder": {}
  },
  "project": {
    "version": "1.0.0",
    "restore": {
      "projectUniqueName": "/home/junghyukpark/workspace/sec.github.update/coreclr/Tools/ilasm/ilasm.depproj",
      "projectName": "ilasm",
      "projectPath": "/home/junghyukpark/workspace/sec.github.update/coreclr/Tools/ilasm/ilasm.depproj",
      "packagesPath": "/home/junghyukpark/workspace/sec.github.update/coreclr/packages",
      "outputPath": "/home/junghyukpark/workspace/sec.github.update/coreclr/Tools/ilasm/obj/",
      "projectStyle": "PackageReference",
      "fallbackFolders": [
        "/home/junghyukpark/.dotnet/NuGetFallbackFolder",
        "/home/junghyukpark/workspace/sec.github.update/coreclr/Tools/dotnetcli/sdk/NuGetFallbackFolder"
      ],
      "configFilePaths": [
        "/home/junghyukpark/.nuget/NuGet/NuGet.Config"
      ],
      "originalTargetFrameworks": [
        "netcoreapp2.0"
      ],
      "sources": {
        "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}
      },
      "frameworks": {
        "netcoreapp2.0": {
          "projectReferences": {}
        }
      }
    },
    "frameworks": {
      "netcoreapp2.0": {
        "dependencies": {
          "Microsoft.NETCore.App": {
            "suppressParent": "All",
            "target": "Package",
            "version": "[2.0.0, )",
            "autoReferenced": true
          },
          "Microsoft.NETCore.ILAsm": {
            "target": "Package",
            "version": "[2.1.0-rtm-26514-02, )"
          },
          "Microsoft.NETCore.Runtime.CoreCLR": {
            "target": "Package",
            "version": "[2.1.0-rtm-26514-02, )"
          }
        },
        "imports": [
          "net461"
        ],
        "assetTargetFallback": true,
        "warn": true
      }
    },
    "runtimes": {
      "linux-x64": {
        "#import": []
      }
    }
  }
}