-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
descriptions.json
2287 lines (2283 loc) · 96.2 KB
/
descriptions.json
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
[
{
"Name": "RuntimePackage",
"Description": "Internal implementation package not meant for direct consumption. Please do not reference directly.",
"CommonTypes": []
},
{
"Name": "NuGet3MinVersion",
"Description": "When using NuGet 3.x this package requires at least version {0}.",
"CommonTypes": []
},
{
"Name": "Microsoft.Cci",
"Description": "Provides a portable version of the Microsoft.Cci library",
"CommonTypes": []
},
{
"Name": "Microsoft.CSharp",
"Description": "Provides support for compilation and code generation, including dynamic, using the C# language.",
"CommonTypes": [
"Microsoft.CSharp.RuntimeBinder.Binder",
"Microsoft.CSharp.RuntimeBinder.RuntimeBinderException",
"Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo",
"Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfoFlags",
"Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags"
]
},
{
"Name": "Microsoft.Bcl.HashCode",
"Description": "Provides the HashCode type for .NET Standard 2.0. This package is not required starting with .NET Standard 2.1 and .NET Core 3.0.",
"CommonTypes": [
"System.HashCode"
]
},
{
"Name": "Microsoft.Diagnostics.Tracing.EventSource.Redist",
"Description": "This package includes the class Microsoft.Diagnostics.Tracing.EventSource which enables firing ETW events from managed code. This is the \"runtime\" or \"redist\" EventSource package and should be referenced directly only by other NuGet packages that need the EventSource functionality. Application developers that need this functionality should instead reference the Microsoft.Diagnostics.Tracing.EventSource NuGet package which provides an enhanced developer experience.
This package enables defining a strongly typed specification of an ETW provider that can be called by managed code. The EventSource class is also included in the .NET Framework, .NET Core, and netstandard2.0 in the System.Diagnostics.Tracing namespace. This package contains the latest version of EventSource and is meant to be used as a stop gap for .NET Framework developers until features and fixes are ported to System.Diagnostics.Tracing.EventSource in the .NET Framework.
For more details, have a look at http://msdn.microsoft.com/en-us/library/system.diagnostics.tracing.eventsource.aspx.
",
"CommonTypes": [
"Microsoft.Diagnostics.Tracing.EventSource"
]
},
{
"Name": "Microsoft.NETCore",
"Description": "Provides a set of packages that can be used when building portable libraries on .NETCore based platforms.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.Console",
"Description": "Provides a set of packages that can be used when building console applications on .NETCore.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.ConsoleHost",
"Description": "CoreCLR application host for console applications.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.Platforms",
"Description": "Provides runtime information required to resolve target framework, platform, and runtime specific implementations of .NETCore packages.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.Platforms.Future",
"Description": "Provides runtime information required to resolve target framework, platform, and runtime specific implementations of .NETCore packages. This package represents future platforms not yet supported in .NETCore stable release and is subject to change.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.Portable.Compatibility",
"Description": "Enables compatibility with portable libraries targeting previous .NET releases like .NET Framework 4.0 and Silverlight.\nThis package supports retargeting references to classic reference assemblies (mscorlib.dll, system.dll, etc) to new contract assemblies (System.Runtime.dll, System.IO, etc). It does this in a pay-for-play way to prevent consuming assemblies from having to reference all of the contracts that happen to overlap with mscorlib. As such, when using this package you may encounter errors like\n\terror CS0012: The type 'WebRequest' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Net.Requests, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.\nTo resolve these errors install the package with the same name as the missing assembly.",
"CommonTypes": []
},
{
"Name": "Microsoft.Windows.Compatibility",
"Description": "This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET Core as well as .NET Standard.",
"CommonTypes": []
},
{
"Name": "Microsoft.Windows.Compatibility.Shims",
"Description": "This package provides infrastructure services and shouldn't be referenced directly from your code. It provides facade assemblies in order to make the Microsoft.Windows.Compatibility package work across all .NET implementations.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.Runtime",
"Description": "The .NET Core runtime.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.Runtime.CoreCLR",
"Description": "The .NET Core runtime, called CoreCLR, and the base library, called mscorlib. It includes the garbage collector, JIT compiler, base .NET data types and many low-level classes.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.Targets",
"Description": "Provides supporting infrastructure for portable projects: support identifiers that define framework and runtime for support targets and packages that reference the minimum supported package versions when targeting these.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.Targets.DNXCore",
"Description": "Ensures a minimum set of package versions when building DNXCore applications and portable libraries.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.Targets.NETFramework",
"Description": "Ensures a minimum set of package versions when building .NET Framework applications and portable libraries.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.Targets.UniversalWindowsPlatform",
"Description": "Ensures a minimum set of package versions when building Universal Windows Platform applications and portable libraries.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.TestHost",
"Description": "CoreCLR application host for test applications.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.Windows.ApiSets",
"Description": "Windows API set dlls for use in operating systems that do not include them.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.UniversalWindowsPlatform",
"Description": "Provides a set of packages that can be used when building Universal Windows applications on .NETCore.",
"CommonTypes": []
},
{
"Name": "Microsoft.NETCore.UWPHost",
"Description": "CoreCLR application host for Universal Windows applications.",
"CommonTypes": []
},
{
"Name": "Microsoft.Private.PackageBaseline",
"Description": "Package used by CoreFx build infrastructure to represent the latest package versions in a release.",
"CommonTypes": []
},
{
"Name": "Microsoft.Private.CoreFx.NETCoreApp",
"Description": "Package used to represent the portions of NETCoreApp that come from CoreFx.",
"CommonTypes": []
},
{
"Name": "Microsoft.Private.CoreFx.OOB",
"Description": "Package used to represent out-of-band packages that are not included in NetCoreApp.",
"CommonTypes": []
},
{
"Name": "Microsoft.TargetingPack.NETFramework.v4.6",
"Description": "Contains the .NET Framework v4.6 targeting pack.",
"CommonTypes": []
},
{
"Name": "Microsoft.TargetingPack.Private.CoreCLR",
"Description": "Contains a private targeting pack which contains only the CoreCLR mscorlib reference assembly. Used for producing platform specific libraries such as facades.",
"CommonTypes": []
},
{
"Name": "Microsoft.VisualBasic.Core",
"Description": "Provides types that support the Visual Basic runtime",
"CommonTypes": [
"Microsoft.VisualBasic.Strings",
"Microsoft.VisualBasic.CompilerServices.Conversions"
]
},
{
"Name": "Microsoft.XmlSerializer.Generator",
"Description": "Like the Xml Serializer Generator (sgen.exe) on desktop, Microsoft.XmlSerializer.Generator NuGet package is the solution for .NET Core and .NET Standard Libraries. It creates an Xml serialization assembly for types contained in an assembly in order to improve the startup performance of Xml serialization when serializing or de-serializing objects of those types using XmlSerializer.",
"CommonTypes": []
},
{
"Name": "System.ServiceModel.Syndication",
"Description": "Provides classes related to service model syndication.",
"CommonTypes": []
},
{
"Name": "NETStandard.Library.NETFramework",
"Description": "Adds NETStandard2.0 support to .NET Framework.",
"CommonTypes": [
]
},
{
"Name": "Microsoft.Win32.Primitives",
"Description": "Provides common types for Win32-based libraries.",
"CommonTypes": [
"System.ComponentModel.Win32Exception"
]
},
{
"Name": "Microsoft.Win32.Registry",
"Description": "Provides support for accessing and modifying the Windows Registry.",
"CommonTypes": [
"Microsoft.Win32.RegistryKey",
"Microsoft.Win32.Registry",
"Microsoft.Win32.RegistryValueKind",
"Microsoft.Win32.RegistryHive",
"Microsoft.Win32.RegistryView"
]
},
{
"Name": "Microsoft.Win32.SystemEvents",
"Description": "Provides access to Windows system event notifications.",
"CommonTypes": [
"Microsoft.Win32.SystemEvents"
]
},
{
"Name": "Microsoft.Win32.Registry.AccessControl",
"Description": "Provides support for managing access and audit control lists for Microsoft.Win32.RegistryKey.",
"CommonTypes": [
"System.Security.AccessControl.RegistryAccessRule",
"System.Security.AccessControl.RegistryAuditRule",
"System.Security.AccessControl.RegistrySecurity"
]
},
{
"Name": "System.AppContext",
"Description": "Provides the System.AppContext class, which allows access to the BaseDirectory property and other application specific data.",
"CommonTypes": [
"System.AppContext"
]
},
{
"Name": "System.Buffers",
"Description": "Provides resource pooling of any type for performance-critical applications that allocate and deallocate objects frequently.",
"CommonTypes": [
"System.Buffers.ArrayPool<T>"
]
},
{
"Name": "System.CodeDom",
"Description": "Provides types that can be used to model the structure of a source code document and to output source code for that model in a supported language.",
"CommonTypes": [
"System.CodeDom.CodeObject",
"System.CodeDom.Compiler.CodeDomProvider",
"Microsoft.CSharp.CSharpCodeProvider",
"Microsoft.VisualBasic.VBCodeProvider"
]
},
{
"Name": "System.Collections",
"Description": "Provides classes that define generic collections, which allow developers to create strongly typed collections that provide better type safety and performance than non-generic strongly typed collections.",
"CommonTypes": [
"System.Collections.Generic.List<T>",
"System.Collections.Generic.Dictionary<TKey, TValue>",
"System.Collections.Generic.Queue<T>",
"System.Collections.Generic.Stack<T>",
"System.Collections.Generic.HashSet<T>",
"System.Collections.Generic.LinkedList<T>",
"System.Collections.Generic.EqualityComparer<T>",
"System.Collections.Generic.Comparer<T>",
"System.Collections.Generic.SortedDictionary<TKey, TValue>"
]
},
{
"Name": "System.Collections.Concurrent",
"Description": "Provides several thread-safe collection classes that should be used in place of the corresponding types in the System.Collections.NonGeneric and System.Collections packages whenever multiple threads are accessing the collection concurrently.",
"CommonTypes": [
"System.Collections.Concurrent.ConcurrentDictionary<TKey, TValue>",
"System.Collections.Concurrent.ConcurrentQueue<T>",
"System.Collections.Concurrent.ConcurrentBag<T>",
"System.Collections.Concurrent.BlockingCollection<T>",
"System.Collections.Concurrent.ConcurrentStack<T>"
]
},
{
"Name": "System.Collections.Immutable",
"Description": "This package provides collections that are thread safe and guaranteed to never change their contents, also known as immutable collections. Like strings, any methods that perform modifications will not change the existing instance but instead return a new instance. For efficiency reasons, the implementation uses a sharing mechanism to ensure that newly created instances share as much data as possible with the previous instance while ensuring that operations have a predictable time complexity.",
"CommonTypes": [
"System.Collections.Immutable.ImmutableArray",
"System.Collections.Immutable.ImmutableArray<T>",
"System.Collections.Immutable.ImmutableDictionary",
"System.Collections.Immutable.ImmutableDictionary<TKey,TValue>",
"System.Collections.Immutable.ImmutableHashSet",
"System.Collections.Immutable.ImmutableHashSet<T>",
"System.Collections.Immutable.ImmutableList",
"System.Collections.Immutable.ImmutableList<T>",
"System.Collections.Immutable.ImmutableQueue",
"System.Collections.Immutable.ImmutableQueue<T>",
"System.Collections.Immutable.ImmutableSortedDictionary",
"System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>",
"System.Collections.Immutable.ImmutableSortedSet",
"System.Collections.Immutable.ImmutableSortedSet<T>",
"System.Collections.Immutable.ImmutableStack",
"System.Collections.Immutable.ImmutableStack<T>"
]
},
{
"Name": "System.Collections.NonGeneric",
"Description": "Provides classes that define older non-generic collections of objects, such as lists, queues, hash tables and dictionaries. Developers should prefer the generic collections in the System.Collections package.",
"CommonTypes": [
"System.Collections.ArrayList",
"System.Collections.Hashtable",
"System.Collections.CollectionBase",
"System.Collections.ReadOnlyCollectionBase",
"System.Collections.Stack",
"System.Collections.SortedList",
"System.Collections.DictionaryBase",
"System.Collections.Queue",
"System.Collections.Comparer",
"System.Collections.CaseInsensitiveComparer"
]
},
{
"Name": "System.Collections.Specialized",
"Description": "Provides older specialized non-generic collections; for example, a linked list dictionary, a bit vector, and collections that contain only strings.",
"CommonTypes": [
"System.Collections.Specialized.NameValueCollection",
"System.Collections.Specialized.NameObjectCollectionBase",
"System.Collections.Specialized.StringCollection",
"System.Collections.Specialized.IOrderedDictionary",
"System.Collections.Specialized.HybridDictionary",
"System.Collections.Specialized.OrderedDictionary",
"System.Collections.Specialized.ListDictionary",
"System.Collections.Specialized.StringDictionary",
"System.Collections.Specialized.BitVector32"
]
},
{
"Name": "System.ComponentModel",
"Description": "Provides interfaces for the editing and change tracking of objects used as data sources.",
"CommonTypes": [
"System.ComponentModel.CancelEventArgs",
"System.IServiceProvider",
"System.ComponentModel.IEditableObject",
"System.ComponentModel.IChangeTracking",
"System.ComponentModel.IRevertibleChangeTracking"
]
},
{
"Name": "System.ComponentModel.Annotations",
"Description": "Provides attributes that are used to define metadata for objects used as data sources.",
"CommonTypes": [
"System.ComponentModel.DataAnnotations.ValidationResult",
"System.ComponentModel.DataAnnotations.IValidatableObject",
"System.ComponentModel.DataAnnotations.ValidationAttribute",
"System.ComponentModel.DataAnnotations.RequiredAttribute",
"System.ComponentModel.DataAnnotations.StringLengthAttribute",
"System.ComponentModel.DataAnnotations.DisplayAttribute",
"System.ComponentModel.DataAnnotations.RegularExpressionAttribute",
"System.ComponentModel.DataAnnotations.DataTypeAttribute",
"System.ComponentModel.DataAnnotations.RangeAttribute",
"System.ComponentModel.DataAnnotations.KeyAttribute"
]
},
{
"Name": "System.ComponentModel.Composition",
"Description": "This namespace provides classes that constitute the core of the Managed Extensibility Framework, or MEF.",
"CommonTypes": [
"System.ComponentModel.Composition.ChangeRejectedException",
"System.ComponentModel.Composition.CompositionContractMismatchException",
"System.ComponentModel.Composition.CompositionError",
"System.ComponentModel.Composition.CompositionException",
"System.ComponentModel.Composition.ExportAttribute",
"System.ComponentModel.Composition.ImportAttribute",
"System.ComponentModel.Composition.ImportCardinalityMismatchException",
"System.ComponentModel.Composition.Hosting.AggregateCatalog",
"System.ComponentModel.Composition.Hosting.ApplicationCatalog",
"System.ComponentModel.Composition.Hosting.AssemblyCatalog",
"System.ComponentModel.Composition.Hosting.CompositionContainer",
"System.ComponentModel.Composition.Primitives.ComposablePartException",
"System.ComponentModel.Composition.Primitives.ExportDefinition",
"System.ComponentModel.Composition.Primitives.ImportDefinition",
"System.ComponentModel.Composition.ReflectionModel.ReflectionModelServices"
]
},
{
"Name": "System.ComponentModel.Composition.Registration",
"Description": "This namespace provides classes that constitute the core of the Managed Extensibility Framework, or MEF.",
"CommonTypes": [
"System.ComponentModel.Composition.Registration.RegistrationBuilder",
"System.ComponentModel.Composition.Registration.PartBuilder",
"System.ComponentModel.Composition.Registration.PartBuilder<T>",
"System.ComponentModel.Composition.Registration.ParameterImportBuilder",
"System.ComponentModel.Composition.Registration.ImportBuilder",
"System.ComponentModel.Composition.Registration.ExportBuilder"
]
},
{
"Name": "System.ComponentModel.EventBasedAsync",
"Description": "Provides support classes and delegates for the event-based asynchronous pattern. Developers should prefer the classes in the System.Threading.Tasks package.",
"CommonTypes": [
"System.ComponentModel.AsyncCompletedEventArgs",
"System.ComponentModel.AsyncCompletedEventHandler",
"System.ComponentModel.ProgressChangedEventArgs",
"System.ComponentModel.ProgressChangedEventHandler",
"System.ComponentModel.AsyncOperation",
"System.ComponentModel.AsyncOperationManager"
]
},
{
"Name": "System.ComponentModel.TypeConverter",
"Description": "Provides the System.ComponentModel.TypeConverter class, which represents a unified way of converting types of values to other types.",
"CommonTypes": [
"System.ComponentModel.TypeConverter",
"System.ComponentModel.TypeConverterAttribute",
"System.ComponentModel.PropertyDescriptor",
"System.ComponentModel.StringConverter",
"System.ComponentModel.ITypeDescriptorContext",
"System.ComponentModel.EnumConverter",
"System.ComponentModel.TypeDescriptor",
"System.ComponentModel.Int32Converter",
"System.ComponentModel.BooleanConverter",
"System.ComponentModel.DoubleConverter"
]
},
{
"Name": "System.ComponentModel.Primitives",
"Description": "Provides interfaces that are used to implement the run-time and design-time behavior of components.",
"CommonTypes": [
"System.ComponentModel.IComponent",
"System.ComponentModel.IContainer",
"System.ComponentModel.ISite",
"System.ComponentModel.ComponentCollection"
]
},
{
"Name": "System.Composition",
"Description": "This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web.",
"CommonTypes": [
"System.Composition.ExportAttribute",
"System.Composition.ImportAttribute",
"System.Composition.Convention.ConventionBuilder",
"System.Composition.Hosting.CompositionHost",
"System.Composition.CompositionContext",
"System.Composition.CompositionContextExtensions"
]
},
{
"Name": "System.Composition.AttributedModel",
"Description": "Provides common attributes used by System.Composition types.",
"CommonTypes": [
"System.Composition.ExportAttribute",
"System.Composition.ImportAttribute",
"System.Composition.Convention.AttributedModelProvider"
]
},
{
"Name": "System.Composition.Convention",
"Description": "Provides types that support using Managed Extensibility Framework with a convention-based configuration model.",
"CommonTypes": [
"System.Composition.Convention.ConventionBuilder",
"System.Composition.Convention.ExportConventionBuilder",
"System.Composition.Convention.ImportConventionBuilder",
"System.Composition.Convention.PartConventionBuilder",
"System.Composition.Convention.ParameterImportConventionBuilder"
]
},
{
"Name": "System.Composition.Hosting",
"Description": "Provides Managed Extensibility Framework types that are useful to developers of extensible applications, or hosts.",
"CommonTypes": [
"System.Composition.Hosting.CompositionHost"
]
},
{
"Name": "System.Composition.Runtime",
"Description": "Contains runtime components of the Managed Extensibility Framework.",
"CommonTypes": [
"System.Composition.CompositionContext"
]
},
{
"Name": "System.Composition.TypedParts",
"Description": "Provides some extension methods for the Managed Extensibility Framework.",
"CommonTypes": [
"System.Composition.CompositionContextExtensions",
"System.Composition.Hosting.ContainerConfiguration"
]
},
{
"Name": "System.Configuration.ConfigurationManager",
"Description": "Provides types that support using configuration files.",
"CommonTypes": [
"System.Configuration.Configuration",
"System.Configuration.ConfigurationManager"
]
},
{
"Name": "System.Console",
"Description": "Provides the System.Console class, which represents the standard input, output and error streams for console applications.",
"CommonTypes": [
"System.Console",
"System.ConsoleColor"
]
},
{
"Name": "System.Data.Common",
"Description": "Provides the base abstract classes, including System.Data.DbConnection and System.Data.DbCommand, for all data providers.",
"CommonTypes": [
"System.DBNull",
"System.Data.Common.DbConnection",
"System.Data.Common.DbException",
"System.Data.Common.DbParameter",
"System.Data.DbType",
"System.Data.Common.DbDataReader",
"System.Data.Common.DbCommand",
"System.Data.Common.DbTransaction",
"System.Data.Common.DbParameterCollection",
"System.Data.Common.DbProviderFactory"
]
},
{
"Name": "System.Data.DataSetExtensions",
"Description": "Provides extensions to form LINQ expressions and method queries against DataTable objects.",
"CommonTypes": [
"System.Data.DataRowComparer",
"System.Data.DataRowExtensions",
"System.Data.DataTableExtensions",
"System.Data.EnumerableRowCollection",
"System.Data.EnumerableRowCollectionExtensions",
"System.Data.OrderedEnumerableRowCollection",
"System.Data.TypedTableBase",
"System.Data.TypedTableBaseExtensions"
]
},
{
"Name": "System.Data.Odbc",
"Description": "Provides a collection of classes used to access an ODBC data source in the managed space",
"CommonTypes": [
"System.Data.Odbc.OdbcCommand",
"System.Data.Odbc.OdbcConnection",
"System.Data.Odbc.OdbcDataReader",
"System.Data.Odbc.OdbcDataAdapter",
"System.Data.Odbc.OdbcParameter",
"System.Data.Odbc.OdbcParameterCollection",
"System.Data.Odbc.OdbcTransaction"
]
},
{
"Name": "System.Data.OleDb",
"Description": "Provides a collection of classes for OLEDB.",
"CommonTypes": [
"System.Data.OleDb.OleDbCommand",
"System.Data.OleDb.OleDbCommandBuilder",
"System.Data.OleDb.OleDbConnection",
"System.Data.OleDb.OleDbDataAdapter",
"System.Data.OleDb.OleDbDataReader",
"System.Data.OleDb.OleDbParameter",
"System.Data.OleDb.OleDbParameterCollection",
"System.Data.OleDb.OleDbTransaction"
]
},
{
"Name": "System.Data.SqlClient",
"Description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)",
"CommonTypes": [
"System.Data.SqlClient.SqlConnection",
"System.Data.SqlClient.SqlException",
"System.Data.SqlClient.SqlParameter",
"System.Data.SqlDbType",
"System.Data.SqlClient.SqlDataReader",
"System.Data.SqlClient.SqlCommand",
"System.Data.SqlClient.SqlTransaction",
"System.Data.SqlClient.SqlParameterCollection",
"System.Data.SqlClient.SqlClientFactory"
]
},
{
"Name": "System.Data.SqlClient.sni",
"Description": "Internal implementation package not meant for direct consumption. Please do not reference directly. Provides native implementation dll used by System.Data.SqlClient.",
"CommonTypes": []
},
{
"Name": "System.Diagnostics.Contracts",
"Description": "Provides static classes for representing program contracts such as preconditions, postconditions, and invariants.",
"CommonTypes": [
"System.Diagnostics.Contracts.Contract",
"System.Diagnostics.Contracts.ContractClassAttribute",
"System.Diagnostics.Contracts.ContractClassForAttribute",
"System.Diagnostics.Contracts.ContractFailureKind",
"System.Runtime.CompilerServices.ContractHelper",
"System.Diagnostics.Contracts.ContractInvariantMethodAttribute",
"System.Diagnostics.Contracts.PureAttribute",
"System.Diagnostics.Contracts.ContractArgumentValidatorAttribute",
"System.Diagnostics.Contracts.ContractVerificationAttribute",
"System.Diagnostics.Contracts.ContractOptionAttribute"
]
},
{
"Name": "System.Diagnostics.DiagnosticSource",
"Description": "Provides Classes that allow you to decouple code logging rich (unserializable) diagnostics/telemetry (e.g. framework) from code that consumes it (e.g. tools)",
"CommonTypes": [
"System.Diagnostics.DiagnosticListener",
"System.Diagnostics.DiagnosticSource"
]
},
{
"Name": "System.Diagnostics.Debug",
"Description": "Provides classes and attributes that allows basic interaction with a debugger.",
"CommonTypes": [
"System.Diagnostics.Debug",
"System.Diagnostics.DebuggerStepThroughAttribute",
"System.Diagnostics.Debugger",
"System.Diagnostics.DebuggerDisplayAttribute",
"System.Diagnostics.DebuggerBrowsableAttribute",
"System.Diagnostics.DebuggerBrowsableState",
"System.Diagnostics.DebuggerHiddenAttribute",
"System.Diagnostics.DebuggerNonUserCodeAttribute",
"System.Diagnostics.DebuggerTypeProxyAttribute"
]
},
{
"Name": "System.Diagnostics.Debug.SymbolReader",
"Description": "Provides the System.Diagnostics.Debug.SymbolReader class, which allows extraction of a debug information from portable pdb files.",
"CommonTypes": [
"System.Diagnostics.Debug.SymbolReader"
]
},
{
"Name": "System.Diagnostics.FileVersionInfo",
"Description": "Provides the System.Diagnostics.FileVersionInfo class, which allows access to Win32 version resource information for a physical file on disk.",
"CommonTypes": [
"System.Diagnostics.FileVersionInfo"
]
},
{
"Name": "System.Diagnostics.EventLog",
"Description": "Provides the System.Diagnostics.EventLog class, which allows the applications to use the windows event log service.",
"CommonTypes": [
"System.Diagnostics.EventLog"
]
},
{
"Name": "System.Diagnostics.PerformanceCounter",
"Description": "Provides the System.Diagnostics.PerformanceCounter class, which allows access to Windows performance counters.",
"CommonTypes": [
"System.Diagnostics.PerformanceCounter"
]
},
{
"Name": "System.Diagnostics.Process",
"Description": "Provides the System.Diagnostics.Process class, which allows interaction with local and remote processes.",
"CommonTypes": [
"System.Diagnostics.Process",
"System.Diagnostics.ProcessModule",
"System.Diagnostics.ProcessStartInfo",
"System.Diagnostics.ProcessThread"
]
},
{
"Name": "System.Diagnostics.StackTrace",
"Description": "Provides the System.Diagnostics.StackTrace class, which allows interaction with local and remote processes.",
"CommonTypes": [
"System.Diagnostics.StackFrame",
"System.Diagnostics.StackTrace"
]
},
{
"Name": "System.Diagnostics.TextWriterTraceListener",
"Description": "Provides trace listeners for directing tracing output to a text writer, such as System.IO.StreamWriter, or a stream, such as a System.IO.FileStream.",
"CommonTypes": [
"System.Diagnostics.TextWriterTraceListener",
"System.Diagnostics.DelimitedListTraceListener"
]
},
{
"Name": "System.Diagnostics.Tools",
"Description": "Provides attributes, such as GeneratedCodeAttribute and SuppresMessageAttribute, that are emitted or consumed by analysis tools.",
"CommonTypes": [
"System.CodeDom.Compiler.GeneratedCodeAttribute",
"System.Diagnostics.CodeAnalysis.SuppressMessageAttribute"
]
},
{
"Name": "System.Diagnostics.TraceSource",
"Description": "Provides classes that help you trace the execution of your code. Developers should prefer the classes in the ETW-based System.Diagnostics.Tracing package.",
"CommonTypes": [
"System.Diagnostics.TraceListener",
"System.Diagnostics.TraceLevel",
"System.Diagnostics.TraceSource",
"System.Diagnostics.TraceEventType",
"System.Diagnostics.DefaultTraceListener",
"System.Diagnostics.Trace"
]
},
{
"Name": "System.Diagnostics.Tracing",
"Description": "Provides class that enable you to create high performance tracing events to be captured by event tracing for Windows (ETW).",
"CommonTypes": [
"System.Diagnostics.Tracing.EventSource",
"System.Diagnostics.Tracing.EventListener",
"System.Diagnostics.Tracing.EventLevel",
"System.Diagnostics.Tracing.EventKeywords",
"System.Diagnostics.Tracing.EventWrittenEventArgs",
"System.Diagnostics.Tracing.EventAttribute",
"System.Diagnostics.Tracing.EventSourceAttribute",
"System.Diagnostics.Tracing.NonEventAttribute"
]
},
{
"Name": "System.DirectoryServices",
"Description": "Provides easy access to Active Directory Domain Services.",
"CommonTypes": [
"System.DirectoryServices.DirectoryEntry",
"System.DirectoryServices.DirectorySearcher",
"System.DirectoryServices.ActiveDirectory.ActiveDirectorySite",
"System.DirectoryServices.ActiveDirectory.ApplicationPartition",
"System.DirectoryServices.ActiveDirectory.DirectoryContext",
"System.DirectoryServices.ActiveDirectory.DirectoryServer",
"System.DirectoryServices.ActiveDirectory.Domain",
"System.DirectoryServices.ActiveDirectory.DomainController"
]
},
{
"Name": "System.DirectoryServices.AccountManagement",
"Description": "Provides uniform access and manipulation of user, computer, and group security principals across the multiple principal stores: Active Directory Domain Services (AD DS), Active Directory Lightweight Directory Services (AD LDS), and Machine SAM (MSAM).",
"CommonTypes": [
]
},
{
"Name": "System.DirectoryServices.Protocols",
"Description": "Provides the methods defined in the Lightweight Directory Access Protocol (LDAP) version 3 (V3) and Directory Services Markup Language (DSML) version 2.0 (V2) standards.",
"CommonTypes": [
]
},
{
"Name": "System.Drawing.Primitives",
"Description": "Provides basic drawing primitive structures, that exposes the corresponding System.Drawing.dll types in .NET Core.",
"CommonTypes": [
"System.Drawing.Color",
"System.Drawing.Point",
"System.Drawing.PointF",
"System.Drawing.Size",
"System.Drawing.SizeF",
"System.Drawing.Rectangle",
"System.Drawing.RectangleF"
]
},
{
"Name": "System.Drawing.Common",
"Description": "Provides access to GDI+ graphics functionality.",
"CommonTypes": [
"System.Drawing.Bitmap",
"System.Drawing.BitmapData",
"System.Drawing.Brush",
"System.Drawing.Font",
"System.Drawing.Graphics",
"System.Drawing.Icon"
]
},
{
"Name": "System.Dynamic.Runtime",
"Description": "Provides classes and interfaces that support the Dynamic Language Runtime (DLR).",
"CommonTypes": [
"System.Runtime.CompilerServices.CallSite",
"System.Runtime.CompilerServices.CallSite<T>",
"System.Dynamic.IDynamicMetaObjectProvider",
"System.Dynamic.DynamicMetaObject",
"System.Dynamic.SetMemberBinder",
"System.Dynamic.GetMemberBinder",
"System.Dynamic.ExpandoObject",
"System.Dynamic.DynamicObject",
"System.Runtime.CompilerServices.CallSiteBinder",
"System.Runtime.CompilerServices.ConditionalWeakTable<TKey, TValue>"
]
},
{
"Name": "System.Globalization",
"Description": "Provides classes that define culture-related information, including language, country/region, calendars in use, format patterns for dates, currency, and numbers, and sort order for strings.",
"CommonTypes": [
"System.Globalization.DateTimeFormatInfo",
"System.Globalization.CultureInfo",
"System.Globalization.NumberFormatInfo",
"System.Globalization.CalendarWeekRule",
"System.Globalization.TextInfo",
"System.Globalization.Calendar",
"System.Globalization.CompareInfo",
"System.Globalization.CompareOptions",
"System.Globalization.UnicodeCategory"
]
},
{
"Name": "System.Globalization.Calendars",
"Description": "Provides classes for performing date calculations using specific calendars, including the Gregorian, Julian, Hijri and Korean calendars.",
"CommonTypes": [
"System.Globalization.HijriCalendar",
"System.Globalization.GregorianCalendar",
"System.Globalization.HebrewCalendar",
"System.Globalization.KoreanCalendar",
"System.Globalization.ThaiBuddhistCalendar",
"System.Globalization.TaiwanCalendar",
"System.Globalization.JapaneseCalendar",
"System.Globalization.GregorianCalendarTypes",
"System.Globalization.PersianCalendar",
"System.Globalization.UmAlQuraCalendar"
]
},
{
"Name": "System.Globalization.Extensions",
"Description": "Provides classes for performing Unicode string normalization, culture-specific string comparisons and support the use of non-ASCII characters for Internet domain names.",
"CommonTypes": [
"System.StringNormalizationExtensions",
"System.Text.NormalizationForm",
"System.Globalization.IdnMapping"
]
},
{
"Name": "System.IO",
"Description": "Provides base input and output (I/O) types, including System.IO.Stream, System.IO.StreamReader and System.IO.StreamWriter, that allow reading and writing to data streams",
"CommonTypes": [
"System.IO.Stream",
"System.IO.EndOfStreamException",
"System.IO.MemoryStream",
"System.IO.StreamReader",
"System.IO.StreamWriter",
"System.IO.StringWriter",
"System.IO.TextWriter",
"System.IO.TextReader"
]
},
{
"Name": "System.IO.Compression",
"Description": "Provides classes that support the compression and decompression of streams.",
"CommonTypes": [
"System.IO.Compression.DeflateStream",
"System.IO.Compression.GZipStream",
"System.IO.Compression.CompressionMode",
"System.IO.Compression.CompressionLevel",
"System.IO.Compression.ZipArchiveEntry",
"System.IO.Compression.ZipArchive",
"System.IO.Compression.ZipArchiveMode"
]
},
{
"Name": "System.IO.Compression.clrcompression",
"Description": "Internal implementation package not meant for direct consumption. Please do not reference directly. Provides native implementation dll used for GZIP compression.",
"CommonTypes": []
},
{
"Name": "System.IO.Compression.ZipFile",
"Description": "Provides classes that support the compression and decompression of streams using file system paths.",
"CommonTypes": [
"System.IO.Compression.ZipFile"
]
},
{
"Name": "System.IO.FileSystem",
"Description": "Provides types that allow reading and writing to files and types that provide basic file and directory support.",
"CommonTypes": [
"System.IO.FileStream",
"System.IO.FileInfo",
"System.IO.DirectoryInfo",
"System.IO.FileSystemInfo",
"System.IO.File",
"System.IO.Directory",
"System.IO.SearchOption",
"System.IO.FileOptions"
]
},
{
"Name": "System.IO.FileSystem.AccessControl",
"Description": "Provides types for managing access and audit control lists for files and directories.",
"CommonTypes": [
"System.Security.AccessControl.DirectoryObjectSecurity",
"System.Security.AccessControl.DirectorySecurity",
"System.Security.AccessControl.FileSecurity",
"System.Security.AccessControl.FileSystemAccessRule",
"System.Security.AccessControl.FileSystemAuditRule",
"System.Security.AccessControl.FileSystemRights",
"System.Security.AccessControl.FileSystemSecurity"
]
},
{
"Name": "System.IO.FileSystem.DriveInfo",
"Description": "Provides the System.IO.DriveInfo class, which enables developers to query local drive information.",
"CommonTypes": [
"System.IO.DriveInfo",
"System.IO.DriveType",
"System.IO.DriveNotFoundException"
]
},
{
"Name": "System.IO.FileSystem.Primitives",
"Description": "Provides common enumerations and exceptions for path-based I/O libraries.",
"CommonTypes": [
"System.IO.DirectoryNotFoundException",
"System.IO.FileAccess",
"System.IO.FileLoadException",
"System.IO.PathTooLongException",
"System.IO.FileMode",
"System.IO.FileShare",
"System.IO.FileAttributes"
]
},
{
"Name": "System.IO.FileSystem.Watcher",
"Description": "Provides the System.IO.FileSystemWather class, which listens to the file system change notifications and raises events when a directory, or a file in a directory, changes.",
"CommonTypes": [
"System.IO.FileSystemWatcher",
"System.IO.WatcherChangeTypes",
"System.IO.FileSystemEventArgs",
"System.IO.RenamedEventArgs",
"System.IO.FileSystemEventHandler",
"System.IO.RenamedEventHandler",
"System.IO.NotifyFilters",
"System.IO.ErrorEventArgs",
"System.IO.ErrorEventHandler",
"System.IO.WaitForChangedResult"
]
},
{
"Name": "System.IO.IsolatedStorage",
"Description": "Provides classes that allow the creation and use of isolated stores.",
"CommonTypes": [
"System.IO.IsolatedStorage.IsolatedStorageFile",
"System.IO.IsolatedStorage.IsolatedStorageFileStream"
]
},
{
"Name": "System.IO.MemoryMappedFiles",
"Description": "Provides classes for using a memory-mapped file, which maps the contents of a file to an application's logical address space.",
"CommonTypes": [
"System.IO.MemoryMappedFiles.MemoryMappedViewAccessor",
"System.IO.MemoryMappedFiles.MemoryMappedViewStream",
"System.IO.MemoryMappedFiles.MemoryMappedFile",
"System.IO.MemoryMappedFiles.MemoryMappedFileAccess"
]
},
{
"Name": "System.IO.Packaging",
"Description": "Provides classes that support storage of multiple data objects in a single container.",
"CommonTypes": []
},
{
"Name": "System.IO.Pipelines",
"Description": "Single producer single consumer byte buffer management.",
"CommonTypes": [
"System.IO.Pipelines.Pipe",
"System.IO.Pipelines.PipeWriter",
"System.IO.Pipelines.PipeReader"
]
},
{
"Name": "System.IO.Pipes",
"Description": "Provides a means for interprocess communication through anonymous and/or named pipes.",
"CommonTypes": [
"System.IO.Pipes.NamedPipeServerStream",
"System.IO.Pipes.PipeDirection",
"System.IO.Pipes.PipeOptions",
"System.IO.Pipes.PipeTransmissionMode",
"System.IO.Pipes.NamedPipeClientStream",
"System.IO.Pipes.PipeStream"
]
},
{
"Name": "System.IO.Pipes.AccessControl",
"Description": "Provides types for managing access and audit control lists for pipes.",
"CommonTypes": [
"System.IO.Pipes.PipeSecurity",
"System.IO.Pipes.PipeAccessRule",
"System.IO.Pipes.PipeAuditRule",
"System.IO.Pipes.PipeAccessRights"
]
},
{
"Name": "System.IO.Ports",
"Description": "Provides classes for controlling serial ports.",
"CommonTypes": [
"System.IO.Ports.SerialPort"
]
},
{
"Name": "System.IO.UnmanagedMemoryStream",
"Description": "Provides classes for access to unmanaged blocks of memory from managed code.",
"CommonTypes": [
"System.IO.UnmanagedMemoryStream",
"System.IO.UnmanagedMemoryAccessor"
]
},
{
"Name": "System.Json",
"Description": "Provides standards-based support for the serialization of JavaScript Object Notation (JSON).",
"CommonTypes": [
"System.Json.JsonArray",
"System.Json.JsonObject",
"System.Json.JsonPrimitive",
"System.Json.JsonValue"
]
},
{
"Name": "System.Linq",
"Description": "Provides classes and interfaces that supports queries that use Language-Integrated Query (LINQ).",
"CommonTypes": [
"System.Linq.Enumerable",
"System.Linq.IGrouping<TKey, TElement>",
"System.Linq.IOrderedEnumerable<TElement>",
"System.Linq.ILookup<TKey, TElement>",
"System.Linq.Lookup<TKey, TElement>"
]
},
{
"Name": "System.Linq.Expressions",
"Description": "Provides classes, interfaces and enumerations that enable language-level code expressions to be represented as objects in the form of expression trees.",
"CommonTypes": [