-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeMap1.dgml
More file actions
2633 lines (2633 loc) · 306 KB
/
CodeMap1.dgml
File metadata and controls
2633 lines (2633 loc) · 306 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
<?xml version="1.0" encoding="utf-8"?>
<DirectedGraph DataVirtualized="True" Layout="Sugiyama" ZoomLevel="-1" xmlns="http://schemas.microsoft.com/vs/2009/dgml">
<Nodes>
<Node Id="(@13 @357 Type=AccessDeniedModel)" Category="CodeSchema_Class" Bounds="127.38740362489,-443.831843319716,168.076666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="AccessDeniedModel" UseManualLocation="True" />
<Node Id="(@13 @357 Type=ForgotPasswordConfirmation)" Category="CodeSchema_Class" Bounds="337.21740362489,-388.831843319716,215.096666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ForgotPasswordConfirmation" UseManualLocation="True" />
<Node Id="(@13 @357 Type=LockoutModel)" Category="CodeSchema_Class" Bounds="444.57740362489,-608.831843319716,137.13,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="LockoutModel" UseManualLocation="True" />
<Node Id="(@13 @357 Type=ResetPasswordConfirmationModel)" Category="CodeSchema_Class" Bounds="382.344070291557,-333.831843319716,242.466666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ResetPasswordConfirmationModel" UseManualLocation="True" />
<Node Id="(@13 @359 @370 Member=(Name=Create @414))" Category="CodeSchema_Method" Bounds="-1379.65252618724,-962.883546494475,70.3299999999999,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Create" />
<Node Id="(@13 @359 @389 Member=Create)" Category="CodeSchema_Method" Bounds="-987.909627568834,-649.004642252685,70.33,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="Fetched" Label="Create" />
<Node Id="(@13 @363 @367 Member=.ctor)" Category="CodeSchema_Method" Bounds="-17.1688752569258,-358.084041366177,53.71,25.96" CodeSchemaProperty_IsConstructor="True" CodeSchemaProperty_IsPublic="True" CodeSchemaProperty_IsSpecialName="True" DelayedCrossGroupLinksState="Fetched" Label="Car" />
<Node Id="(@13 @363 @367 Member=Color)" Category="CodeSchema_Property" Bounds="206.905911647431,-302.124020808111,87.0190614540483,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Color" />
<Node Id="(@13 @363 @367 Member=Id)" Category="CodeSchema_Property" Bounds="66.5411220726686,-358.084020808111,68.7090614540482,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Id" />
<Node Id="(@13 @363 @367 Member=Make)" Category="CodeSchema_Property" Bounds="-17.1688779273314,-247.124019976698,87.5723947873815,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Make" />
<Node Id="(@13 @363 @367 Member=Mileage)" Category="CodeSchema_Property" Bounds="-17.1688779273314,-192.124019515898,100.765728120715,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Mileage" />
<Node Id="(@13 @363 @367 Member=Model)" Category="CodeSchema_Property" Bounds="222.899244980765,-247.124020347311,92.5057281207148,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Model" />
<Node Id="(@13 @363 @367 Member=Style)" Category="CodeSchema_Property" Bounds="93.4135168600501,-302.124020808111,83.4923947873816,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Style" />
<Node Id="(@13 @363 @367 Member=VIN)" Category="CodeSchema_Property" Bounds="165.250183526717,-358.084020808111,78.0723947873815,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="VIN" />
<Node Id="(@13 @363 @367 Member=Year)" Category="CodeSchema_Property" Bounds="-17.1688779273314,-302.124020437498,80.5823947873815,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Year" />
<Node Id="(@13 @363 @378 Member=.ctor)" Category="CodeSchema_Method" Bounds="83.359975110016,87.9024271378399,155.68,25.96" CodeSchemaProperty_IsConstructor="True" CodeSchemaProperty_IsPublic="True" CodeSchemaProperty_IsSpecialName="True" DelayedCrossGroupLinksState="Fetched" Label="IndividualButtonPartial" />
<Node Id="(@13 @363 @378 Member=Action)" Category="CodeSchema_Property" Bounds="202.599055205092,143.86243443355,92.5257281207149,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Action" />
<Node Id="(@13 @363 @378 Member=ButtonType)" Category="CodeSchema_Property" Bounds="325.124783325807,143.86243397275,118.835728120715,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ButtonType" />
<Node Id="(@13 @363 @378 Member=Glyph)" Category="CodeSchema_Property" Bounds="83.3599937510438,143.86243443355,89.2390614540482,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Glyph" />
<Node Id="(@13 @363 @378 Member=Text)" Category="CodeSchema_Property" Bounds="269.039993751044,87.9024339727498,79.4157281207149,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Text" />
<Node Id="(@13 @363 @387 Member=.ctor)" Category="CodeSchema_Method" Bounds="385.333048162513,-193.084132918912,98.06,25.96" CodeSchemaProperty_IsConstructor="True" CodeSchemaProperty_IsPublic="True" CodeSchemaProperty_IsSpecialName="True" DelayedCrossGroupLinksState="Fetched" Label="ServiceType" />
<Node Id="(@13 @363 @387 Member=Id)" Category="CodeSchema_Property" Bounds="385.405306016147,-137.060331810159,68.7090614540482,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Id" />
<Node Id="(@13 @363 @387 Member=Name)" Category="CodeSchema_Property" Bounds="484.114367470195,-137.060331810159,90.1457281207149,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Name" />
<Node Id="(@13 Namespace=::)" Category="CodeSchema_Namespace" Bounds="-162.931290888869,-208.868308952002,62.2000000000001,25.0086039296" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="0" Group="Collapsed" Label="::" UseManualLocation="True" />
<Node Id="(@13 Namespace=AutoService.Utility)" Category="CodeSchema_Namespace" Bounds="92.7508192355001,308.994817585939,153.426666666667,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="AutoService.Utility" />
<Node Id="@10" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\Microsoft.VisualBasic.dll" Group="Collapsed" Label="Microsoft.VisualBasic.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@100" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@101" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Abstractions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@102" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.apiexplorer\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.ApiExplorer.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.ApiExplorer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@103" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.core\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Core.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@104" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.cors\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Cors.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.Cors.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@105" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.dataannotations\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.DataAnnotations.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.DataAnnotations.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@106" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.formatters.json\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Formatters.Json.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.Formatters.Json.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@107" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.formatters.xml\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.Formatters.Xml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@108" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.localization\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Localization.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.Localization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@109" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.razor\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.Razor.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@110" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.razor.extensions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.Razor.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@111" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.razorpages\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.RazorPages.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.RazorPages.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@112" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.taghelpers\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.TagHelpers.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.TagHelpers.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@113" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.viewfeatures\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.ViewFeatures.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.ViewFeatures.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@114" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.nodeservices\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.NodeServices.dll" Group="Collapsed" Label="Microsoft.AspNetCore.NodeServices.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@115" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.owin\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Owin.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Owin.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@116" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Razor.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Razor.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@117" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.aspnetcore.razor.language\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Razor.Language.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Razor.Language.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@118" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor.runtime\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Razor.Runtime.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Razor.Runtime.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@119" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.responsecaching\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCaching.dll" Group="Collapsed" Label="Microsoft.AspNetCore.ResponseCaching.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@12" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\netstandard.dll" Group="Collapsed" Label="netstandard.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@120" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.responsecaching.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.ResponseCaching.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@121" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.responsecompression\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCompression.dll" Group="Collapsed" Label="Microsoft.AspNetCore.ResponseCompression.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@122" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.rewrite\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Rewrite.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Rewrite.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@123" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.routing\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Routing.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Routing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@124" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.routing.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Routing.Abstractions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Routing.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@125" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.server.httpsys\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.HttpSys.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Server.HttpSys.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@126" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.server.iisintegration\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.IISIntegration.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Server.IISIntegration.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@127" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.server.kestrel\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Server.Kestrel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@128" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.server.kestrel.core\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Core.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Server.Kestrel.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@129" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.server.kestrel.https\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Https.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Server.Kestrel.Https.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@130" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@131" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@132" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.session\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Session.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Session.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@133" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.signalr\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.dll" Group="Collapsed" Label="Microsoft.AspNetCore.SignalR.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@134" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.signalr.common\1.0.1\lib\netcoreapp2.1\Microsoft.AspNetCore.SignalR.Common.dll" Group="Collapsed" Label="Microsoft.AspNetCore.SignalR.Common.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@135" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.signalr.core\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Core.dll" Group="Collapsed" Label="Microsoft.AspNetCore.SignalR.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@136" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.signalr.protocols.json\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Protocols.Json.dll" Group="Collapsed" Label="Microsoft.AspNetCore.SignalR.Protocols.Json.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@137" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.spaservices\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.SpaServices.dll" Group="Collapsed" Label="Microsoft.AspNetCore.SpaServices.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@138" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.spaservices.extensions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.SpaServices.Extensions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.SpaServices.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@139" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.staticfiles\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.StaticFiles.dll" Group="Collapsed" Label="Microsoft.AspNetCore.StaticFiles.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@14" Category="CodeSchema_Assembly" Bounds="-1439.66197138914,-1224.50030233518,2485.90309376935,1578.57208691295" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="NotFetched" FetchedChildrenCount="9" FilePath="$(a79c6326-1faa-445c-81e0-c6deb0e6c61c.OutputPath)" Group="Expanded" Label="AutoService.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@140" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.websockets\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.WebSockets.dll" Group="Collapsed" Label="Microsoft.AspNetCore.WebSockets.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@141" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.webutilities\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.WebUtilities.dll" Group="Collapsed" Label="Microsoft.AspNetCore.WebUtilities.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@142" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.codeanalysis.common\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.dll" Group="Collapsed" Label="Microsoft.CodeAnalysis.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@143" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.codeanalysis.csharp\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.dll" Group="Collapsed" Label="Microsoft.CodeAnalysis.CSharp.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@144" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.codeanalysis.csharp.workspaces\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.Workspaces.dll" Group="Collapsed" Label="Microsoft.CodeAnalysis.CSharp.Workspaces.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@145" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.razor\2.1.1\lib\netstandard2.0\Microsoft.CodeAnalysis.Razor.dll" Group="Collapsed" Label="Microsoft.CodeAnalysis.Razor.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@146" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.codeanalysis.workspaces.common\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.Workspaces.dll" Group="Collapsed" Label="Microsoft.CodeAnalysis.Workspaces.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@147" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.dotnet.platformabstractions\2.1.0\lib\netstandard1.3\Microsoft.DotNet.PlatformAbstractions.dll" Group="Collapsed" Label="Microsoft.DotNet.PlatformAbstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@148" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.dll" Group="Collapsed" Label="Microsoft.EntityFrameworkCore.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@149" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore.abstractions\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Abstractions.dll" Group="Collapsed" Label="Microsoft.EntityFrameworkCore.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@150" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore.design\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Design.dll" Group="Collapsed" Label="Microsoft.EntityFrameworkCore.Design.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@151" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore.inmemory\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.InMemory.dll" Group="Collapsed" Label="Microsoft.EntityFrameworkCore.InMemory.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@152" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore.relational\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Relational.dll" Group="Collapsed" Label="Microsoft.EntityFrameworkCore.Relational.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@153" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore.sqlserver\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.SqlServer.dll" Group="Collapsed" Label="Microsoft.EntityFrameworkCore.SqlServer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@154" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.caching.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Caching.Abstractions.dll" Group="Collapsed" Label="Microsoft.Extensions.Caching.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@155" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.caching.memory\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Caching.Memory.dll" Group="Collapsed" Label="Microsoft.Extensions.Caching.Memory.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@156" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.caching.sqlserver\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Caching.SqlServer.dll" Group="Collapsed" Label="Microsoft.Extensions.Caching.SqlServer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@157" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@158" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@159" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.binder\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Binder.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.Binder.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@16" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Core.dll" Group="Collapsed" Label="System.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@160" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.commandline\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.CommandLine.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.CommandLine.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@161" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.environmentvariables\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.EnvironmentVariables.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@162" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.fileextensions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.FileExtensions.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.FileExtensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@163" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.ini\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Ini.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.Ini.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@164" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.json\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Json.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.Json.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@165" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.keyperfile\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.KeyPerFile.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.KeyPerFile.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@166" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.usersecrets\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.UserSecrets.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@167" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.xml\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Xml.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.Xml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@168" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.extensions.dependencyinjection\2.1.1\lib\netcoreapp2.0\Microsoft.Extensions.DependencyInjection.dll" Group="Collapsed" Label="Microsoft.Extensions.DependencyInjection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@169" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.extensions.dependencyinjection.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll" Group="Collapsed" Label="Microsoft.Extensions.DependencyInjection.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@170" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.dependencymodel\2.1.0\lib\netstandard1.6\Microsoft.Extensions.DependencyModel.dll" Group="Collapsed" Label="Microsoft.Extensions.DependencyModel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@171" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.diagnosticadapter\2.1.0\lib\netcoreapp2.0\Microsoft.Extensions.DiagnosticAdapter.dll" Group="Collapsed" Label="Microsoft.Extensions.DiagnosticAdapter.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@172" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.fileproviders.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Abstractions.dll" Group="Collapsed" Label="Microsoft.Extensions.FileProviders.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@173" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.fileproviders.composite\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Composite.dll" Group="Collapsed" Label="Microsoft.Extensions.FileProviders.Composite.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@174" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.fileproviders.embedded\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.dll" Group="Collapsed" Label="Microsoft.Extensions.FileProviders.Embedded.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@175" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.fileproviders.physical\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Physical.dll" Group="Collapsed" Label="Microsoft.Extensions.FileProviders.Physical.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@176" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.filesystemglobbing\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileSystemGlobbing.dll" Group="Collapsed" Label="Microsoft.Extensions.FileSystemGlobbing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@177" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.hosting\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Hosting.dll" Group="Collapsed" Label="Microsoft.Extensions.Hosting.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@178" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.hosting.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Hosting.Abstractions.dll" Group="Collapsed" Label="Microsoft.Extensions.Hosting.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@179" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.http\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Http.dll" Group="Collapsed" Label="Microsoft.Extensions.Http.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@18" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="$(SystemRoot)\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" Group="Collapsed" Label="WindowsBase.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@180" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.identity.core\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Identity.Core.dll" Group="Collapsed" Label="Microsoft.Extensions.Identity.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@181" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.identity.stores\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Identity.Stores.dll" Group="Collapsed" Label="Microsoft.Extensions.Identity.Stores.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@182" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.localization\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Localization.dll" Group="Collapsed" Label="Microsoft.Extensions.Localization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@183" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.localization.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Localization.Abstractions.dll" Group="Collapsed" Label="Microsoft.Extensions.Localization.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@184" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.logging\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.dll" Group="Collapsed" Label="Microsoft.Extensions.Logging.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@185" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.logging.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Abstractions.dll" Group="Collapsed" Label="Microsoft.Extensions.Logging.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@186" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.logging.configuration\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Configuration.dll" Group="Collapsed" Label="Microsoft.Extensions.Logging.Configuration.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@187" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.logging.console\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Console.dll" Group="Collapsed" Label="Microsoft.Extensions.Logging.Console.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@188" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.logging.debug\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Debug.dll" Group="Collapsed" Label="Microsoft.Extensions.Logging.Debug.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@189" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.logging.eventsource\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.EventSource.dll" Group="Collapsed" Label="Microsoft.Extensions.Logging.EventSource.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@190" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.logging.tracesource\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.TraceSource.dll" Group="Collapsed" Label="Microsoft.Extensions.Logging.TraceSource.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@191" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.objectpool\2.1.1\lib\netstandard2.0\Microsoft.Extensions.ObjectPool.dll" Group="Collapsed" Label="Microsoft.Extensions.ObjectPool.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@192" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.options\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Options.dll" Group="Collapsed" Label="Microsoft.Extensions.Options.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@193" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.options.configurationextensions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll" Group="Collapsed" Label="Microsoft.Extensions.Options.ConfigurationExtensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@194" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.primitives\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Primitives.dll" Group="Collapsed" Label="Microsoft.Extensions.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@195" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.webencoders\2.1.1\lib\netstandard2.0\Microsoft.Extensions.WebEncoders.dll" Group="Collapsed" Label="Microsoft.Extensions.WebEncoders.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@196" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.identitymodel.logging\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Logging.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Logging.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@197" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.identitymodel.protocols\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Protocols.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@198" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.identitymodel.protocols.openidconnect\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@199" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.identitymodel.protocols.wsfederation\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.WsFederation.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Protocols.WsFederation.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@2" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Data.dll" Group="Collapsed" Label="System.Data.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@20" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Drawing.dll" Group="Collapsed" Label="System.Drawing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@200" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.identitymodel.tokens\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Tokens.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@201" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.identitymodel.tokens.saml\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.Saml.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Tokens.Saml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@202" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.identitymodel.xml\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Xml.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Xml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@203" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.net.http.headers\2.1.1\lib\netstandard2.0\Microsoft.Net.Http.Headers.dll" Group="Collapsed" Label="Microsoft.Net.Http.Headers.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@204" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.visualstudio.web.codegeneration\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll" Group="Collapsed" Label="Microsoft.VisualStudio.Web.CodeGeneration.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@205" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.visualstudio.web.codegeneration.contracts\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll" Group="Collapsed" Label="Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@206" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.visualstudio.web.codegeneration.core\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll" Group="Collapsed" Label="Microsoft.VisualStudio.Web.CodeGeneration.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@207" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll" Group="Collapsed" Label="Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@208" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.visualstudio.web.codegeneration.templating\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll" Group="Collapsed" Label="Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@209" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.visualstudio.web.codegeneration.utils\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll" Group="Collapsed" Label="Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@210" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.visualstudio.web.codegenerators.mvc\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll" Group="Collapsed" Label="Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@211" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.Win32.Primitives.dll" Group="Collapsed" Label="Microsoft.Win32.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@212" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.win32.registry\4.5.0\ref\netstandard2.0\Microsoft.Win32.Registry.dll" Group="Collapsed" Label="Microsoft.Win32.Registry.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@213" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\newtonsoft.json\11.0.2\lib\netstandard2.0\Newtonsoft.Json.dll" Group="Collapsed" Label="Newtonsoft.Json.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@214" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\newtonsoft.json.bson\1.0.1\lib\netstandard1.3\Newtonsoft.Json.Bson.dll" Group="Collapsed" Label="Newtonsoft.Json.Bson.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@215" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\nuget.frameworks\4.7.0\lib\netstandard1.6\NuGet.Frameworks.dll" Group="Collapsed" Label="NuGet.Frameworks.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@216" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\remotion.linq\2.2.0\lib\netstandard1.0\Remotion.Linq.dll" Group="Collapsed" Label="Remotion.Linq.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@217" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.AppContext.dll" Group="Collapsed" Label="System.AppContext.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@218" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Buffers.dll" Group="Collapsed" Label="System.Buffers.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@219" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.dll" Group="Collapsed" Label="System.Collections.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@22" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Xml.dll" Group="Collapsed" Label="System.Xml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@220" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Concurrent.dll" Group="Collapsed" Label="System.Collections.Concurrent.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@221" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Immutable.dll" Group="Collapsed" Label="System.Collections.Immutable.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@222" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.NonGeneric.dll" Group="Collapsed" Label="System.Collections.NonGeneric.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@223" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Specialized.dll" Group="Collapsed" Label="System.Collections.Specialized.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@224" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.dll" Group="Collapsed" Label="System.ComponentModel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@225" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.Annotations.dll" Group="Collapsed" Label="System.ComponentModel.Annotations.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@226" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.EventBasedAsync.dll" Group="Collapsed" Label="System.ComponentModel.EventBasedAsync.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@227" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.Primitives.dll" Group="Collapsed" Label="System.ComponentModel.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@228" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.TypeConverter.dll" Group="Collapsed" Label="System.ComponentModel.TypeConverter.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@229" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.composition.attributedmodel\1.0.31\lib\netstandard1.0\System.Composition.AttributedModel.dll" Group="Collapsed" Label="System.Composition.AttributedModel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@230" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.composition.convention\1.0.31\lib\netstandard1.0\System.Composition.Convention.dll" Group="Collapsed" Label="System.Composition.Convention.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@231" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.composition.hosting\1.0.31\lib\netstandard1.0\System.Composition.Hosting.dll" Group="Collapsed" Label="System.Composition.Hosting.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@232" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.composition.runtime\1.0.31\lib\netstandard1.0\System.Composition.Runtime.dll" Group="Collapsed" Label="System.Composition.Runtime.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@233" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.composition.typedparts\1.0.31\lib\netstandard1.0\System.Composition.TypedParts.dll" Group="Collapsed" Label="System.Composition.TypedParts.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@234" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Console.dll" Group="Collapsed" Label="System.Console.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@235" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Data.Common.dll" Group="Collapsed" Label="System.Data.Common.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@236" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.data.sqlclient\4.5.1\ref\netcoreapp2.1\System.Data.SqlClient.dll" Group="Collapsed" Label="System.Data.SqlClient.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@237" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Contracts.dll" Group="Collapsed" Label="System.Diagnostics.Contracts.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@238" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Debug.dll" Group="Collapsed" Label="System.Diagnostics.Debug.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@239" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.DiagnosticSource.dll" Group="Collapsed" Label="System.Diagnostics.DiagnosticSource.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@24" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.IO.Compression.FileSystem.dll" Group="Collapsed" Label="System.IO.Compression.FileSystem.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@240" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.FileVersionInfo.dll" Group="Collapsed" Label="System.Diagnostics.FileVersionInfo.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@241" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Process.dll" Group="Collapsed" Label="System.Diagnostics.Process.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@242" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.StackTrace.dll" Group="Collapsed" Label="System.Diagnostics.StackTrace.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@243" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.TextWriterTraceListener.dll" Group="Collapsed" Label="System.Diagnostics.TextWriterTraceListener.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@244" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Tools.dll" Group="Collapsed" Label="System.Diagnostics.Tools.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@245" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.TraceSource.dll" Group="Collapsed" Label="System.Diagnostics.TraceSource.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@246" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Tracing.dll" Group="Collapsed" Label="System.Diagnostics.Tracing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@247" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Drawing.Primitives.dll" Group="Collapsed" Label="System.Drawing.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@248" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Dynamic.Runtime.dll" Group="Collapsed" Label="System.Dynamic.Runtime.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@249" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.dll" Group="Collapsed" Label="System.Globalization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@250" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.Calendars.dll" Group="Collapsed" Label="System.Globalization.Calendars.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@251" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.Extensions.dll" Group="Collapsed" Label="System.Globalization.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@252" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.identitymodel.tokens.jwt\5.2.0\lib\netstandard1.4\System.IdentityModel.Tokens.Jwt.dll" Group="Collapsed" Label="System.IdentityModel.Tokens.Jwt.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@253" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.interactive.async\3.1.1\lib\netstandard1.3\System.Interactive.Async.dll" Group="Collapsed" Label="System.Interactive.Async.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@254" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.dll" Group="Collapsed" Label="System.IO.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@255" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.dll" Group="Collapsed" Label="System.IO.Compression.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@256" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.Brotli.dll" Group="Collapsed" Label="System.IO.Compression.Brotli.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@257" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.ZipFile.dll" Group="Collapsed" Label="System.IO.Compression.ZipFile.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@258" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.dll" Group="Collapsed" Label="System.IO.FileSystem.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@259" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.DriveInfo.dll" Group="Collapsed" Label="System.IO.FileSystem.DriveInfo.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@26" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.dll" Group="Collapsed" Label="System.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@260" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.Primitives.dll" Group="Collapsed" Label="System.IO.FileSystem.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@261" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.Watcher.dll" Group="Collapsed" Label="System.IO.FileSystem.Watcher.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@262" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.IsolatedStorage.dll" Group="Collapsed" Label="System.IO.IsolatedStorage.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@263" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.MemoryMappedFiles.dll" Group="Collapsed" Label="System.IO.MemoryMappedFiles.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@264" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.io.pipelines\4.5.0\ref\netstandard1.3\System.IO.Pipelines.dll" Group="Collapsed" Label="System.IO.Pipelines.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@265" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Pipes.dll" Group="Collapsed" Label="System.IO.Pipes.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@266" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.UnmanagedMemoryStream.dll" Group="Collapsed" Label="System.IO.UnmanagedMemoryStream.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@267" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.dll" Group="Collapsed" Label="System.Linq.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@268" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Expressions.dll" Group="Collapsed" Label="System.Linq.Expressions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@269" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Parallel.dll" Group="Collapsed" Label="System.Linq.Parallel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@270" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Queryable.dll" Group="Collapsed" Label="System.Linq.Queryable.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@271" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Memory.dll" Group="Collapsed" Label="System.Memory.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@272" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Http.dll" Group="Collapsed" Label="System.Net.Http.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@273" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnet.webapi.client\5.2.6\lib\netstandard2.0\System.Net.Http.Formatting.dll" Group="Collapsed" Label="System.Net.Http.Formatting.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@274" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.HttpListener.dll" Group="Collapsed" Label="System.Net.HttpListener.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@275" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Mail.dll" Group="Collapsed" Label="System.Net.Mail.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@276" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.NameResolution.dll" Group="Collapsed" Label="System.Net.NameResolution.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@277" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.NetworkInformation.dll" Group="Collapsed" Label="System.Net.NetworkInformation.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@278" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Ping.dll" Group="Collapsed" Label="System.Net.Ping.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@279" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Primitives.dll" Group="Collapsed" Label="System.Net.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@28" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Configuration.dll" Group="Collapsed" Label="System.Configuration.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@280" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Requests.dll" Group="Collapsed" Label="System.Net.Requests.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@281" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Security.dll" Group="Collapsed" Label="System.Net.Security.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@282" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.ServicePoint.dll" Group="Collapsed" Label="System.Net.ServicePoint.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@283" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Sockets.dll" Group="Collapsed" Label="System.Net.Sockets.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@284" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebClient.dll" Group="Collapsed" Label="System.Net.WebClient.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@285" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebHeaderCollection.dll" Group="Collapsed" Label="System.Net.WebHeaderCollection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@286" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebProxy.dll" Group="Collapsed" Label="System.Net.WebProxy.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@287" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebSockets.dll" Group="Collapsed" Label="System.Net.WebSockets.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@288" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebSockets.Client.dll" Group="Collapsed" Label="System.Net.WebSockets.Client.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@289" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.net.websockets.websocketprotocol\4.5.1\ref\netstandard2.0\System.Net.WebSockets.WebSocketProtocol.dll" Group="Collapsed" Label="System.Net.WebSockets.WebSocketProtocol.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@290" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Numerics.Vectors.dll" Group="Collapsed" Label="System.Numerics.Vectors.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@291" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ObjectModel.dll" Group="Collapsed" Label="System.ObjectModel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@292" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.dll" Group="Collapsed" Label="System.Reflection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@293" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.DispatchProxy.dll" Group="Collapsed" Label="System.Reflection.DispatchProxy.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@294" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.dll" Group="Collapsed" Label="System.Reflection.Emit.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@295" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.ILGeneration.dll" Group="Collapsed" Label="System.Reflection.Emit.ILGeneration.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@296" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.Lightweight.dll" Group="Collapsed" Label="System.Reflection.Emit.Lightweight.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@297" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Extensions.dll" Group="Collapsed" Label="System.Reflection.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@298" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Metadata.dll" Group="Collapsed" Label="System.Reflection.Metadata.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@299" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Primitives.dll" Group="Collapsed" Label="System.Reflection.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@30" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Runtime.Serialization.dll" Group="Collapsed" Label="System.Runtime.Serialization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@300" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.TypeExtensions.dll" Group="Collapsed" Label="System.Reflection.TypeExtensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@301" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.Reader.dll" Group="Collapsed" Label="System.Resources.Reader.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@302" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.ResourceManager.dll" Group="Collapsed" Label="System.Resources.ResourceManager.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@303" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.Writer.dll" Group="Collapsed" Label="System.Resources.Writer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@305" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.dll" Group="Collapsed" Label="System.Runtime.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@306" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.runtime.compilerservices.unsafe\4.5.1\ref\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll" Group="Collapsed" Label="System.Runtime.CompilerServices.Unsafe.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@307" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.CompilerServices.VisualC.dll" Group="Collapsed" Label="System.Runtime.CompilerServices.VisualC.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@308" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Extensions.dll" Group="Collapsed" Label="System.Runtime.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@309" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Handles.dll" Group="Collapsed" Label="System.Runtime.Handles.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@310" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.dll" Group="Collapsed" Label="System.Runtime.InteropServices.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@311" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.RuntimeInformation.dll" Group="Collapsed" Label="System.Runtime.InteropServices.RuntimeInformation.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@312" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.WindowsRuntime.dll" Group="Collapsed" Label="System.Runtime.InteropServices.WindowsRuntime.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@313" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Loader.dll" Group="Collapsed" Label="System.Runtime.Loader.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@314" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Numerics.dll" Group="Collapsed" Label="System.Runtime.Numerics.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@315" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Formatters.dll" Group="Collapsed" Label="System.Runtime.Serialization.Formatters.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@316" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Json.dll" Group="Collapsed" Label="System.Runtime.Serialization.Json.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@317" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Primitives.dll" Group="Collapsed" Label="System.Runtime.Serialization.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@318" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Xml.dll" Group="Collapsed" Label="System.Runtime.Serialization.Xml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@319" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.security.accesscontrol\4.5.0\ref\netstandard2.0\System.Security.AccessControl.dll" Group="Collapsed" Label="System.Security.AccessControl.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@32" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Xml.Serialization.dll" Group="Collapsed" Label="System.Xml.Serialization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@320" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Claims.dll" Group="Collapsed" Label="System.Security.Claims.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@321" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Algorithms.dll" Group="Collapsed" Label="System.Security.Cryptography.Algorithms.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@322" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.security.cryptography.cng\4.5.0\ref\netcoreapp2.1\System.Security.Cryptography.Cng.dll" Group="Collapsed" Label="System.Security.Cryptography.Cng.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@323" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Csp.dll" Group="Collapsed" Label="System.Security.Cryptography.Csp.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@324" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Encoding.dll" Group="Collapsed" Label="System.Security.Cryptography.Encoding.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@325" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Primitives.dll" Group="Collapsed" Label="System.Security.Cryptography.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@326" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.X509Certificates.dll" Group="Collapsed" Label="System.Security.Cryptography.X509Certificates.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@327" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.security.cryptography.xml\4.5.0\ref\netstandard2.0\System.Security.Cryptography.Xml.dll" Group="Collapsed" Label="System.Security.Cryptography.Xml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@328" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.security.permissions\4.5.0\ref\netstandard2.0\System.Security.Permissions.dll" Group="Collapsed" Label="System.Security.Permissions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@329" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Principal.dll" Group="Collapsed" Label="System.Security.Principal.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@330" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.security.principal.windows\4.5.0\ref\netstandard2.0\System.Security.Principal.Windows.dll" Group="Collapsed" Label="System.Security.Principal.Windows.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@331" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.SecureString.dll" Group="Collapsed" Label="System.Security.SecureString.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@332" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.Encoding.dll" Group="Collapsed" Label="System.Text.Encoding.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@333" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.Encoding.Extensions.dll" Group="Collapsed" Label="System.Text.Encoding.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@334" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.text.encodings.web\4.5.0\lib\netstandard2.0\System.Text.Encodings.Web.dll" Group="Collapsed" Label="System.Text.Encodings.Web.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@335" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.RegularExpressions.dll" Group="Collapsed" Label="System.Text.RegularExpressions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@336" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.dll" Group="Collapsed" Label="System.Threading.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@337" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.threading.channels\4.5.0\lib\netcoreapp2.1\System.Threading.Channels.dll" Group="Collapsed" Label="System.Threading.Channels.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@338" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Overlapped.dll" Group="Collapsed" Label="System.Threading.Overlapped.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@339" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.dll" Group="Collapsed" Label="System.Threading.Tasks.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@34" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\Microsoft.CSharp.dll" Group="Collapsed" Label="Microsoft.CSharp.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@340" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Dataflow.dll" Group="Collapsed" Label="System.Threading.Tasks.Dataflow.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@341" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Extensions.dll" Group="Collapsed" Label="System.Threading.Tasks.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@342" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Parallel.dll" Group="Collapsed" Label="System.Threading.Tasks.Parallel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@343" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Thread.dll" Group="Collapsed" Label="System.Threading.Thread.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@344" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.ThreadPool.dll" Group="Collapsed" Label="System.Threading.ThreadPool.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@345" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Timer.dll" Group="Collapsed" Label="System.Threading.Timer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@346" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Transactions.Local.dll" Group="Collapsed" Label="System.Transactions.Local.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@347" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ValueTuple.dll" Group="Collapsed" Label="System.ValueTuple.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@348" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Web.HttpUtility.dll" Group="Collapsed" Label="System.Web.HttpUtility.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@349" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.ReaderWriter.dll" Group="Collapsed" Label="System.Xml.ReaderWriter.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@350" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XDocument.dll" Group="Collapsed" Label="System.Xml.XDocument.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@351" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XmlDocument.dll" Group="Collapsed" Label="System.Xml.XmlDocument.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@352" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XmlSerializer.dll" Group="Collapsed" Label="System.Xml.XmlSerializer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@353" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XPath.dll" Group="Collapsed" Label="System.Xml.XPath.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@354" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XPath.XDocument.dll" Group="Collapsed" Label="System.Xml.XPath.XDocument.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@356" Category="CodeSchema_Namespace" Bounds="555.63910698277,-778.213672417812,166.283333333334,195.083035193975" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="3" Group="Expanded" Label="AutoService" UseManualLocation="True" />
<Node Id="@358" Category="CodeSchema_Namespace" Bounds="751.922540316103,-608.132722149205,274.243333333333,25" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="13" Group="Collapsed" Label="AutoService.Areas.Identity.Pages.Account" UseManualLocation="True" />
<Node Id="@36" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Xml.Linq.dll" Group="Collapsed" Label="System.Xml.Linq.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@360" Category="CodeSchema_Namespace" Bounds="-1419.65250256883,-1184.4855401827,1945.3615,601.440897930019" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="4" Group="Expanded" Label="AutoService.Controllers" UseManualLocation="True" />
<Node Id="@361" Category="CodeSchema_Namespace" Bounds="284.520890978962,-553.059671161991,217.736666666667,85.0002" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="1" Group="Expanded" Label="AutoService.Data" UseManualLocation="True" />
<Node Id="@362" Category="CodeSchema_Namespace" Bounds="172.90667182481,238.925463034179,206.733333333333,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="AutoService.Data.Migrations" />
<Node Id="@364" Category="CodeSchema_Namespace" Bounds="-57.1834252417916,-438.059470701191,671.500887710069,646.984708569741" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="4" Group="Expanded" Label="AutoService.Models" UseManualLocation="True" />
<Node Id="@365" Category="CodeSchema_Namespace" Bounds="3.65079143976186,-553.059671161991,250.87,85.0002" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="1" Group="Expanded" Label="AutoService.ViewModel" UseManualLocation="True" />
<Node Id="@366" Category="CodeSchema_Class" Bounds="304.505725733076,-513.031119190022,177.736666666667,25.0000000000001" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ApplicationDbContext" />
<Node Id="@368" Category="CodeSchema_Class" Bounds="-37.1834252417916,-398.059370701191,372.573851028812,250.9605" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="11" Group="Expanded" Label="Car" UseManualLocation="True" />
<Node Id="@369" Category="CodeSchema_Class" Bounds="23.7241480533698,-513.032500772237,210.87,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="CarAndCustomerViewModel" />
<Node Id="@371" Category="CodeSchema_Class" Bounds="-1399.65250256883,-1144.4855401827,984.807443593344,227.493158984375" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="11" Group="Expanded" Label="CarsController" UseManualLocation="True" />
<Node Id="@372" Category="CodeSchema_Class" Bounds="127.38740362489,-498.831843319716,165.806666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ConfirmEmailModel" UseManualLocation="True" />
<Node Id="@373" Category="CodeSchema_Class" Bounds="575.62428154838,-628.130737223837,126.283333333334,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="EmailSender" />
<Node Id="@374" Category="CodeSchema_Class" Bounds="119.526181045594,-117.097839419254,145.986666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ErrorViewModel" />
<Node Id="@375" Category="CodeSchema_Class" Bounds="323.194070291557,-498.831843319716,166.396666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ExternalLoginModel" UseManualLocation="True" />
<Node Id="@376" Category="CodeSchema_Class" Bounds="127.38740362489,-388.831843319716,179.83,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ForgotPasswordModel" UseManualLocation="True" />
<Node Id="@377" Category="CodeSchema_Class" Bounds="-576.514227568834,-886.992313134088,145.946666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="HomeController" />
<Node Id="@379" Category="CodeSchema_Class" Bounds="63.3599820600368,-62.0353621314501,413.212406478389,250.9605" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="9" Group="Expanded" Label="IndividualButtonPartial" UseManualLocation="True" />
<Node Id="@38" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Numerics.dll" Group="Collapsed" Label="System.Numerics.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@380" Category="CodeSchema_Class" Bounds="127.38740362489,-608.831843319716,124.5,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="LoginModel" UseManualLocation="True" />
<Node Id="@381" Category="CodeSchema_Class" Bounds="295.130736958224,-553.831843319716,165.806666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="LoginWith2faModel" UseManualLocation="True" />
<Node Id="@382" Category="CodeSchema_Class" Bounds="127.38740362489,-333.831843319716,224.956666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="LoginWithRecoveryCodeModel" UseManualLocation="True" />
<Node Id="@383" Category="CodeSchema_Class" Bounds="281.88740362489,-608.831843319716,132.69,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="LogoutModel" UseManualLocation="True" />
<Node Id="@384" Category="CodeSchema_Class" Bounds="585.431279789999,-738.213572417812,106.606666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Program" />
<Node Id="@385" Category="CodeSchema_Class" Bounds="127.38740362489,-553.831843319716,137.743333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RegisterModel" UseManualLocation="True" />
<Node Id="@386" Category="CodeSchema_Class" Bounds="325.464070291557,-443.831843319716,173.143333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ResetPasswordModel" UseManualLocation="True" />
<Node Id="@388" Category="CodeSchema_Class" Bounds="365.39042578702,-233.059462253925,228.927036681258,141.024000122475" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="3" Group="Expanded" Label="ServiceType" UseManualLocation="True" />
<Node Id="@390" Category="CodeSchema_Class" Bounds="-1007.90962756883,-831.992213134088,1043.72746666667,228.947570881403" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="11" Group="Expanded" Label="ServiceTypesController" UseManualLocation="True" />
<Node Id="@391" Category="CodeSchema_Class" Bounds="589.112946456665,-683.213472417812,99.2433333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Startup" />
<Node Id="@393" Category="CodeSchema_Class" Bounds="-384.845035902168,-1022.38992103135,890.554033333333,160.397807897257" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="9" Group="Expanded" Label="UsersController" UseManualLocation="True" />
<Node Id="@396" Category="CodeSchema_Method" Bounds="-965.515476219788,-1104.41650547885,70.2166666666667,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Delete" />
<Node Id="@397" Category="CodeSchema_Method" Bounds="-529.422560902167,-791.992213134088,70.2166666666667,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Delete" />
<Node Id="@398" Category="CodeSchema_Method" Bounds="-668.695165754293,-1074.80359043979,125.983333333333,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="DeleteConfirmed" />
<Node Id="@399" Category="CodeSchema_Method" Bounds="-865.298673648173,-1074.80359043979,71.77,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Details" />
<Node Id="@4" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.ServiceModel.Web.dll" Group="Collapsed" Label="System.ServiceModel.Web.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@40" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.ComponentModel.DataAnnotations.dll" Group="Collapsed" Label="System.ComponentModel.DataAnnotations.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@400" Category="CodeSchema_Method" Bounds="-429.205794235501,-760.924642252685,71.77,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Details" />
<Node Id="@402" Category="CodeSchema_Method" Bounds="-1137.73564142161,-1074.80359043979,56.1099999999999,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Edit" />
<Node Id="@403" Category="CodeSchema_Method" Bounds="-701.642760902168,-760.924642252685,56.11,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Edit" />
<Node Id="@404" Category="CodeSchema_Method" Bounds="-232.602260902167,-760.924642252685,140.553333333333,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="RemoveServiceType" />
<Node Id="@405" Category="CodeSchema_Method" Bounds="-1279.32242446198,-1074.80359043979,111.586666666667,25.96" CodeSchemaProperty_IsConstructor="True" CodeSchemaProperty_IsPublic="True" CodeSchemaProperty_IsSpecialName="True" DelayedCrossGroupLinksState="Fetched" Label="CarsController" />
<Node Id="@406" Category="CodeSchema_Method" Bounds="-887.579527568834,-760.924642252685,155.936666666667,25.96" CodeSchemaProperty_IsConstructor="True" CodeSchemaProperty_IsPublic="True" CodeSchemaProperty_IsSpecialName="True" DelayedCrossGroupLinksState="Fetched" Label="ServiceTypesController" />
<Node Id="@407" Category="CodeSchema_Method" Bounds="260.178906821563,-963.883632083025,117.663333333333,25.96" CodeSchemaProperty_IsConstructor="True" CodeSchemaProperty_IsPublic="True" CodeSchemaProperty_IsSpecialName="True" DelayedCrossGroupLinksState="Fetched" Label="UsersController" />
<Node Id="@408" Category="CodeSchema_Method" Bounds="-27.9180684795434,-969.1587785674,56.11,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="Fetched" Label="Edit" />
<Node Id="@409" Category="CodeSchema_Method" Bounds="-512.71170729889,-1074.80359043979,77.8666666666668,25.96" CodeSchemaProperty_IsProtected="True" CodeSchemaProperty_IsVirtual="True" DelayedCrossGroupLinksState="NotFetched" Label="Dispose" />
<Node Id="@410" Category="CodeSchema_Method" Bounds="-62.048827568834,-760.924642252685,77.8666666666667,25.96" CodeSchemaProperty_IsProtected="True" CodeSchemaProperty_IsVirtual="True" DelayedCrossGroupLinksState="NotFetched" Label="Dispose" />
<Node Id="@411" Category="CodeSchema_Method" Bounds="407.84233109728,-963.883632083025,77.8666666666667,25.96" CodeSchemaProperty_IsProtected="True" CodeSchemaProperty_IsVirtual="True" DelayedCrossGroupLinksState="NotFetched" Label="Dispose" />
<Node Id="@412" Category="CodeSchema_Method" Bounds="-1379.65252618724,-1074.80359043979,70.3299999999999,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="Fetched" Label="Create" />
<Node Id="@413" Category="CodeSchema_Method" Bounds="-987.909627568834,-760.924642252685,70.33,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="Fetched" Label="Create" />
<Node Id="@415" Category="CodeSchema_Method" Bounds="159.962123272573,-963.883632083025,70.2166666666667,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Delete" />
<Node Id="@416" Category="CodeSchema_Method" Bounds="-270.011610756562,-963.883632083025,125.983333333333,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="DeleteConfirmed" />
<Node Id="@417" Category="CodeSchema_Method" Bounds="58.1920293292945,-982.361232180681,71.77,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Details" />
<Node Id="@418" Category="CodeSchema_Method" Bounds="-114.028168272024,-963.883632083025,56.11,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Edit" />
<Node Id="@419" Category="CodeSchema_Method" Bounds="-763.528613019918,-1074.80359043979,64.8333333333334,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Index" />
<Node Id="@42" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Transactions.dll" Group="Collapsed" Label="System.Transactions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@420" Category="CodeSchema_Method" Bounds="-1051.62553399974,-1074.80359043979,56.1099999999998,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Edit" />
<Node Id="@421" Category="CodeSchema_Method" Bounds="-615.532660902167,-760.924642252685,56.11,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Edit" />
<Node Id="@422" Category="CodeSchema_Method" Bounds="-364.845042763398,-963.883632083025,64.8333333333334,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="NotFetched" Label="Index" />
<Node Id="@423" Category="CodeSchema_Field" Bounds="-941.912037905986,-1018.84356846713,56.1,25.96" CodeSchemaProperty_IsPrivate="True" DelayedCrossGroupLinksState="Fetched" Label="_db" />
<Node Id="@424" Category="CodeSchema_Field" Bounds="-514.934724950903,-704.964642252685,56.0999999999999,25.96" CodeSchemaProperty_IsPrivate="True" DelayedCrossGroupLinksState="Fetched" Label="_db" />
<Node Id="@425" Category="CodeSchema_Field" Bounds="28.3471758899635,-907.923610110368,56.1,25.96" CodeSchemaProperty_IsPrivate="True" DelayedCrossGroupLinksState="Fetched" Label="_db" />
<Node Id="@426" Category="CodeSchema_Property" Bounds="184.84666041771,-22.0975669488502,151.445728120715,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ActionParameters" />
<Node Id="@427" Category="CodeSchema_Property" Bounds="113.596850193384,-192.124019886511,142.339061454048,25" CodeSchemaProperty_IsPublic="True" CodeSchemaProperty_IsVirtual="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ApplicationUser" />
<Node Id="@428" Category="CodeSchema_Property" Bounds="83.3599937510438,32.9024335119498,86.4190614540482,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="CarId" />
<Node Id="@429" Category="CodeSchema_Property" Bounds="200.61666041771,32.9024335119498,119.905728120715,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="CustomerId" />
<Node Id="@430" Category="CodeSchema_Method" Bounds="-327.435694235501,-760.924642252685,64.8333333333334,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="Fetched" Label="Index" />
<Node Id="@431" Category="CodeSchema_Property" Bounds="350.566660417711,32.9024335119498,106.005728120715,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ServiceId" />
<Node Id="@432" Category="CodeSchema_Property" Bounds="100.40351686005,-247.124020347311,92.4957281207149,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="UserId" />
<Node Id="@44" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.ServiceProcess.dll" Group="Collapsed" Label="System.ServiceProcess.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@46" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Windows, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Windows.dll" Group="Collapsed" Label="System.Windows.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@48" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Net.dll" Group="Collapsed" Label="System.Net.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@50" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Security.dll" Group="Collapsed" Label="System.Security.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@51" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Alejandro\.nuget\packages\microsoft.visualstudio.web.codegeneration.design\2.1.1\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll" Group="Collapsed" Label="dotnet-aspnet-codegenerator-design.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@52" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.dll" Group="Collapsed" Label="Microsoft.AspNetCore.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@53" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.antiforgery\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Antiforgery.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Antiforgery.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@54" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@55" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Abstractions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@56" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication.cookies\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Cookies.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.Cookies.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@57" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication.core\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Core.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@58" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication.facebook\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Facebook.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.Facebook.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@59" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication.google\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Google.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.Google.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@6" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Web.dll" Group="Collapsed" Label="System.Web.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@60" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication.jwtbearer\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.JwtBearer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@61" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@62" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication.oauth\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.OAuth.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.OAuth.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@63" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication.openidconnect\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.OpenIdConnect.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.OpenIdConnect.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@64" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication.twitter\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Twitter.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.Twitter.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@65" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authentication.wsfederation\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.WsFederation.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.WsFederation.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@66" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authorization\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authorization.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authorization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@67" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.authorization.policy\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authorization.Policy.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authorization.Policy.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@68" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.connections.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Connections.Abstractions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Connections.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@69" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.cookiepolicy\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.CookiePolicy.dll" Group="Collapsed" Label="Microsoft.AspNetCore.CookiePolicy.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@70" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.cors\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Cors.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Cors.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@71" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.cryptography.internal\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Cryptography.Internal.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Cryptography.Internal.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@72" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.cryptography.keyderivation\2.1.1\lib\netcoreapp2.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Cryptography.KeyDerivation.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@73" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.dataprotection\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.dll" Group="Collapsed" Label="Microsoft.AspNetCore.DataProtection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@74" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.dataprotection.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.Abstractions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.DataProtection.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@75" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.dataprotection.extensions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.Extensions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.DataProtection.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />