forked from jaredpar/basic-reference-assemblies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenerated.cs
More file actions
5091 lines (4413 loc) · 255 KB
/
Generated.cs
File metadata and controls
5091 lines (4413 loc) · 255 KB
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
// This is a generated file, please edit Src\Generate\Program.cs to change the contents
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using Microsoft.CodeAnalysis;
namespace Basic.Reference.Assemblies;
public static partial class Net100
{
public static class ReferenceInfos
{
/// <summary>
/// The <see cref="ReferenceInfo"/> for Microsoft.CSharp.dll
/// </summary>
public static ReferenceInfo MicrosoftCSharp => new ReferenceInfo("Microsoft.CSharp.dll", Resources.MicrosoftCSharp, Net100.References.MicrosoftCSharp, global::System.Guid.Parse("d9aba9b6-e40d-4561-9521-9ce28d666292"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for Microsoft.VisualBasic.Core.dll
/// </summary>
public static ReferenceInfo MicrosoftVisualBasicCore => new ReferenceInfo("Microsoft.VisualBasic.Core.dll", Resources.MicrosoftVisualBasicCore, Net100.References.MicrosoftVisualBasicCore, global::System.Guid.Parse("09bf2928-cbf1-4471-a34a-834245fb51fb"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for Microsoft.VisualBasic.dll
/// </summary>
public static ReferenceInfo MicrosoftVisualBasic => new ReferenceInfo("Microsoft.VisualBasic.dll", Resources.MicrosoftVisualBasic, Net100.References.MicrosoftVisualBasic, global::System.Guid.Parse("ead82bf2-ea68-4041-bf3c-9acf31312161"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for Microsoft.Win32.Primitives.dll
/// </summary>
public static ReferenceInfo MicrosoftWin32Primitives => new ReferenceInfo("Microsoft.Win32.Primitives.dll", Resources.MicrosoftWin32Primitives, Net100.References.MicrosoftWin32Primitives, global::System.Guid.Parse("c2acd62b-9113-4cc2-9a1f-cbf302849aa0"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for Microsoft.Win32.Registry.dll
/// </summary>
public static ReferenceInfo MicrosoftWin32Registry => new ReferenceInfo("Microsoft.Win32.Registry.dll", Resources.MicrosoftWin32Registry, Net100.References.MicrosoftWin32Registry, global::System.Guid.Parse("1f85a7f9-5309-45d5-adc6-44ff88de4b5e"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for mscorlib.dll
/// </summary>
public static ReferenceInfo mscorlib => new ReferenceInfo("mscorlib.dll", Resources.mscorlib, Net100.References.mscorlib, global::System.Guid.Parse("ce7be865-4bbe-4034-bef9-6bcb9b0b9e63"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for netstandard.dll
/// </summary>
public static ReferenceInfo netstandard => new ReferenceInfo("netstandard.dll", Resources.netstandard, Net100.References.netstandard, global::System.Guid.Parse("ee2c1322-8e5b-491c-9026-ac1242e0ad3f"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.AppContext.dll
/// </summary>
public static ReferenceInfo SystemAppContext => new ReferenceInfo("System.AppContext.dll", Resources.SystemAppContext, Net100.References.SystemAppContext, global::System.Guid.Parse("361d9660-677b-47cb-a79f-16742c482db2"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Buffers.dll
/// </summary>
public static ReferenceInfo SystemBuffers => new ReferenceInfo("System.Buffers.dll", Resources.SystemBuffers, Net100.References.SystemBuffers, global::System.Guid.Parse("8e9b6816-4520-4af8-8896-a2eb513b4e27"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Collections.Concurrent.dll
/// </summary>
public static ReferenceInfo SystemCollectionsConcurrent => new ReferenceInfo("System.Collections.Concurrent.dll", Resources.SystemCollectionsConcurrent, Net100.References.SystemCollectionsConcurrent, global::System.Guid.Parse("9e54f309-a3eb-4982-b176-7ccd2f989f1b"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Collections.dll
/// </summary>
public static ReferenceInfo SystemCollections => new ReferenceInfo("System.Collections.dll", Resources.SystemCollections, Net100.References.SystemCollections, global::System.Guid.Parse("974f4b25-2fe0-4725-8b73-607f824c1cfd"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Collections.Immutable.dll
/// </summary>
public static ReferenceInfo SystemCollectionsImmutable => new ReferenceInfo("System.Collections.Immutable.dll", Resources.SystemCollectionsImmutable, Net100.References.SystemCollectionsImmutable, global::System.Guid.Parse("f0bf5295-4b02-4153-b279-05d9a9ead8ba"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Collections.NonGeneric.dll
/// </summary>
public static ReferenceInfo SystemCollectionsNonGeneric => new ReferenceInfo("System.Collections.NonGeneric.dll", Resources.SystemCollectionsNonGeneric, Net100.References.SystemCollectionsNonGeneric, global::System.Guid.Parse("281cc7fc-0ee8-4619-901e-666aaa2c620b"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Collections.Specialized.dll
/// </summary>
public static ReferenceInfo SystemCollectionsSpecialized => new ReferenceInfo("System.Collections.Specialized.dll", Resources.SystemCollectionsSpecialized, Net100.References.SystemCollectionsSpecialized, global::System.Guid.Parse("c6cdbbbf-d5c5-4687-b48e-06c4f7ec80bd"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.ComponentModel.Annotations.dll
/// </summary>
public static ReferenceInfo SystemComponentModelAnnotations => new ReferenceInfo("System.ComponentModel.Annotations.dll", Resources.SystemComponentModelAnnotations, Net100.References.SystemComponentModelAnnotations, global::System.Guid.Parse("76cfaddd-0e04-4afb-acdd-3873076bfa8d"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.ComponentModel.DataAnnotations.dll
/// </summary>
public static ReferenceInfo SystemComponentModelDataAnnotations => new ReferenceInfo("System.ComponentModel.DataAnnotations.dll", Resources.SystemComponentModelDataAnnotations, Net100.References.SystemComponentModelDataAnnotations, global::System.Guid.Parse("31a3453f-e0fe-4d0d-8bca-0f46da821321"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.ComponentModel.dll
/// </summary>
public static ReferenceInfo SystemComponentModel => new ReferenceInfo("System.ComponentModel.dll", Resources.SystemComponentModel, Net100.References.SystemComponentModel, global::System.Guid.Parse("4cfb4f41-b620-4f4a-af0a-bfcf1e72d009"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.ComponentModel.EventBasedAsync.dll
/// </summary>
public static ReferenceInfo SystemComponentModelEventBasedAsync => new ReferenceInfo("System.ComponentModel.EventBasedAsync.dll", Resources.SystemComponentModelEventBasedAsync, Net100.References.SystemComponentModelEventBasedAsync, global::System.Guid.Parse("70414903-5fbc-4c8c-bf0e-97420d7dd726"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.ComponentModel.Primitives.dll
/// </summary>
public static ReferenceInfo SystemComponentModelPrimitives => new ReferenceInfo("System.ComponentModel.Primitives.dll", Resources.SystemComponentModelPrimitives, Net100.References.SystemComponentModelPrimitives, global::System.Guid.Parse("fcc0ebb8-2f1b-40fe-86ca-3914b5b93934"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.ComponentModel.TypeConverter.dll
/// </summary>
public static ReferenceInfo SystemComponentModelTypeConverter => new ReferenceInfo("System.ComponentModel.TypeConverter.dll", Resources.SystemComponentModelTypeConverter, Net100.References.SystemComponentModelTypeConverter, global::System.Guid.Parse("6f8f4f14-349e-43b6-829a-2fde55c7b2da"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Configuration.dll
/// </summary>
public static ReferenceInfo SystemConfiguration => new ReferenceInfo("System.Configuration.dll", Resources.SystemConfiguration, Net100.References.SystemConfiguration, global::System.Guid.Parse("b8ddd3c6-082e-4f82-a2c6-f15d83f64785"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Console.dll
/// </summary>
public static ReferenceInfo SystemConsole => new ReferenceInfo("System.Console.dll", Resources.SystemConsole, Net100.References.SystemConsole, global::System.Guid.Parse("8d5a251e-f95e-4b52-9d90-c72161061592"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Core.dll
/// </summary>
public static ReferenceInfo SystemCore => new ReferenceInfo("System.Core.dll", Resources.SystemCore, Net100.References.SystemCore, global::System.Guid.Parse("b82b803e-5aec-4789-a8f6-07a08858fbaa"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Data.Common.dll
/// </summary>
public static ReferenceInfo SystemDataCommon => new ReferenceInfo("System.Data.Common.dll", Resources.SystemDataCommon, Net100.References.SystemDataCommon, global::System.Guid.Parse("a6562f4a-ab26-4e07-ae50-1ad7f4b0ced0"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Data.DataSetExtensions.dll
/// </summary>
public static ReferenceInfo SystemDataDataSetExtensions => new ReferenceInfo("System.Data.DataSetExtensions.dll", Resources.SystemDataDataSetExtensions, Net100.References.SystemDataDataSetExtensions, global::System.Guid.Parse("007bdf62-65eb-46d8-9925-24bb96b4ab5f"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Data.dll
/// </summary>
public static ReferenceInfo SystemData => new ReferenceInfo("System.Data.dll", Resources.SystemData, Net100.References.SystemData, global::System.Guid.Parse("a250cc8b-74d4-4691-8ea2-d8c2cbe472d3"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Diagnostics.Contracts.dll
/// </summary>
public static ReferenceInfo SystemDiagnosticsContracts => new ReferenceInfo("System.Diagnostics.Contracts.dll", Resources.SystemDiagnosticsContracts, Net100.References.SystemDiagnosticsContracts, global::System.Guid.Parse("727cb8a0-fd18-40f1-a34b-7afac13a0154"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Diagnostics.Debug.dll
/// </summary>
public static ReferenceInfo SystemDiagnosticsDebug => new ReferenceInfo("System.Diagnostics.Debug.dll", Resources.SystemDiagnosticsDebug, Net100.References.SystemDiagnosticsDebug, global::System.Guid.Parse("6097ccb6-723e-40a6-acd1-5d442e370527"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Diagnostics.DiagnosticSource.dll
/// </summary>
public static ReferenceInfo SystemDiagnosticsDiagnosticSource => new ReferenceInfo("System.Diagnostics.DiagnosticSource.dll", Resources.SystemDiagnosticsDiagnosticSource, Net100.References.SystemDiagnosticsDiagnosticSource, global::System.Guid.Parse("e345c291-1dd2-4b0a-969b-0c1f90ba85d8"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Diagnostics.FileVersionInfo.dll
/// </summary>
public static ReferenceInfo SystemDiagnosticsFileVersionInfo => new ReferenceInfo("System.Diagnostics.FileVersionInfo.dll", Resources.SystemDiagnosticsFileVersionInfo, Net100.References.SystemDiagnosticsFileVersionInfo, global::System.Guid.Parse("3236187b-7c61-439c-a517-6b8cc0370658"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Diagnostics.Process.dll
/// </summary>
public static ReferenceInfo SystemDiagnosticsProcess => new ReferenceInfo("System.Diagnostics.Process.dll", Resources.SystemDiagnosticsProcess, Net100.References.SystemDiagnosticsProcess, global::System.Guid.Parse("b64ec2be-1379-4f8e-9398-c44a5e1138fe"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Diagnostics.StackTrace.dll
/// </summary>
public static ReferenceInfo SystemDiagnosticsStackTrace => new ReferenceInfo("System.Diagnostics.StackTrace.dll", Resources.SystemDiagnosticsStackTrace, Net100.References.SystemDiagnosticsStackTrace, global::System.Guid.Parse("6456a103-c189-48b8-973a-ae4d75923e7d"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Diagnostics.TextWriterTraceListener.dll
/// </summary>
public static ReferenceInfo SystemDiagnosticsTextWriterTraceListener => new ReferenceInfo("System.Diagnostics.TextWriterTraceListener.dll", Resources.SystemDiagnosticsTextWriterTraceListener, Net100.References.SystemDiagnosticsTextWriterTraceListener, global::System.Guid.Parse("b1ae75f8-642e-4d15-bb8d-61ead84fbd4b"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Diagnostics.Tools.dll
/// </summary>
public static ReferenceInfo SystemDiagnosticsTools => new ReferenceInfo("System.Diagnostics.Tools.dll", Resources.SystemDiagnosticsTools, Net100.References.SystemDiagnosticsTools, global::System.Guid.Parse("6ae5ba1d-2c49-45e3-9f57-bef585080779"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Diagnostics.TraceSource.dll
/// </summary>
public static ReferenceInfo SystemDiagnosticsTraceSource => new ReferenceInfo("System.Diagnostics.TraceSource.dll", Resources.SystemDiagnosticsTraceSource, Net100.References.SystemDiagnosticsTraceSource, global::System.Guid.Parse("089ac21a-a30a-4581-a501-4833dbb9c768"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Diagnostics.Tracing.dll
/// </summary>
public static ReferenceInfo SystemDiagnosticsTracing => new ReferenceInfo("System.Diagnostics.Tracing.dll", Resources.SystemDiagnosticsTracing, Net100.References.SystemDiagnosticsTracing, global::System.Guid.Parse("75775db7-d297-4182-b9f1-7368e0f7bd12"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.dll
/// </summary>
public static ReferenceInfo System => new ReferenceInfo("System.dll", Resources.System, Net100.References.System, global::System.Guid.Parse("136c2798-dc04-4025-a738-3eb466fdd97f"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Drawing.dll
/// </summary>
public static ReferenceInfo SystemDrawing => new ReferenceInfo("System.Drawing.dll", Resources.SystemDrawing, Net100.References.SystemDrawing, global::System.Guid.Parse("4cdea232-b325-4997-af84-b07eabfd5c46"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Drawing.Primitives.dll
/// </summary>
public static ReferenceInfo SystemDrawingPrimitives => new ReferenceInfo("System.Drawing.Primitives.dll", Resources.SystemDrawingPrimitives, Net100.References.SystemDrawingPrimitives, global::System.Guid.Parse("31f1324b-6d5d-48e7-9481-d1f26428aad5"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Dynamic.Runtime.dll
/// </summary>
public static ReferenceInfo SystemDynamicRuntime => new ReferenceInfo("System.Dynamic.Runtime.dll", Resources.SystemDynamicRuntime, Net100.References.SystemDynamicRuntime, global::System.Guid.Parse("d822324b-f2d2-4abb-8e1d-08df3a05ac82"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Formats.Asn1.dll
/// </summary>
public static ReferenceInfo SystemFormatsAsn1 => new ReferenceInfo("System.Formats.Asn1.dll", Resources.SystemFormatsAsn1, Net100.References.SystemFormatsAsn1, global::System.Guid.Parse("c29c66ed-03b4-4966-819c-0be65f18cac1"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Formats.Tar.dll
/// </summary>
public static ReferenceInfo SystemFormatsTar => new ReferenceInfo("System.Formats.Tar.dll", Resources.SystemFormatsTar, Net100.References.SystemFormatsTar, global::System.Guid.Parse("b9b073cd-e230-46cf-9066-0fd218d2bd16"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Globalization.Calendars.dll
/// </summary>
public static ReferenceInfo SystemGlobalizationCalendars => new ReferenceInfo("System.Globalization.Calendars.dll", Resources.SystemGlobalizationCalendars, Net100.References.SystemGlobalizationCalendars, global::System.Guid.Parse("35dbaec9-0d06-4d01-8770-0d73394826cd"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Globalization.dll
/// </summary>
public static ReferenceInfo SystemGlobalization => new ReferenceInfo("System.Globalization.dll", Resources.SystemGlobalization, Net100.References.SystemGlobalization, global::System.Guid.Parse("af0555fd-1a31-40a8-bd80-14356d7d99f3"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Globalization.Extensions.dll
/// </summary>
public static ReferenceInfo SystemGlobalizationExtensions => new ReferenceInfo("System.Globalization.Extensions.dll", Resources.SystemGlobalizationExtensions, Net100.References.SystemGlobalizationExtensions, global::System.Guid.Parse("e544dd0f-35e1-47a9-9785-d2f25e067242"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.Compression.Brotli.dll
/// </summary>
public static ReferenceInfo SystemIOCompressionBrotli => new ReferenceInfo("System.IO.Compression.Brotli.dll", Resources.SystemIOCompressionBrotli, Net100.References.SystemIOCompressionBrotli, global::System.Guid.Parse("f66f0042-ce70-46c1-bfbd-0fbbf156d91e"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.Compression.dll
/// </summary>
public static ReferenceInfo SystemIOCompression => new ReferenceInfo("System.IO.Compression.dll", Resources.SystemIOCompression, Net100.References.SystemIOCompression, global::System.Guid.Parse("4535c9b2-318d-4c4b-9f41-e246b2c1be96"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.Compression.FileSystem.dll
/// </summary>
public static ReferenceInfo SystemIOCompressionFileSystem => new ReferenceInfo("System.IO.Compression.FileSystem.dll", Resources.SystemIOCompressionFileSystem, Net100.References.SystemIOCompressionFileSystem, global::System.Guid.Parse("75465504-90e6-42f7-a80b-dacb33cc62be"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.Compression.ZipFile.dll
/// </summary>
public static ReferenceInfo SystemIOCompressionZipFile => new ReferenceInfo("System.IO.Compression.ZipFile.dll", Resources.SystemIOCompressionZipFile, Net100.References.SystemIOCompressionZipFile, global::System.Guid.Parse("d8f49c1d-a91c-42de-a57c-80ec92fb2b64"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.dll
/// </summary>
public static ReferenceInfo SystemIO => new ReferenceInfo("System.IO.dll", Resources.SystemIO, Net100.References.SystemIO, global::System.Guid.Parse("92bff44e-eb10-44e0-93ba-d78f1efe3833"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.FileSystem.AccessControl.dll
/// </summary>
public static ReferenceInfo SystemIOFileSystemAccessControl => new ReferenceInfo("System.IO.FileSystem.AccessControl.dll", Resources.SystemIOFileSystemAccessControl, Net100.References.SystemIOFileSystemAccessControl, global::System.Guid.Parse("20c21373-c682-4037-bc3c-bd23621cfe9b"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.FileSystem.dll
/// </summary>
public static ReferenceInfo SystemIOFileSystem => new ReferenceInfo("System.IO.FileSystem.dll", Resources.SystemIOFileSystem, Net100.References.SystemIOFileSystem, global::System.Guid.Parse("703ea99e-bef0-4767-8075-f0c039477b6e"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.FileSystem.DriveInfo.dll
/// </summary>
public static ReferenceInfo SystemIOFileSystemDriveInfo => new ReferenceInfo("System.IO.FileSystem.DriveInfo.dll", Resources.SystemIOFileSystemDriveInfo, Net100.References.SystemIOFileSystemDriveInfo, global::System.Guid.Parse("09b404df-50a4-47e1-a79f-51ce3604f02c"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.FileSystem.Primitives.dll
/// </summary>
public static ReferenceInfo SystemIOFileSystemPrimitives => new ReferenceInfo("System.IO.FileSystem.Primitives.dll", Resources.SystemIOFileSystemPrimitives, Net100.References.SystemIOFileSystemPrimitives, global::System.Guid.Parse("d9c4b690-a5ff-4da9-8d0f-780411ba6f7b"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.FileSystem.Watcher.dll
/// </summary>
public static ReferenceInfo SystemIOFileSystemWatcher => new ReferenceInfo("System.IO.FileSystem.Watcher.dll", Resources.SystemIOFileSystemWatcher, Net100.References.SystemIOFileSystemWatcher, global::System.Guid.Parse("35344743-3384-47f5-8742-a57caeec119d"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.IsolatedStorage.dll
/// </summary>
public static ReferenceInfo SystemIOIsolatedStorage => new ReferenceInfo("System.IO.IsolatedStorage.dll", Resources.SystemIOIsolatedStorage, Net100.References.SystemIOIsolatedStorage, global::System.Guid.Parse("66ac2377-e964-4790-a120-30c0d98369bc"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.MemoryMappedFiles.dll
/// </summary>
public static ReferenceInfo SystemIOMemoryMappedFiles => new ReferenceInfo("System.IO.MemoryMappedFiles.dll", Resources.SystemIOMemoryMappedFiles, Net100.References.SystemIOMemoryMappedFiles, global::System.Guid.Parse("1bade4f7-c390-4b80-8c4c-196c347de4fb"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.Pipelines.dll
/// </summary>
public static ReferenceInfo SystemIOPipelines => new ReferenceInfo("System.IO.Pipelines.dll", Resources.SystemIOPipelines, Net100.References.SystemIOPipelines, global::System.Guid.Parse("a6e8a34c-364a-4862-bbdd-86d6bc18af87"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.Pipes.AccessControl.dll
/// </summary>
public static ReferenceInfo SystemIOPipesAccessControl => new ReferenceInfo("System.IO.Pipes.AccessControl.dll", Resources.SystemIOPipesAccessControl, Net100.References.SystemIOPipesAccessControl, global::System.Guid.Parse("a08d2960-57eb-4e10-870c-0691d2ead3cc"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.Pipes.dll
/// </summary>
public static ReferenceInfo SystemIOPipes => new ReferenceInfo("System.IO.Pipes.dll", Resources.SystemIOPipes, Net100.References.SystemIOPipes, global::System.Guid.Parse("520990e6-0187-4c73-a9cd-783b199a9353"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.IO.UnmanagedMemoryStream.dll
/// </summary>
public static ReferenceInfo SystemIOUnmanagedMemoryStream => new ReferenceInfo("System.IO.UnmanagedMemoryStream.dll", Resources.SystemIOUnmanagedMemoryStream, Net100.References.SystemIOUnmanagedMemoryStream, global::System.Guid.Parse("0a1d733a-596c-4c38-92c7-8d9992bd53af"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Linq.AsyncEnumerable.dll
/// </summary>
public static ReferenceInfo SystemLinqAsyncEnumerable => new ReferenceInfo("System.Linq.AsyncEnumerable.dll", Resources.SystemLinqAsyncEnumerable, Net100.References.SystemLinqAsyncEnumerable, global::System.Guid.Parse("3715be8f-ffa9-4cf4-a40a-63b61624cb9d"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Linq.dll
/// </summary>
public static ReferenceInfo SystemLinq => new ReferenceInfo("System.Linq.dll", Resources.SystemLinq, Net100.References.SystemLinq, global::System.Guid.Parse("a7a66a5a-a75d-437a-9209-6466eaf8230a"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Linq.Expressions.dll
/// </summary>
public static ReferenceInfo SystemLinqExpressions => new ReferenceInfo("System.Linq.Expressions.dll", Resources.SystemLinqExpressions, Net100.References.SystemLinqExpressions, global::System.Guid.Parse("5eb8175f-e915-493f-94f9-e47d2aa8ae79"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Linq.Parallel.dll
/// </summary>
public static ReferenceInfo SystemLinqParallel => new ReferenceInfo("System.Linq.Parallel.dll", Resources.SystemLinqParallel, Net100.References.SystemLinqParallel, global::System.Guid.Parse("8a1a16c1-672f-480a-97b0-08606a737f06"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Linq.Queryable.dll
/// </summary>
public static ReferenceInfo SystemLinqQueryable => new ReferenceInfo("System.Linq.Queryable.dll", Resources.SystemLinqQueryable, Net100.References.SystemLinqQueryable, global::System.Guid.Parse("6a2c4ab1-35b7-41a9-9934-9a3e3ad6c770"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Memory.dll
/// </summary>
public static ReferenceInfo SystemMemory => new ReferenceInfo("System.Memory.dll", Resources.SystemMemory, Net100.References.SystemMemory, global::System.Guid.Parse("c00a4b7f-4849-429f-96e3-e88a485ad10f"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.dll
/// </summary>
public static ReferenceInfo SystemNet => new ReferenceInfo("System.Net.dll", Resources.SystemNet, Net100.References.SystemNet, global::System.Guid.Parse("d3390a91-7461-47d3-8a6e-0a26d67b5776"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.Http.dll
/// </summary>
public static ReferenceInfo SystemNetHttp => new ReferenceInfo("System.Net.Http.dll", Resources.SystemNetHttp, Net100.References.SystemNetHttp, global::System.Guid.Parse("153342d3-20f9-4ea3-a3bd-6154e5b36a3f"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.Http.Json.dll
/// </summary>
public static ReferenceInfo SystemNetHttpJson => new ReferenceInfo("System.Net.Http.Json.dll", Resources.SystemNetHttpJson, Net100.References.SystemNetHttpJson, global::System.Guid.Parse("adc2c3ed-3c6c-4591-b3b9-ede951a5899c"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.HttpListener.dll
/// </summary>
public static ReferenceInfo SystemNetHttpListener => new ReferenceInfo("System.Net.HttpListener.dll", Resources.SystemNetHttpListener, Net100.References.SystemNetHttpListener, global::System.Guid.Parse("45d28eb4-012e-4e83-b922-62e669252fa5"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.Mail.dll
/// </summary>
public static ReferenceInfo SystemNetMail => new ReferenceInfo("System.Net.Mail.dll", Resources.SystemNetMail, Net100.References.SystemNetMail, global::System.Guid.Parse("d6600f19-9dc3-4d88-826e-3b38a41ba618"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.NameResolution.dll
/// </summary>
public static ReferenceInfo SystemNetNameResolution => new ReferenceInfo("System.Net.NameResolution.dll", Resources.SystemNetNameResolution, Net100.References.SystemNetNameResolution, global::System.Guid.Parse("0408a2e1-b1c8-41a0-9f8c-0b1051f76a75"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.NetworkInformation.dll
/// </summary>
public static ReferenceInfo SystemNetNetworkInformation => new ReferenceInfo("System.Net.NetworkInformation.dll", Resources.SystemNetNetworkInformation, Net100.References.SystemNetNetworkInformation, global::System.Guid.Parse("e3b03856-b9f4-4ec4-8c18-d74102dab363"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.Ping.dll
/// </summary>
public static ReferenceInfo SystemNetPing => new ReferenceInfo("System.Net.Ping.dll", Resources.SystemNetPing, Net100.References.SystemNetPing, global::System.Guid.Parse("a503edd2-7922-4c69-bb4f-9a734988df9d"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.Primitives.dll
/// </summary>
public static ReferenceInfo SystemNetPrimitives => new ReferenceInfo("System.Net.Primitives.dll", Resources.SystemNetPrimitives, Net100.References.SystemNetPrimitives, global::System.Guid.Parse("1f680ac1-f52f-471b-91ae-3860884f04a6"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.Quic.dll
/// </summary>
public static ReferenceInfo SystemNetQuic => new ReferenceInfo("System.Net.Quic.dll", Resources.SystemNetQuic, Net100.References.SystemNetQuic, global::System.Guid.Parse("0476972e-0527-455a-812b-4e4d3b64f23e"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.Requests.dll
/// </summary>
public static ReferenceInfo SystemNetRequests => new ReferenceInfo("System.Net.Requests.dll", Resources.SystemNetRequests, Net100.References.SystemNetRequests, global::System.Guid.Parse("b64b0f77-2f97-48be-b331-75809e37845f"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.Security.dll
/// </summary>
public static ReferenceInfo SystemNetSecurity => new ReferenceInfo("System.Net.Security.dll", Resources.SystemNetSecurity, Net100.References.SystemNetSecurity, global::System.Guid.Parse("be8316bb-3aac-4cdf-bec9-b37b885f9075"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.ServerSentEvents.dll
/// </summary>
public static ReferenceInfo SystemNetServerSentEvents => new ReferenceInfo("System.Net.ServerSentEvents.dll", Resources.SystemNetServerSentEvents, Net100.References.SystemNetServerSentEvents, global::System.Guid.Parse("65a8e1bf-311a-4840-a988-f5a4669e698a"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.ServicePoint.dll
/// </summary>
public static ReferenceInfo SystemNetServicePoint => new ReferenceInfo("System.Net.ServicePoint.dll", Resources.SystemNetServicePoint, Net100.References.SystemNetServicePoint, global::System.Guid.Parse("e5a92877-1193-420b-9370-6d8cb3ec82ab"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.Sockets.dll
/// </summary>
public static ReferenceInfo SystemNetSockets => new ReferenceInfo("System.Net.Sockets.dll", Resources.SystemNetSockets, Net100.References.SystemNetSockets, global::System.Guid.Parse("de4c2004-b461-4636-96e5-628bd7ec4597"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.WebClient.dll
/// </summary>
public static ReferenceInfo SystemNetWebClient => new ReferenceInfo("System.Net.WebClient.dll", Resources.SystemNetWebClient, Net100.References.SystemNetWebClient, global::System.Guid.Parse("992f8768-e47d-49b2-b2df-1d3eca8eb883"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.WebHeaderCollection.dll
/// </summary>
public static ReferenceInfo SystemNetWebHeaderCollection => new ReferenceInfo("System.Net.WebHeaderCollection.dll", Resources.SystemNetWebHeaderCollection, Net100.References.SystemNetWebHeaderCollection, global::System.Guid.Parse("47d0dee7-f63a-46a6-af8f-29b05c5b75cf"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.WebProxy.dll
/// </summary>
public static ReferenceInfo SystemNetWebProxy => new ReferenceInfo("System.Net.WebProxy.dll", Resources.SystemNetWebProxy, Net100.References.SystemNetWebProxy, global::System.Guid.Parse("fd1d7cf1-7639-4895-b4e1-74cb4185d906"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.WebSockets.Client.dll
/// </summary>
public static ReferenceInfo SystemNetWebSocketsClient => new ReferenceInfo("System.Net.WebSockets.Client.dll", Resources.SystemNetWebSocketsClient, Net100.References.SystemNetWebSocketsClient, global::System.Guid.Parse("3f5fa37f-6335-4801-ac9c-382d03a3de87"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Net.WebSockets.dll
/// </summary>
public static ReferenceInfo SystemNetWebSockets => new ReferenceInfo("System.Net.WebSockets.dll", Resources.SystemNetWebSockets, Net100.References.SystemNetWebSockets, global::System.Guid.Parse("8c3c91da-9c13-4162-9c6f-ca688628c3e5"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Numerics.dll
/// </summary>
public static ReferenceInfo SystemNumerics => new ReferenceInfo("System.Numerics.dll", Resources.SystemNumerics, Net100.References.SystemNumerics, global::System.Guid.Parse("949695c4-65f9-464b-9d8e-891bf4c3b80c"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Numerics.Vectors.dll
/// </summary>
public static ReferenceInfo SystemNumericsVectors => new ReferenceInfo("System.Numerics.Vectors.dll", Resources.SystemNumericsVectors, Net100.References.SystemNumericsVectors, global::System.Guid.Parse("7dbc7f8c-683b-4805-9251-270aa18b4151"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.ObjectModel.dll
/// </summary>
public static ReferenceInfo SystemObjectModel => new ReferenceInfo("System.ObjectModel.dll", Resources.SystemObjectModel, Net100.References.SystemObjectModel, global::System.Guid.Parse("45b594d0-4d35-43eb-b2a2-202678cf91a3"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Reflection.DispatchProxy.dll
/// </summary>
public static ReferenceInfo SystemReflectionDispatchProxy => new ReferenceInfo("System.Reflection.DispatchProxy.dll", Resources.SystemReflectionDispatchProxy, Net100.References.SystemReflectionDispatchProxy, global::System.Guid.Parse("ac86fbf8-15a2-4348-b720-8433db1240e8"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Reflection.dll
/// </summary>
public static ReferenceInfo SystemReflection => new ReferenceInfo("System.Reflection.dll", Resources.SystemReflection, Net100.References.SystemReflection, global::System.Guid.Parse("07d6e794-f54b-45c9-893b-b335ff411041"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Reflection.Emit.dll
/// </summary>
public static ReferenceInfo SystemReflectionEmit => new ReferenceInfo("System.Reflection.Emit.dll", Resources.SystemReflectionEmit, Net100.References.SystemReflectionEmit, global::System.Guid.Parse("22a8ba51-8326-44c2-8a99-6aa99d414dde"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Reflection.Emit.ILGeneration.dll
/// </summary>
public static ReferenceInfo SystemReflectionEmitILGeneration => new ReferenceInfo("System.Reflection.Emit.ILGeneration.dll", Resources.SystemReflectionEmitILGeneration, Net100.References.SystemReflectionEmitILGeneration, global::System.Guid.Parse("590b83b8-5f0d-48e4-8350-a45d2cfa35bb"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Reflection.Emit.Lightweight.dll
/// </summary>
public static ReferenceInfo SystemReflectionEmitLightweight => new ReferenceInfo("System.Reflection.Emit.Lightweight.dll", Resources.SystemReflectionEmitLightweight, Net100.References.SystemReflectionEmitLightweight, global::System.Guid.Parse("829b8bd3-d987-43b0-8907-3e6c3ccd1b87"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Reflection.Extensions.dll
/// </summary>
public static ReferenceInfo SystemReflectionExtensions => new ReferenceInfo("System.Reflection.Extensions.dll", Resources.SystemReflectionExtensions, Net100.References.SystemReflectionExtensions, global::System.Guid.Parse("dd257c05-da6e-4b14-99ca-47c00e2d9807"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Reflection.Metadata.dll
/// </summary>
public static ReferenceInfo SystemReflectionMetadata => new ReferenceInfo("System.Reflection.Metadata.dll", Resources.SystemReflectionMetadata, Net100.References.SystemReflectionMetadata, global::System.Guid.Parse("8cf97d58-7baf-4721-aa2d-d60a1e8f109d"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Reflection.Primitives.dll
/// </summary>
public static ReferenceInfo SystemReflectionPrimitives => new ReferenceInfo("System.Reflection.Primitives.dll", Resources.SystemReflectionPrimitives, Net100.References.SystemReflectionPrimitives, global::System.Guid.Parse("703fee5d-c3a6-4bc5-a19d-7d94f00c2cdb"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Reflection.TypeExtensions.dll
/// </summary>
public static ReferenceInfo SystemReflectionTypeExtensions => new ReferenceInfo("System.Reflection.TypeExtensions.dll", Resources.SystemReflectionTypeExtensions, Net100.References.SystemReflectionTypeExtensions, global::System.Guid.Parse("60db4d17-8a09-48de-9733-008eb72ef515"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Resources.Reader.dll
/// </summary>
public static ReferenceInfo SystemResourcesReader => new ReferenceInfo("System.Resources.Reader.dll", Resources.SystemResourcesReader, Net100.References.SystemResourcesReader, global::System.Guid.Parse("6387072b-e08d-4900-9779-527b8230a286"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Resources.ResourceManager.dll
/// </summary>
public static ReferenceInfo SystemResourcesResourceManager => new ReferenceInfo("System.Resources.ResourceManager.dll", Resources.SystemResourcesResourceManager, Net100.References.SystemResourcesResourceManager, global::System.Guid.Parse("824d4cdb-77e7-4956-a947-fddf0462354a"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Resources.Writer.dll
/// </summary>
public static ReferenceInfo SystemResourcesWriter => new ReferenceInfo("System.Resources.Writer.dll", Resources.SystemResourcesWriter, Net100.References.SystemResourcesWriter, global::System.Guid.Parse("fcc5da93-6f2c-42d7-bdfb-0a4b5e754162"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.CompilerServices.Unsafe.dll
/// </summary>
public static ReferenceInfo SystemRuntimeCompilerServicesUnsafe => new ReferenceInfo("System.Runtime.CompilerServices.Unsafe.dll", Resources.SystemRuntimeCompilerServicesUnsafe, Net100.References.SystemRuntimeCompilerServicesUnsafe, global::System.Guid.Parse("8e2d2a96-7abb-4b33-9742-4e0d72d3c623"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.CompilerServices.VisualC.dll
/// </summary>
public static ReferenceInfo SystemRuntimeCompilerServicesVisualC => new ReferenceInfo("System.Runtime.CompilerServices.VisualC.dll", Resources.SystemRuntimeCompilerServicesVisualC, Net100.References.SystemRuntimeCompilerServicesVisualC, global::System.Guid.Parse("2df4feea-d7e9-49b0-beb9-f1935821f3dc"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.dll
/// </summary>
public static ReferenceInfo SystemRuntime => new ReferenceInfo("System.Runtime.dll", Resources.SystemRuntime, Net100.References.SystemRuntime, global::System.Guid.Parse("8f65f33e-2f7e-44a4-bc6a-7dd25fa98845"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.Extensions.dll
/// </summary>
public static ReferenceInfo SystemRuntimeExtensions => new ReferenceInfo("System.Runtime.Extensions.dll", Resources.SystemRuntimeExtensions, Net100.References.SystemRuntimeExtensions, global::System.Guid.Parse("a59031b5-dba2-4742-9c29-8d39e77fae80"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.Handles.dll
/// </summary>
public static ReferenceInfo SystemRuntimeHandles => new ReferenceInfo("System.Runtime.Handles.dll", Resources.SystemRuntimeHandles, Net100.References.SystemRuntimeHandles, global::System.Guid.Parse("0884e3d6-6141-4337-9cc5-48c4ed32de6b"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.InteropServices.dll
/// </summary>
public static ReferenceInfo SystemRuntimeInteropServices => new ReferenceInfo("System.Runtime.InteropServices.dll", Resources.SystemRuntimeInteropServices, Net100.References.SystemRuntimeInteropServices, global::System.Guid.Parse("3d013422-e62d-4b8d-a650-410c4b75583e"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.InteropServices.JavaScript.dll
/// </summary>
public static ReferenceInfo SystemRuntimeInteropServicesJavaScript => new ReferenceInfo("System.Runtime.InteropServices.JavaScript.dll", Resources.SystemRuntimeInteropServicesJavaScript, Net100.References.SystemRuntimeInteropServicesJavaScript, global::System.Guid.Parse("820c3868-3153-4ff7-9a68-197e028d0d85"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.InteropServices.RuntimeInformation.dll
/// </summary>
public static ReferenceInfo SystemRuntimeInteropServicesRuntimeInformation => new ReferenceInfo("System.Runtime.InteropServices.RuntimeInformation.dll", Resources.SystemRuntimeInteropServicesRuntimeInformation, Net100.References.SystemRuntimeInteropServicesRuntimeInformation, global::System.Guid.Parse("c52d7446-e675-4d0e-ad64-8534a9de38be"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.Intrinsics.dll
/// </summary>
public static ReferenceInfo SystemRuntimeIntrinsics => new ReferenceInfo("System.Runtime.Intrinsics.dll", Resources.SystemRuntimeIntrinsics, Net100.References.SystemRuntimeIntrinsics, global::System.Guid.Parse("0c90fd31-24d1-4b20-87f4-acf3cc394715"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.Loader.dll
/// </summary>
public static ReferenceInfo SystemRuntimeLoader => new ReferenceInfo("System.Runtime.Loader.dll", Resources.SystemRuntimeLoader, Net100.References.SystemRuntimeLoader, global::System.Guid.Parse("bf04f2c7-a3b5-425d-9d5a-3b4fa6ce602f"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.Numerics.dll
/// </summary>
public static ReferenceInfo SystemRuntimeNumerics => new ReferenceInfo("System.Runtime.Numerics.dll", Resources.SystemRuntimeNumerics, Net100.References.SystemRuntimeNumerics, global::System.Guid.Parse("daae3366-047e-490f-8350-f978a6cdc881"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.Serialization.dll
/// </summary>
public static ReferenceInfo SystemRuntimeSerialization => new ReferenceInfo("System.Runtime.Serialization.dll", Resources.SystemRuntimeSerialization, Net100.References.SystemRuntimeSerialization, global::System.Guid.Parse("6cacce52-3b5a-487b-a5bc-2cbd8676bf49"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.Serialization.Formatters.dll
/// </summary>
public static ReferenceInfo SystemRuntimeSerializationFormatters => new ReferenceInfo("System.Runtime.Serialization.Formatters.dll", Resources.SystemRuntimeSerializationFormatters, Net100.References.SystemRuntimeSerializationFormatters, global::System.Guid.Parse("fecdc49a-e192-473e-b843-84c3ed82a2d2"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.Serialization.Json.dll
/// </summary>
public static ReferenceInfo SystemRuntimeSerializationJson => new ReferenceInfo("System.Runtime.Serialization.Json.dll", Resources.SystemRuntimeSerializationJson, Net100.References.SystemRuntimeSerializationJson, global::System.Guid.Parse("16a29d04-a6f0-4680-8234-3f81653bcdec"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.Serialization.Primitives.dll
/// </summary>
public static ReferenceInfo SystemRuntimeSerializationPrimitives => new ReferenceInfo("System.Runtime.Serialization.Primitives.dll", Resources.SystemRuntimeSerializationPrimitives, Net100.References.SystemRuntimeSerializationPrimitives, global::System.Guid.Parse("80b298f0-96a3-403c-9299-b76551ee0956"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Runtime.Serialization.Xml.dll
/// </summary>
public static ReferenceInfo SystemRuntimeSerializationXml => new ReferenceInfo("System.Runtime.Serialization.Xml.dll", Resources.SystemRuntimeSerializationXml, Net100.References.SystemRuntimeSerializationXml, global::System.Guid.Parse("596720ea-507d-4d68-8456-c104e83d5cc4"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.AccessControl.dll
/// </summary>
public static ReferenceInfo SystemSecurityAccessControl => new ReferenceInfo("System.Security.AccessControl.dll", Resources.SystemSecurityAccessControl, Net100.References.SystemSecurityAccessControl, global::System.Guid.Parse("5c547ceb-173b-4c84-a04a-be6d39fc71b1"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.Claims.dll
/// </summary>
public static ReferenceInfo SystemSecurityClaims => new ReferenceInfo("System.Security.Claims.dll", Resources.SystemSecurityClaims, Net100.References.SystemSecurityClaims, global::System.Guid.Parse("823d8843-1407-4bc8-8686-748b2691f4c6"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.Cryptography.Algorithms.dll
/// </summary>
public static ReferenceInfo SystemSecurityCryptographyAlgorithms => new ReferenceInfo("System.Security.Cryptography.Algorithms.dll", Resources.SystemSecurityCryptographyAlgorithms, Net100.References.SystemSecurityCryptographyAlgorithms, global::System.Guid.Parse("949d340a-5cf6-4f9d-86a0-c9cdd27cbb32"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.Cryptography.Cng.dll
/// </summary>
public static ReferenceInfo SystemSecurityCryptographyCng => new ReferenceInfo("System.Security.Cryptography.Cng.dll", Resources.SystemSecurityCryptographyCng, Net100.References.SystemSecurityCryptographyCng, global::System.Guid.Parse("2795215b-5412-45b3-9438-bb03cc8e924e"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.Cryptography.Csp.dll
/// </summary>
public static ReferenceInfo SystemSecurityCryptographyCsp => new ReferenceInfo("System.Security.Cryptography.Csp.dll", Resources.SystemSecurityCryptographyCsp, Net100.References.SystemSecurityCryptographyCsp, global::System.Guid.Parse("c72c6abc-81a4-4bb6-8aca-6c73f87587b8"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.Cryptography.dll
/// </summary>
public static ReferenceInfo SystemSecurityCryptography => new ReferenceInfo("System.Security.Cryptography.dll", Resources.SystemSecurityCryptography, Net100.References.SystemSecurityCryptography, global::System.Guid.Parse("5a666f8d-7e88-489c-afba-9dec075ce3a1"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.Cryptography.Encoding.dll
/// </summary>
public static ReferenceInfo SystemSecurityCryptographyEncoding => new ReferenceInfo("System.Security.Cryptography.Encoding.dll", Resources.SystemSecurityCryptographyEncoding, Net100.References.SystemSecurityCryptographyEncoding, global::System.Guid.Parse("1ab72114-aa7e-476a-a681-879400ff5af6"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.Cryptography.OpenSsl.dll
/// </summary>
public static ReferenceInfo SystemSecurityCryptographyOpenSsl => new ReferenceInfo("System.Security.Cryptography.OpenSsl.dll", Resources.SystemSecurityCryptographyOpenSsl, Net100.References.SystemSecurityCryptographyOpenSsl, global::System.Guid.Parse("faab32f4-1a89-44c6-af4e-5f8d0baefb4e"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.Cryptography.Primitives.dll
/// </summary>
public static ReferenceInfo SystemSecurityCryptographyPrimitives => new ReferenceInfo("System.Security.Cryptography.Primitives.dll", Resources.SystemSecurityCryptographyPrimitives, Net100.References.SystemSecurityCryptographyPrimitives, global::System.Guid.Parse("cda0bbf3-c23a-4b68-ae9e-bd41b88a1135"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.Cryptography.X509Certificates.dll
/// </summary>
public static ReferenceInfo SystemSecurityCryptographyX509Certificates => new ReferenceInfo("System.Security.Cryptography.X509Certificates.dll", Resources.SystemSecurityCryptographyX509Certificates, Net100.References.SystemSecurityCryptographyX509Certificates, global::System.Guid.Parse("66bc72d8-7289-4b3c-9df3-5a22d02dd397"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.dll
/// </summary>
public static ReferenceInfo SystemSecurity => new ReferenceInfo("System.Security.dll", Resources.SystemSecurity, Net100.References.SystemSecurity, global::System.Guid.Parse("2266738f-67d0-4261-99d4-7aeb2ed3bf38"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.Principal.dll
/// </summary>
public static ReferenceInfo SystemSecurityPrincipal => new ReferenceInfo("System.Security.Principal.dll", Resources.SystemSecurityPrincipal, Net100.References.SystemSecurityPrincipal, global::System.Guid.Parse("ccc37628-553f-4c51-9246-232f6049547d"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.Principal.Windows.dll
/// </summary>
public static ReferenceInfo SystemSecurityPrincipalWindows => new ReferenceInfo("System.Security.Principal.Windows.dll", Resources.SystemSecurityPrincipalWindows, Net100.References.SystemSecurityPrincipalWindows, global::System.Guid.Parse("572156a9-5f12-4e96-9207-dc989970dc5f"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Security.SecureString.dll
/// </summary>
public static ReferenceInfo SystemSecuritySecureString => new ReferenceInfo("System.Security.SecureString.dll", Resources.SystemSecuritySecureString, Net100.References.SystemSecuritySecureString, global::System.Guid.Parse("6b2bc07b-82be-4bc4-afc2-7a83172ae819"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.ServiceModel.Web.dll
/// </summary>
public static ReferenceInfo SystemServiceModelWeb => new ReferenceInfo("System.ServiceModel.Web.dll", Resources.SystemServiceModelWeb, Net100.References.SystemServiceModelWeb, global::System.Guid.Parse("ecb1e0b6-b32d-468c-b9dc-a4d1c96726f9"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.ServiceProcess.dll
/// </summary>
public static ReferenceInfo SystemServiceProcess => new ReferenceInfo("System.ServiceProcess.dll", Resources.SystemServiceProcess, Net100.References.SystemServiceProcess, global::System.Guid.Parse("ba9bd176-390c-4410-a385-746d7c5eb742"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Text.Encoding.CodePages.dll
/// </summary>
public static ReferenceInfo SystemTextEncodingCodePages => new ReferenceInfo("System.Text.Encoding.CodePages.dll", Resources.SystemTextEncodingCodePages, Net100.References.SystemTextEncodingCodePages, global::System.Guid.Parse("55cd5cc3-d21c-4b3e-850c-1e50f5a577fc"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Text.Encoding.dll
/// </summary>
public static ReferenceInfo SystemTextEncoding => new ReferenceInfo("System.Text.Encoding.dll", Resources.SystemTextEncoding, Net100.References.SystemTextEncoding, global::System.Guid.Parse("b0dc2116-49a7-4c96-8fde-e37a15c2e061"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Text.Encoding.Extensions.dll
/// </summary>
public static ReferenceInfo SystemTextEncodingExtensions => new ReferenceInfo("System.Text.Encoding.Extensions.dll", Resources.SystemTextEncodingExtensions, Net100.References.SystemTextEncodingExtensions, global::System.Guid.Parse("8c1c8297-48a2-4eb0-941a-9ceac3e14499"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Text.Encodings.Web.dll
/// </summary>
public static ReferenceInfo SystemTextEncodingsWeb => new ReferenceInfo("System.Text.Encodings.Web.dll", Resources.SystemTextEncodingsWeb, Net100.References.SystemTextEncodingsWeb, global::System.Guid.Parse("639e8b62-79f5-4ad9-a296-9d173b0a8e84"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Text.Json.dll
/// </summary>
public static ReferenceInfo SystemTextJson => new ReferenceInfo("System.Text.Json.dll", Resources.SystemTextJson, Net100.References.SystemTextJson, global::System.Guid.Parse("1c033733-6f2b-475f-b67d-98116d1082c7"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Text.RegularExpressions.dll
/// </summary>
public static ReferenceInfo SystemTextRegularExpressions => new ReferenceInfo("System.Text.RegularExpressions.dll", Resources.SystemTextRegularExpressions, Net100.References.SystemTextRegularExpressions, global::System.Guid.Parse("a22995b9-21c7-4e6d-b0dc-ca291623060e"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Threading.Channels.dll
/// </summary>
public static ReferenceInfo SystemThreadingChannels => new ReferenceInfo("System.Threading.Channels.dll", Resources.SystemThreadingChannels, Net100.References.SystemThreadingChannels, global::System.Guid.Parse("fc84a38d-f7d8-41cd-8c80-038453d26786"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Threading.dll
/// </summary>
public static ReferenceInfo SystemThreading => new ReferenceInfo("System.Threading.dll", Resources.SystemThreading, Net100.References.SystemThreading, global::System.Guid.Parse("80681a8f-c152-414d-9086-d5432c3ec816"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Threading.Overlapped.dll
/// </summary>
public static ReferenceInfo SystemThreadingOverlapped => new ReferenceInfo("System.Threading.Overlapped.dll", Resources.SystemThreadingOverlapped, Net100.References.SystemThreadingOverlapped, global::System.Guid.Parse("eb545f33-a2e9-484d-b3f5-e56bae16efa3"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Threading.Tasks.Dataflow.dll
/// </summary>
public static ReferenceInfo SystemThreadingTasksDataflow => new ReferenceInfo("System.Threading.Tasks.Dataflow.dll", Resources.SystemThreadingTasksDataflow, Net100.References.SystemThreadingTasksDataflow, global::System.Guid.Parse("18d041e3-05c3-4b86-8524-e650d6af7b11"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Threading.Tasks.dll
/// </summary>
public static ReferenceInfo SystemThreadingTasks => new ReferenceInfo("System.Threading.Tasks.dll", Resources.SystemThreadingTasks, Net100.References.SystemThreadingTasks, global::System.Guid.Parse("9cda4e80-063d-476c-98f1-4b47f0ac8cad"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Threading.Tasks.Extensions.dll
/// </summary>
public static ReferenceInfo SystemThreadingTasksExtensions => new ReferenceInfo("System.Threading.Tasks.Extensions.dll", Resources.SystemThreadingTasksExtensions, Net100.References.SystemThreadingTasksExtensions, global::System.Guid.Parse("0f40942b-797f-4d41-89c8-fc0d7b060233"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Threading.Tasks.Parallel.dll
/// </summary>
public static ReferenceInfo SystemThreadingTasksParallel => new ReferenceInfo("System.Threading.Tasks.Parallel.dll", Resources.SystemThreadingTasksParallel, Net100.References.SystemThreadingTasksParallel, global::System.Guid.Parse("50c24c27-3e21-48a1-a435-5f71eaca24dc"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Threading.Thread.dll
/// </summary>
public static ReferenceInfo SystemThreadingThread => new ReferenceInfo("System.Threading.Thread.dll", Resources.SystemThreadingThread, Net100.References.SystemThreadingThread, global::System.Guid.Parse("55f7ca60-a6a6-48f6-9952-04f05e6e4b22"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Threading.ThreadPool.dll
/// </summary>
public static ReferenceInfo SystemThreadingThreadPool => new ReferenceInfo("System.Threading.ThreadPool.dll", Resources.SystemThreadingThreadPool, Net100.References.SystemThreadingThreadPool, global::System.Guid.Parse("583c113c-1a9b-4814-b414-4327cb548fac"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Threading.Timer.dll
/// </summary>
public static ReferenceInfo SystemThreadingTimer => new ReferenceInfo("System.Threading.Timer.dll", Resources.SystemThreadingTimer, Net100.References.SystemThreadingTimer, global::System.Guid.Parse("90572738-52e0-4a9f-88a7-5368f81af61f"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Transactions.dll
/// </summary>
public static ReferenceInfo SystemTransactions => new ReferenceInfo("System.Transactions.dll", Resources.SystemTransactions, Net100.References.SystemTransactions, global::System.Guid.Parse("ee4d2b48-faf3-4c76-92f4-16e547f34ee3"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Transactions.Local.dll
/// </summary>
public static ReferenceInfo SystemTransactionsLocal => new ReferenceInfo("System.Transactions.Local.dll", Resources.SystemTransactionsLocal, Net100.References.SystemTransactionsLocal, global::System.Guid.Parse("34ef8c57-3580-4f45-b110-0d5b1c36361a"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.ValueTuple.dll
/// </summary>
public static ReferenceInfo SystemValueTuple => new ReferenceInfo("System.ValueTuple.dll", Resources.SystemValueTuple, Net100.References.SystemValueTuple, global::System.Guid.Parse("a5ab14e3-9fcb-4a8a-8b90-c7e9114d4651"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Web.dll
/// </summary>
public static ReferenceInfo SystemWeb => new ReferenceInfo("System.Web.dll", Resources.SystemWeb, Net100.References.SystemWeb, global::System.Guid.Parse("28388899-7d7c-40e3-b7ea-73270c57893a"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Web.HttpUtility.dll
/// </summary>
public static ReferenceInfo SystemWebHttpUtility => new ReferenceInfo("System.Web.HttpUtility.dll", Resources.SystemWebHttpUtility, Net100.References.SystemWebHttpUtility, global::System.Guid.Parse("41de5979-f05c-4d2e-9164-23a1c79f1649"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Windows.dll
/// </summary>
public static ReferenceInfo SystemWindows => new ReferenceInfo("System.Windows.dll", Resources.SystemWindows, Net100.References.SystemWindows, global::System.Guid.Parse("07684ec1-65c7-42c1-9586-354f886afc5d"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Xml.dll
/// </summary>
public static ReferenceInfo SystemXml => new ReferenceInfo("System.Xml.dll", Resources.SystemXml, Net100.References.SystemXml, global::System.Guid.Parse("ac89d52f-c5ff-4dc6-9f80-a892b89a7d06"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Xml.Linq.dll
/// </summary>
public static ReferenceInfo SystemXmlLinq => new ReferenceInfo("System.Xml.Linq.dll", Resources.SystemXmlLinq, Net100.References.SystemXmlLinq, global::System.Guid.Parse("2d225095-a08f-4368-a0d3-732ba20b1ab1"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Xml.ReaderWriter.dll
/// </summary>
public static ReferenceInfo SystemXmlReaderWriter => new ReferenceInfo("System.Xml.ReaderWriter.dll", Resources.SystemXmlReaderWriter, Net100.References.SystemXmlReaderWriter, global::System.Guid.Parse("fadf9cc3-8fd5-4176-ab55-67f0535a0eec"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Xml.Serialization.dll
/// </summary>
public static ReferenceInfo SystemXmlSerialization => new ReferenceInfo("System.Xml.Serialization.dll", Resources.SystemXmlSerialization, Net100.References.SystemXmlSerialization, global::System.Guid.Parse("bba9b60b-971c-4f4c-9c31-8e0d75d49376"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Xml.XDocument.dll
/// </summary>
public static ReferenceInfo SystemXmlXDocument => new ReferenceInfo("System.Xml.XDocument.dll", Resources.SystemXmlXDocument, Net100.References.SystemXmlXDocument, global::System.Guid.Parse("297dbd95-a537-430f-bcaa-15f8de19b987"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Xml.XmlDocument.dll
/// </summary>
public static ReferenceInfo SystemXmlXmlDocument => new ReferenceInfo("System.Xml.XmlDocument.dll", Resources.SystemXmlXmlDocument, Net100.References.SystemXmlXmlDocument, global::System.Guid.Parse("83947d62-4438-4f26-9bba-899a1769890a"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Xml.XmlSerializer.dll
/// </summary>
public static ReferenceInfo SystemXmlXmlSerializer => new ReferenceInfo("System.Xml.XmlSerializer.dll", Resources.SystemXmlXmlSerializer, Net100.References.SystemXmlXmlSerializer, global::System.Guid.Parse("05b45989-d2e2-410a-b489-dc0c7356227d"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Xml.XPath.dll
/// </summary>
public static ReferenceInfo SystemXmlXPath => new ReferenceInfo("System.Xml.XPath.dll", Resources.SystemXmlXPath, Net100.References.SystemXmlXPath, global::System.Guid.Parse("70d17751-a5a5-4630-b507-7bf632363cba"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for System.Xml.XPath.XDocument.dll
/// </summary>
public static ReferenceInfo SystemXmlXPathXDocument => new ReferenceInfo("System.Xml.XPath.XDocument.dll", Resources.SystemXmlXPathXDocument, Net100.References.SystemXmlXPathXDocument, global::System.Guid.Parse("4228acab-2290-4213-b938-2cad6e361114"));
/// <summary>
/// The <see cref="ReferenceInfo"/> for WindowsBase.dll
/// </summary>
public static ReferenceInfo WindowsBase => new ReferenceInfo("WindowsBase.dll", Resources.WindowsBase, Net100.References.WindowsBase, global::System.Guid.Parse("90501b3d-11e9-47c6-b53e-67253139a034"));
private static ImmutableArray<ReferenceInfo> _all;
public static ImmutableArray<ReferenceInfo> All
{
get
{
if (_all.IsDefault)
{
_all =
[
MicrosoftCSharp,
MicrosoftVisualBasicCore,
MicrosoftVisualBasic,
MicrosoftWin32Primitives,
MicrosoftWin32Registry,
mscorlib,
netstandard,
SystemAppContext,
SystemBuffers,
SystemCollectionsConcurrent,
SystemCollections,
SystemCollectionsImmutable,
SystemCollectionsNonGeneric,
SystemCollectionsSpecialized,
SystemComponentModelAnnotations,
SystemComponentModelDataAnnotations,
SystemComponentModel,
SystemComponentModelEventBasedAsync,
SystemComponentModelPrimitives,
SystemComponentModelTypeConverter,
SystemConfiguration,
SystemConsole,
SystemCore,
SystemDataCommon,
SystemDataDataSetExtensions,
SystemData,
SystemDiagnosticsContracts,
SystemDiagnosticsDebug,
SystemDiagnosticsDiagnosticSource,
SystemDiagnosticsFileVersionInfo,
SystemDiagnosticsProcess,
SystemDiagnosticsStackTrace,
SystemDiagnosticsTextWriterTraceListener,
SystemDiagnosticsTools,
SystemDiagnosticsTraceSource,
SystemDiagnosticsTracing,
System,
SystemDrawing,
SystemDrawingPrimitives,
SystemDynamicRuntime,
SystemFormatsAsn1,
SystemFormatsTar,
SystemGlobalizationCalendars,
SystemGlobalization,
SystemGlobalizationExtensions,
SystemIOCompressionBrotli,
SystemIOCompression,
SystemIOCompressionFileSystem,
SystemIOCompressionZipFile,
SystemIO,
SystemIOFileSystemAccessControl,
SystemIOFileSystem,
SystemIOFileSystemDriveInfo,
SystemIOFileSystemPrimitives,
SystemIOFileSystemWatcher,
SystemIOIsolatedStorage,
SystemIOMemoryMappedFiles,
SystemIOPipelines,
SystemIOPipesAccessControl,
SystemIOPipes,
SystemIOUnmanagedMemoryStream,
SystemLinqAsyncEnumerable,
SystemLinq,
SystemLinqExpressions,
SystemLinqParallel,
SystemLinqQueryable,
SystemMemory,
SystemNet,
SystemNetHttp,
SystemNetHttpJson,
SystemNetHttpListener,
SystemNetMail,
SystemNetNameResolution,
SystemNetNetworkInformation,
SystemNetPing,
SystemNetPrimitives,
SystemNetQuic,
SystemNetRequests,
SystemNetSecurity,
SystemNetServerSentEvents,
SystemNetServicePoint,
SystemNetSockets,
SystemNetWebClient,
SystemNetWebHeaderCollection,
SystemNetWebProxy,
SystemNetWebSocketsClient,
SystemNetWebSockets,
SystemNumerics,
SystemNumericsVectors,
SystemObjectModel,
SystemReflectionDispatchProxy,
SystemReflection,
SystemReflectionEmit,
SystemReflectionEmitILGeneration,
SystemReflectionEmitLightweight,
SystemReflectionExtensions,
SystemReflectionMetadata,
SystemReflectionPrimitives,
SystemReflectionTypeExtensions,
SystemResourcesReader,
SystemResourcesResourceManager,
SystemResourcesWriter,
SystemRuntimeCompilerServicesUnsafe,
SystemRuntimeCompilerServicesVisualC,
SystemRuntime,
SystemRuntimeExtensions,
SystemRuntimeHandles,
SystemRuntimeInteropServices,
SystemRuntimeInteropServicesJavaScript,
SystemRuntimeInteropServicesRuntimeInformation,
SystemRuntimeIntrinsics,
SystemRuntimeLoader,
SystemRuntimeNumerics,
SystemRuntimeSerialization,
SystemRuntimeSerializationFormatters,
SystemRuntimeSerializationJson,
SystemRuntimeSerializationPrimitives,
SystemRuntimeSerializationXml,
SystemSecurityAccessControl,
SystemSecurityClaims,
SystemSecurityCryptographyAlgorithms,
SystemSecurityCryptographyCng,
SystemSecurityCryptographyCsp,
SystemSecurityCryptography,
SystemSecurityCryptographyEncoding,
SystemSecurityCryptographyOpenSsl,
SystemSecurityCryptographyPrimitives,
SystemSecurityCryptographyX509Certificates,
SystemSecurity,
SystemSecurityPrincipal,
SystemSecurityPrincipalWindows,
SystemSecuritySecureString,
SystemServiceModelWeb,
SystemServiceProcess,
SystemTextEncodingCodePages,
SystemTextEncoding,
SystemTextEncodingExtensions,
SystemTextEncodingsWeb,
SystemTextJson,
SystemTextRegularExpressions,
SystemThreadingChannels,
SystemThreading,
SystemThreadingOverlapped,
SystemThreadingTasksDataflow,
SystemThreadingTasks,
SystemThreadingTasksExtensions,
SystemThreadingTasksParallel,
SystemThreadingThread,