-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodeMap1.dgml
5011 lines (5011 loc) · 528 KB
/
CodeMap1.dgml
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="(@767 Namespace=::)" Category="CodeSchema_Namespace" Bounds="-739.195897343099,72.2786758554183,63.5066666666667,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="::" />
<Node Id="@10" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\system.memory.data\1.0.2\lib\netstandard2.0\System.Memory.Data.dll" Group="Collapsed" Label="System.Memory.Data.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@100" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Configuration.KeyPerFile, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@102" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Logging.Console, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@104" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Console, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Console.dll" Group="Collapsed" Label="System.Console.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@106" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.ValueTuple.dll" Group="Collapsed" Label="System.ValueTuple.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@108" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.Schedule, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.schedule\22.1.38\lib\net7.0\Syncfusion.Blazor.Schedule.dll" Group="Collapsed" Label="Syncfusion.Blazor.Schedule.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@110" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Dynamic.Runtime, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Dynamic.Runtime.dll" Group="Collapsed" Label="System.Dynamic.Runtime.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@112" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.dll" Group="Collapsed" Label="System.Runtime.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@114" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Razor.Runtime, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@116" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Rest.ClientRuntime, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.rest.clientruntime\2.3.21\lib\netstandard2.0\Microsoft.Rest.ClientRuntime.dll" Group="Collapsed" Label="Microsoft.Rest.ClientRuntime.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@118" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Configuration.CommandLine, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@12" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Metadata, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.metadata\7.0.9\lib\net7.0\Microsoft.AspNetCore.Metadata.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Metadata.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@120" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.VisualBasic.Core, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\Microsoft.VisualBasic.Core.dll" Group="Collapsed" Label="Microsoft.VisualBasic.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@122" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@124" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Hangfire.Core, Version=1.8.3.0, Culture=neutral, PublicKeyToken=null" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\hangfire.core\1.8.3\lib\netstandard2.0\Hangfire.Core.dll" Group="Collapsed" Label="Hangfire.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@126" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Azure.Core, Version=1.25.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\azure.core\1.25.0\lib\net5.0\Azure.Core.dll" Group="Collapsed" Label="Azure.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@128" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Server.Kestrel.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\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="@130" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="FluentEmail.Core, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\jcamp.fluentemail.core\3.2.0\lib\net6.0\FluentEmail.Core.dll" Group="Collapsed" Label="FluentEmail.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@132" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Core.dll" Group="Collapsed" Label="System.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@134" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Authentication.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@136" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.SignalR.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@138" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.Core, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.core\22.1.38\lib\net7.0\Syncfusion.Blazor.Core.dll" Group="Collapsed" Label="Syncfusion.Blazor.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@14" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Reflection.Metadata, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Reflection.Metadata.dll" Group="Collapsed" Label="System.Reflection.Metadata.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@140" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.PdfViewer.AspNet.Core, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.pdfviewer.aspnet.core.windows\22.1.38\lib\net6.0\Syncfusion.PdfViewer.AspNet.Core.dll" Group="Collapsed" Label="Syncfusion.PdfViewer.AspNet.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@142" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.SignalR.Client.Core, Version=7.0.9.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.signalr.client.core\7.0.9\lib\net7.0\Microsoft.AspNetCore.SignalR.Client.Core.dll" Group="Collapsed" Label="Microsoft.AspNetCore.SignalR.Client.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@144" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Identity.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@146" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.EntityFrameworkCore, Version=7.0.9.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.entityframeworkcore\7.0.9\lib\net6.0\Microsoft.EntityFrameworkCore.dll" Group="Collapsed" Label="Microsoft.EntityFrameworkCore.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@148" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="LazyCache.AspNetCore, Version=2.4.0.174, Culture=neutral, PublicKeyToken=null" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\lazycache.aspnetcore\2.4.0\lib\netstandard2.0\LazyCache.AspNetCore.dll" Group="Collapsed" Label="LazyCache.AspNetCore.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@150" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.ApplicationInsights.AspNetCore, Version=2.21.0.429, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.applicationinsights.aspnetcore\2.21.0\lib\netstandard2.0\Microsoft.ApplicationInsights.AspNetCore.dll" Group="Collapsed" Label="Microsoft.ApplicationInsights.AspNetCore.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@152" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.dll" Group="Collapsed" Label="Microsoft.AspNetCore.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@154" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\WindowsBase.dll" Group="Collapsed" Label="WindowsBase.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@156" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Identity.Web.Certificate, Version=2.13.0.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identity.web.certificate\2.13.0\lib\net7.0\Microsoft.Identity.Web.Certificate.dll" Group="Collapsed" Label="Microsoft.Identity.Web.Certificate.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@158" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Rewrite, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Rewrite.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Rewrite.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@16" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Cryptography.ProtectedData, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\system.security.cryptography.protecteddata\6.0.0\lib\net6.0\System.Security.Cryptography.ProtectedData.dll" Group="Collapsed" Label="System.Security.Cryptography.ProtectedData.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@160" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.FileProviders.Composite, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@162" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Cryptography.Cng, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Security.Cryptography.Cng.dll" Group="Collapsed" Label="System.Security.Cryptography.Cng.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@164" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.FileSystemGlobbing, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.FileSystemGlobbing.dll" Group="Collapsed" Label="Microsoft.Extensions.FileSystemGlobbing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@166" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Diagnostics.Tracing, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Diagnostics.Tracing.dll" Group="Collapsed" Label="System.Diagnostics.Tracing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@168" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Threading, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Threading.dll" Group="Collapsed" Label="System.Threading.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@170" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Text.Encoding, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Text.Encoding.dll" Group="Collapsed" Label="System.Text.Encoding.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@172" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Cryptography.Encoding, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Security.Cryptography.Encoding.dll" Group="Collapsed" Label="System.Security.Cryptography.Encoding.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@174" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.Packaging, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\system.io.packaging\6.0.0\lib\net6.0\System.IO.Packaging.dll" Group="Collapsed" Label="System.IO.Packaging.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@176" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.IdentityModel.Logging, Version=6.32.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identitymodel.logging\6.32.0\lib\net6.0\Microsoft.IdentityModel.Logging.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Logging.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@178" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.IdentityModel.Logging, Version=6.24.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identitymodel.logging\6.24.0\lib\net6.0\Microsoft.IdentityModel.Logging.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Logging.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@18" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.ServiceModel.Web.dll" Group="Collapsed" Label="System.ServiceModel.Web.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@180" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Logging, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.Logging.dll" Group="Collapsed" Label="Microsoft.Extensions.Logging.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@182" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.HttpLogging, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.HttpLogging.dll" Group="Collapsed" Label="Microsoft.AspNetCore.HttpLogging.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@184" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.ResponseCaching, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.ResponseCaching.dll" Group="Collapsed" Label="Microsoft.AspNetCore.ResponseCaching.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@186" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.OutputCaching, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.OutputCaching.dll" Group="Collapsed" Label="Microsoft.AspNetCore.OutputCaching.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@188" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net.Ping, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Net.Ping.dll" Group="Collapsed" Label="System.Net.Ping.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@190" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.HostFiltering, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.HostFiltering.dll" Group="Collapsed" Label="Microsoft.AspNetCore.HostFiltering.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@192" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.SecureString, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Security.SecureString.dll" Group="Collapsed" Label="System.Security.SecureString.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@194" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Licensing, Version=22.1.38.0, Culture=neutral, PublicKeyToken=632609b4d040f6b4" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.licensing\22.1.38\lib\net7.0\Syncfusion.Licensing.dll" Group="Collapsed" Label="Syncfusion.Licensing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@196" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.RateLimiting, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.RateLimiting.dll" Group="Collapsed" Label="Microsoft.AspNetCore.RateLimiting.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@198" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Threading.RateLimiting, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\System.Threading.RateLimiting.dll" Group="Collapsed" Label="System.Threading.RateLimiting.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@2" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Formats.Asn1, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Formats.Asn1.dll" Group="Collapsed" Label="System.Formats.Asn1.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@20" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Web.dll" Group="Collapsed" Label="System.Web.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@200" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Hosting, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Hosting.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Hosting.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@202" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Hosting, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.Hosting.dll" Group="Collapsed" Label="Microsoft.Extensions.Hosting.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@204" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Routing, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Routing.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Routing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@206" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Localization.Routing, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Localization.Routing.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Localization.Routing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@208" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Drawing.dll" Group="Collapsed" Label="System.Drawing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@210" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\nlog\5.2.2\lib\netstandard2.0\NLog.dll" Group="Collapsed" Label="NLog.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@212" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Logging.EventLog, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.Logging.EventLog.dll" Group="Collapsed" Label="Microsoft.Extensions.Logging.EventLog.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@214" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Diagnostics.EventLog, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\System.Diagnostics.EventLog.dll" Group="Collapsed" Label="System.Diagnostics.EventLog.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@216" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Logging.Debug, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@218" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Diagnostics.Debug, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Diagnostics.Debug.dll" Group="Collapsed" Label="System.Diagnostics.Debug.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@22" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Fluxor.Blazor.Web, Version=5.9.0.0, Culture=neutral, PublicKeyToken=6e6412da1d5ce8eb" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\fluxor.blazor.web\5.9.0\lib\net7.0\Fluxor.Blazor.Web.dll" Group="Collapsed" Label="Fluxor.Blazor.Web.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@220" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml.XPath, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Xml.XPath.dll" Group="Collapsed" Label="System.Xml.XPath.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@222" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Authentication.OAuth, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@224" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.Compression.Brotli, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.Compression.Brotli.dll" Group="Collapsed" Label="System.IO.Compression.Brotli.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@226" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Configuration.Ini, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@228" Category="CodeSchema_Assembly" Bounds="67.7256790149565,179.001746200957,193.766666666667,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" FilePath="$(bb9682b0-4527-4ba7-bafd-b3ea90cf77a6.OutputPath)" Group="Collapsed" Label="HVACTopGun.Api.dll">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@230" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.OpenApi, Version=7.0.5.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.openapi\7.0.5\lib\net7.0\Microsoft.AspNetCore.OpenApi.dll" Group="Collapsed" Label="Microsoft.AspNetCore.OpenApi.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@232" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.OpenApi, Version=1.4.3.0, Culture=neutral, PublicKeyToken=3f5743946376f042" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.openapi\1.4.3\lib\netstandard2.0\Microsoft.OpenApi.dll" Group="Collapsed" Label="Microsoft.OpenApi.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@234" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Identity.Web.UI, Version=2.12.4.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identity.web.ui\2.12.4\lib\net5.0\Microsoft.Identity.Web.UI.dll" Group="Collapsed" Label="Microsoft.Identity.Web.UI.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@236" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Authentication.AzureADB2C.UI, Version=6.0.20.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.authentication.azureadb2c.ui\6.0.20\lib\net6.0\Microsoft.AspNetCore.Authentication.AzureADB2C.UI.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.AzureADB2C.UI.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@238" Category="CodeSchema_Assembly" Bounds="428.42227006514,-297.721724132728,185.936666666667,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" FilePath="$(4196f0b3-d666-43af-9189-95bc208d5b63.OutputPath)" Group="Collapsed" Label="HVACTopGun.UI.dll">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@24" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Text.Encodings.Web, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.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="@240" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Swashbuckle.AspNetCore.SwaggerUI, Version=6.4.0.0, Culture=neutral, PublicKeyToken=4232c99127b3c254" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\swashbuckle.aspnetcore.swaggerui\6.4.0\lib\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll" Group="Collapsed" Label="Swashbuckle.AspNetCore.SwaggerUI.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@242" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.FileProviders.Physical, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@244" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Transactions.Local, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Transactions.Local.dll" Group="Collapsed" Label="System.Transactions.Local.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@246" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.EntityFrameworkCore.Relational, Version=7.0.9.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.entityframeworkcore.relational\7.0.9\lib\net6.0\Microsoft.EntityFrameworkCore.Relational.dll" Group="Collapsed" Label="Microsoft.EntityFrameworkCore.Relational.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@248" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Cryptography.Internal, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.cryptography.internal\7.0.9\lib\net7.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="@250" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Principal, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Security.Principal.dll" Group="Collapsed" Label="System.Security.Principal.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@252" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Identity.Client.Extensions.Msal, Version=2.19.3.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identity.client.extensions.msal\2.19.3\lib\netcoreapp2.1\Microsoft.Identity.Client.Extensions.Msal.dll" Group="Collapsed" Label="Microsoft.Identity.Client.Extensions.Msal.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@254" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ObjectModel, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.ObjectModel.dll" Group="Collapsed" Label="System.ObjectModel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@256" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ComponentModel, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.ComponentModel.dll" Group="Collapsed" Label="System.ComponentModel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@258" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.DependencyModel, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.extensions.dependencymodel\6.0.0\lib\netstandard2.0\Microsoft.Extensions.DependencyModel.dll" Group="Collapsed" Label="Microsoft.Extensions.DependencyModel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@26" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Components.Web, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.components.web\7.0.9\lib\net7.0\Microsoft.AspNetCore.Components.Web.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Components.Web.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@260" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.DependencyModel, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.extensions.dependencymodel\7.0.0\lib\net7.0\Microsoft.Extensions.DependencyModel.dll" Group="Collapsed" Label="Microsoft.Extensions.DependencyModel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@262" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Linq.Parallel, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Linq.Parallel.dll" Group="Collapsed" Label="System.Linq.Parallel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@264" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Threading.Tasks.Parallel, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Threading.Tasks.Parallel.dll" Group="Collapsed" Label="System.Threading.Tasks.Parallel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@266" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AI.ServerTelemetryChannel, Version=2.21.0.429, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.applicationinsights.windowsserver.telemetrychannel\2.21.0\lib\netstandard2.0\Microsoft.AI.ServerTelemetryChannel.dll" Group="Collapsed" Label="Microsoft.AI.ServerTelemetryChannel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@268" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Server.Kestrel, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@270" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net.Mail, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Net.Mail.dll" Group="Collapsed" Label="System.Net.Mail.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@272" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Xml.dll" Group="Collapsed" Label="System.Xml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@274" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Configuration.Xml, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@276" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.Serialization.Xml, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.Serialization.Xml.dll" Group="Collapsed" Label="System.Runtime.Serialization.Xml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@278" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc.Formatters.Xml, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@28" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Identity.Web, Version=2.13.0.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identity.web\2.13.0\lib\net7.0\Microsoft.Identity.Web.dll" Group="Collapsed" Label="Microsoft.Identity.Web.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@280" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Cryptography.Xml, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@282" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="ClosedXML, Version=0.102.0.0, Culture=neutral, PublicKeyToken=fd1eb21b62ae805b" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\closedxml\0.102.0\lib\netstandard2.1\ClosedXML.dll" Group="Collapsed" Label="ClosedXML.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@284" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="DocumentFormat.OpenXml, Version=2.16.0.0, Culture=neutral, PublicKeyToken=8fb06cb64d019a17" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\documentformat.openxml\2.16.0\lib\netstandard2.0\DocumentFormat.OpenXml.dll" Group="Collapsed" Label="DocumentFormat.OpenXml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@286" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net.WebSockets.WebSocketProtocol, Version=4.0.0.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\system.net.websockets.websocketprotocol\4.5.3\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="@288" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Threading.ThreadPool, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Threading.ThreadPool.dll" Group="Collapsed" Label="System.Threading.ThreadPool.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@290" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.ObjectPool, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.ObjectPool.dll" Group="Collapsed" Label="Microsoft.Extensions.ObjectPool.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@292" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.FileSystem.AccessControl, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.FileSystem.AccessControl.dll" Group="Collapsed" Label="System.IO.FileSystem.AccessControl.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@294" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.Pipes.AccessControl, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.Pipes.AccessControl.dll" Group="Collapsed" Label="System.IO.Pipes.AccessControl.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@296" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.AccessControl, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Security.AccessControl.dll" Group="Collapsed" Label="System.Security.AccessControl.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@298" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Cryptography.OpenSsl, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Security.Cryptography.OpenSsl.dll" Group="Collapsed" Label="System.Security.Cryptography.OpenSsl.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@30" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\mscorlib.dll" Group="Collapsed" Label="mscorlib.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@300" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.UnmanagedMemoryStream, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.UnmanagedMemoryStream.dll" Group="Collapsed" Label="System.IO.UnmanagedMemoryStream.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@302" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.Diagram, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.diagram\22.1.38\lib\net7.0\Syncfusion.Blazor.Diagram.dll" Group="Collapsed" Label="Syncfusion.Blazor.Diagram.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@304" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.Compression.FileSystem.dll" Group="Collapsed" Label="System.IO.Compression.FileSystem.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@306" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.FileSystem, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.FileSystem.dll" Group="Collapsed" Label="System.IO.FileSystem.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@308" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.dll" Group="Collapsed" Label="System.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@310" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.Kanban, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.kanban\22.1.38\lib\net7.0\Syncfusion.Blazor.Kanban.dll" Group="Collapsed" Label="Syncfusion.Blazor.Kanban.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@312" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Swashbuckle.AspNetCore.SwaggerGen, Version=6.4.0.0, Culture=neutral, PublicKeyToken=d84d99fb0135530a" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\swashbuckle.aspnetcore.swaggergen\6.4.0\lib\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll" Group="Collapsed" Label="Swashbuckle.AspNetCore.SwaggerGen.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@314" Category="CodeSchema_Assembly" Bounds="426.69921234829,179.001746200957,223.62,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" FilePath="$(49a1a9e1-0691-48d0-9ad9-3ec5a44cb601.OutputPath)" Group="Collapsed" Label="HVACTopGun.Domain.dll">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@316" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.Compression, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.Compression.dll" Group="Collapsed" Label="System.IO.Compression.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@318" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.RequestDecompression, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.RequestDecompression.dll" Group="Collapsed" Label="Microsoft.AspNetCore.RequestDecompression.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@32" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Collections.NonGeneric, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Collections.NonGeneric.dll" Group="Collapsed" Label="System.Collections.NonGeneric.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@320" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.ResponseCompression, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.ResponseCompression.dll" Group="Collapsed" Label="Microsoft.AspNetCore.ResponseCompression.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@322" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Session, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Session.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Session.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@324" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Authentication, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Authentication.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authentication.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@326" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="FluentValidation, Version=11.0.0.0, Culture=neutral, PublicKeyToken=7de548da2fbae0f0" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\fluentvalidation\11.6.0\lib\net7.0\FluentValidation.dll" Group="Collapsed" Label="FluentValidation.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@328" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.InteropServices.RuntimeInformation, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.InteropServices.RuntimeInformation.dll" Group="Collapsed" Label="System.Runtime.InteropServices.RuntimeInformation.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@330" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net.NetworkInformation, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Net.NetworkInformation.dll" Group="Collapsed" Label="System.Net.NetworkInformation.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@332" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Reflection.Emit.ILGeneration, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Reflection.Emit.ILGeneration.dll" Group="Collapsed" Label="System.Reflection.Emit.ILGeneration.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@334" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Server.IISIntegration, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@336" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Logging.Configuration, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@338" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Configuration.dll" Group="Collapsed" Label="System.Configuration.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@34" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\Microsoft.VisualBasic.dll" Group="Collapsed" Label="Microsoft.VisualBasic.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@340" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Configuration, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.Configuration.dll" Group="Collapsed" Label="Microsoft.Extensions.Configuration.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@342" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Cryptography.KeyDerivation, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@344" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Globalization, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Globalization.dll" Group="Collapsed" Label="System.Globalization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@346" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc.Localization, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@348" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Localization, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Localization.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Localization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@350" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Localization, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.Localization.dll" Group="Collapsed" Label="Microsoft.Extensions.Localization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@352" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.Serialization.dll" Group="Collapsed" Label="System.Runtime.Serialization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@354" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Xml.Serialization.dll" Group="Collapsed" Label="System.Xml.Serialization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@356" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Authorization, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.authorization\7.0.9\lib\net7.0\Microsoft.AspNetCore.Authorization.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Authorization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@358" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Components.Authorization, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Components.Authorization.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Components.Authorization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@36" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net.Quic, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Net.Quic.dll" Group="Collapsed" Label="System.Net.Quic.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@360" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.DependencyInjection, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.DependencyInjection.dll" Group="Collapsed" Label="Microsoft.Extensions.DependencyInjection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@362" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="AutoMapper.Extensions.Microsoft.DependencyInjection, Version=12.0.0.0, Culture=neutral, PublicKeyToken=e767ac9c89543656" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\automapper.extensions.microsoft.dependencyinjection\12.0.1\lib\netstandard2.1\AutoMapper.Extensions.Microsoft.DependencyInjection.dll" Group="Collapsed" Label="AutoMapper.Extensions.Microsoft.DependencyInjection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@364" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Reflection, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Reflection.dll" Group="Collapsed" Label="System.Reflection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@366" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net.WebHeaderCollection, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Net.WebHeaderCollection.dll" Group="Collapsed" Label="System.Net.WebHeaderCollection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@368" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.DataProtection, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.dataprotection\7.0.9\lib\net7.0\Microsoft.AspNetCore.DataProtection.dll" Group="Collapsed" Label="Microsoft.AspNetCore.DataProtection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@370" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Identity.Web.TokenAcquisition, Version=2.13.0.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identity.web.tokenacquisition\2.13.0\lib\net7.0\Microsoft.Identity.Web.TokenAcquisition.dll" Group="Collapsed" Label="Microsoft.Identity.Web.TokenAcquisition.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@372" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net.NameResolution, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Net.NameResolution.dll" Group="Collapsed" Label="System.Net.NameResolution.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@374" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Data.Common, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Data.Common.dll" Group="Collapsed" Label="System.Data.Common.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@376" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Drawing.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\system.drawing.common\6.0.0\lib\net6.0\System.Drawing.Common.dll" Group="Collapsed" Label="System.Drawing.Common.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@378" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.SignalR.Common, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.signalr.common\7.0.9\lib\net7.0\Microsoft.AspNetCore.SignalR.Common.dll" Group="Collapsed" Label="Microsoft.AspNetCore.SignalR.Common.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@38" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Server.Kestrel.Transport.Quic, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@380" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Azure.SignalR.Common, Version=1.21.4.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.azure.signalr\1.21.4\lib\net7.0\Microsoft.Azure.SignalR.Common.dll" Group="Collapsed" Label="Microsoft.Azure.SignalR.Common.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@382" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Http.Connections.Common, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.http.connections.common\7.0.9\lib\net7.0\Microsoft.AspNetCore.Http.Connections.Common.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Http.Connections.Common.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@384" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.DataVizCommon, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.datavizcommon\22.1.38\lib\net7.0\Syncfusion.Blazor.DataVizCommon.dll" Group="Collapsed" Label="Syncfusion.Blazor.DataVizCommon.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@386" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Configuration.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@388" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.Serialization.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.Serialization.Json.dll" Group="Collapsed" Label="System.Runtime.Serialization.Json.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@390" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net.Http.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Net.Http.Json.dll" Group="Collapsed" Label="System.Net.Http.Json.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@392" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.SignalR.Protocols.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.signalr.protocols.json\7.0.9\lib\net7.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="@394" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc.Formatters.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@396" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\newtonsoft.json\13.0.2\lib\net6.0\Newtonsoft.Json.dll" Group="Collapsed" Label="Newtonsoft.Json.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@398" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Text.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Text.Json.dll" Group="Collapsed" Label="System.Text.Json.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@4" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="StarkbankEcdsa, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b2e6337a5d77bfbc" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\starkbank-ecdsa\1.3.3\lib\netstandard2.1\StarkbankEcdsa.dll" Group="Collapsed" Label="StarkbankEcdsa.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@40" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.CompilerServices.VisualC, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.CompilerServices.VisualC.dll" Group="Collapsed" Label="System.Runtime.CompilerServices.VisualC.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@400" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.FileSystem.DriveInfo, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.FileSystem.DriveInfo.dll" Group="Collapsed" Label="System.IO.FileSystem.DriveInfo.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@402" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Diagnostics.FileVersionInfo, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Diagnostics.FileVersionInfo.dll" Group="Collapsed" Label="System.Diagnostics.FileVersionInfo.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@404" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.dll" Group="Collapsed" Label="System.IO.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@406" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.TreeMap, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.treemap\22.1.38\lib\net7.0\Syncfusion.Blazor.TreeMap.dll" Group="Collapsed" Label="Syncfusion.Blazor.TreeMap.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@408" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.JSInterop, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.jsinterop\7.0.9\lib\net7.0\Microsoft.JSInterop.dll" Group="Collapsed" Label="Microsoft.JSInterop.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@410" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="SkiaSharp, Version=2.88.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\skiasharp\2.88.2\lib\net6.0\SkiaSharp.dll" Group="Collapsed" Label="SkiaSharp.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@412" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.CodeAnalysis.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.codeanalysis.csharp\4.0.0\lib\netcoreapp3.1\Microsoft.CodeAnalysis.CSharp.dll" Group="Collapsed" Label="Microsoft.CodeAnalysis.CSharp.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@414" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.CSharp, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\Microsoft.CSharp.dll" Group="Collapsed" Label="Microsoft.CSharp.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@416" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="HarfBuzzSharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\harfbuzzsharp\2.8.2.2\lib\net6.0\HarfBuzzSharp.dll" Group="Collapsed" Label="HarfBuzzSharp.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@418" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Cryptography.Csp, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Security.Cryptography.Csp.dll" Group="Collapsed" Label="System.Security.Cryptography.Csp.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@42" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ComponentModel.EventBasedAsync, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.ComponentModel.EventBasedAsync.dll" Group="Collapsed" Label="System.ComponentModel.EventBasedAsync.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@420" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Http.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Http.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@422" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.Http.dll" Group="Collapsed" Label="Microsoft.Extensions.Http.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@424" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Net.Http.dll" Group="Collapsed" Label="System.Net.Http.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@426" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Xml.Linq.dll" Group="Collapsed" Label="System.Xml.Linq.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@428" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Linq, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Linq.dll" Group="Collapsed" Label="System.Linq.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@430" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.ProgressBar, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.progressbar\22.1.38\lib\net7.0\Syncfusion.Blazor.ProgressBar.dll" Group="Collapsed" Label="Syncfusion.Blazor.ProgressBar.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@432" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Formats.Tar, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Formats.Tar.dll" Group="Collapsed" Label="System.Formats.Tar.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@434" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Resources.Reader, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Resources.Reader.dll" Group="Collapsed" Label="System.Resources.Reader.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@436" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.Loader, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.Loader.dll" Group="Collapsed" Label="System.Runtime.Loader.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@438" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.FileManager.PhysicalFileProvider, Version=22.1.38.0, Culture=neutral, PublicKeyToken=null" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.filemanager.physicalfileprovider\22.1.38\lib\net7.0\Syncfusion.Blazor.FileManager.PhysicalFileProvider.dll" Group="Collapsed" Label="Syncfusion.Blazor.FileManager.PhysicalFileProvider.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@44" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Mvc.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Mvc.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@440" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.QueryBuilder, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.querybuilder\22.1.38\lib\net7.0\Syncfusion.Blazor.QueryBuilder.dll" Group="Collapsed" Label="Syncfusion.Blazor.QueryBuilder.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@442" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Configuration.Binder, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@444" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Resources.ResourceManager, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Resources.ResourceManager.dll" Group="Collapsed" Label="System.Resources.ResourceManager.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@446" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.FileManager, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.filemanager\22.1.38\lib\net7.0\Syncfusion.Blazor.FileManager.dll" Group="Collapsed" Label="Syncfusion.Blazor.FileManager.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@448" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Swashbuckle.AspNetCore.Swagger, Version=6.4.0.0, Culture=neutral, PublicKeyToken=62657d7474907593" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\swashbuckle.aspnetcore.swagger\6.4.0\lib\net6.0\Swashbuckle.AspNetCore.Swagger.dll" Group="Collapsed" Label="Swashbuckle.AspNetCore.Swagger.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@450" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.FileSystem.Watcher, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.FileSystem.Watcher.dll" Group="Collapsed" Label="System.IO.FileSystem.Watcher.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@452" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Threading.Timer, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Threading.Timer.dll" Group="Collapsed" Label="System.Threading.Timer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@454" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Diagnostics.TextWriterTraceListener, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Diagnostics.TextWriterTraceListener.dll" Group="Collapsed" Label="System.Diagnostics.TextWriterTraceListener.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@456" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net.HttpListener, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Net.HttpListener.dll" Group="Collapsed" Label="System.Net.HttpListener.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@458" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.Spinner, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.spinner\22.1.38\lib\net7.0\Syncfusion.Blazor.Spinner.dll" Group="Collapsed" Label="Syncfusion.Blazor.Spinner.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@46" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Threading.Thread, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Threading.Thread.dll" Group="Collapsed" Label="System.Threading.Thread.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@460" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Dapper, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\dapper\2.0.143\lib\net5.0\Dapper.dll" Group="Collapsed" Label="Dapper.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@462" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="AutoMapper, Version=12.0.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\automapper\12.0.1\lib\netstandard2.1\AutoMapper.dll" Group="Collapsed" Label="AutoMapper.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@464" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Authentication.JwtBearer, Version=7.0.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.authentication.jwtbearer\7.0.1\lib\net7.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="@466" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Authentication.JwtBearer, Version=7.0.9.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.authentication.jwtbearer\7.0.9\lib\net7.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="@468" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc.ApiExplorer, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@470" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="XLParser, Version=1.5.2.0, Culture=neutral, PublicKeyToken=63397e1e46bb91b4" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\xlparser\1.5.2\lib\netstandard1.6\XLParser.dll" Group="Collapsed" Label="XLParser.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@472" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Resources.Writer, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Resources.Writer.dll" Group="Collapsed" Label="System.Resources.Writer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@474" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml.ReaderWriter, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Xml.ReaderWriter.dll" Group="Collapsed" Label="System.Xml.ReaderWriter.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@476" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Diagnostics.PerformanceCounter, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\system.diagnostics.performancecounter\4.7.0\ref\netstandard2.0\System.Diagnostics.PerformanceCounter.dll" Group="Collapsed" Label="System.Diagnostics.PerformanceCounter.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@478" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ComponentModel.TypeConverter, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.ComponentModel.TypeConverter.dll" Group="Collapsed" Label="System.ComponentModel.TypeConverter.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@48" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.FileProviders.Embedded, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@480" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.SqlServer.Server, Version=1.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.sqlserver.server\1.0.0\lib\netstandard2.0\Microsoft.SqlServer.Server.dll" Group="Collapsed" Label="Microsoft.SqlServer.Server.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@482" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Components.Server, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Components.Server.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Components.Server.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@484" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Components.WebAssembly.Server, Version=7.0.9.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.components.webassembly.server\7.0.9\lib\net7.0\Microsoft.AspNetCore.Components.WebAssembly.Server.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Components.WebAssembly.Server.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@486" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.EntityFrameworkCore.SqlServer, Version=7.0.9.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.entityframeworkcore.sqlserver\7.0.9\lib\net6.0\Microsoft.EntityFrameworkCore.SqlServer.dll" Group="Collapsed" Label="Microsoft.EntityFrameworkCore.SqlServer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@488" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.PdfViewerServer, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.pdfviewerserver.windows\22.1.38\lib\net7.0\Syncfusion.Blazor.PdfViewerServer.dll" Group="Collapsed" Label="Syncfusion.Blazor.PdfViewerServer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@490" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AI.WindowsServer, Version=2.21.0.429, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.applicationinsights.windowsserver\2.21.0\lib\netstandard2.0\Microsoft.AI.WindowsServer.dll" Group="Collapsed" Label="Microsoft.AI.WindowsServer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@492" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.PdfViewer, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.pdfviewer\22.1.38\lib\net7.0\Syncfusion.Blazor.PdfViewer.dll" Group="Collapsed" Label="Syncfusion.Blazor.PdfViewer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@494" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml.XmlSerializer, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Xml.XmlSerializer.dll" Group="Collapsed" Label="System.Xml.XmlSerializer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@496" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.SignalR, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.SignalR.dll" Group="Collapsed" Label="Microsoft.AspNetCore.SignalR.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@498" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Azure.SignalR, Version=1.21.4.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.azure.signalr\1.21.4\lib\net7.0\Microsoft.Azure.SignalR.dll" Group="Collapsed" Label="Microsoft.Azure.SignalR.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@50" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Threading.Overlapped, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Threading.Overlapped.dll" Group="Collapsed" Label="System.Threading.Overlapped.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@500" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.RangeNavigator, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.rangenavigator\22.1.38\lib\net7.0\Syncfusion.Blazor.RangeNavigator.dll" Group="Collapsed" Label="Syncfusion.Blazor.RangeNavigator.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@502" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AI.PerfCounterCollector, Version=2.21.0.429, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.applicationinsights.perfcountercollector\2.21.0\lib\netstandard2.0\Microsoft.AI.PerfCounterCollector.dll" Group="Collapsed" Label="Microsoft.AI.PerfCounterCollector.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@504" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AI.EventCounterCollector, Version=2.21.0.429, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.applicationinsights.eventcountercollector\2.21.0\lib\netstandard2.0\Microsoft.AI.EventCounterCollector.dll" Group="Collapsed" Label="Microsoft.AI.EventCounterCollector.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@506" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AI.DependencyCollector, Version=2.21.0.429, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.applicationinsights.dependencycollector\2.21.0\lib\netstandard2.0\Microsoft.AI.DependencyCollector.dll" Group="Collapsed" Label="Microsoft.AI.DependencyCollector.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@508" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.InPlaceEditor, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.inplaceeditor\22.1.38\lib\net7.0\Syncfusion.Blazor.InPlaceEditor.dll" Group="Collapsed" Label="Syncfusion.Blazor.InPlaceEditor.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@510" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.RichTextEditor, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.richtexteditor\22.1.38\lib\net7.0\Syncfusion.Blazor.RichTextEditor.dll" Group="Collapsed" Label="Syncfusion.Blazor.RichTextEditor.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@512" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Fluxor, Version=5.9.0.0, Culture=neutral, PublicKeyToken=6e6412da1d5ce8eb" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\fluxor\5.9.0\lib\net7.0\Fluxor.dll" Group="Collapsed" Label="Fluxor.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@514" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc.Razor, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@516" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Razor, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Razor.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Razor.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@518" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="FluentEmail.Razor, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\jcamp.fluentemail.razor\3.2.0\lib\net6.0\FluentEmail.Razor.dll" Group="Collapsed" Label="FluentEmail.Razor.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@52" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Collections.Specialized, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Collections.Specialized.dll" Group="Collapsed" Label="System.Collections.Specialized.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@520" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.CodeAnalysis.Razor, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.codeanalysis.razor\6.0.0\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="@522" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="MediatR, Version=12.0.0.0, Culture=neutral, PublicKeyToken=bb9a41a5e8aaa7e2" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\mediatr\12.1.1\lib\net6.0\MediatR.dll" Group="Collapsed" Label="MediatR.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@524" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.Numerics, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.Numerics.dll" Group="Collapsed" Label="System.Runtime.Numerics.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@526" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Numerics.dll" Group="Collapsed" Label="System.Numerics.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@528" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.Intrinsics, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.Intrinsics.dll" Group="Collapsed" Label="System.Runtime.Intrinsics.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@530" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Identity.Web.Diagnostics, Version=2.13.0.0, Culture=neutral, PublicKeyToken=0a613f4dd989e8ae" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identity.web.diagnostics\2.13.0\lib\net7.0\Microsoft.Identity.Web.Diagnostics.dll" Group="Collapsed" Label="Microsoft.Identity.Web.Diagnostics.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@532" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Diagnostics, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Diagnostics.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Diagnostics.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@534" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Cryptography.Pkcs, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\system.security.cryptography.pkcs\7.0.2\lib\net7.0\System.Security.Cryptography.Pkcs.dll" Group="Collapsed" Label="System.Security.Cryptography.Pkcs.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@536" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.Grids, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.grid\22.1.38\lib\net7.0\Syncfusion.Blazor.Grids.dll" Group="Collapsed" Label="Syncfusion.Blazor.Grids.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@538" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.Cards, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.cards\22.1.38\lib\net7.0\Syncfusion.Blazor.Cards.dll" Group="Collapsed" Label="Syncfusion.Blazor.Cards.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@54" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="FluentEmail.SendGrid, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\jcamp.fluentemail.sendgrid\3.2.0\lib\net6.0\FluentEmail.SendGrid.dll" Group="Collapsed" Label="FluentEmail.SendGrid.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@540" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Bcl.AsyncInterfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.bcl.asyncinterfaces\1.1.1\ref\netstandard2.1\Microsoft.Bcl.AsyncInterfaces.dll" Group="Collapsed" Label="Microsoft.Bcl.AsyncInterfaces.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@542" Category="CodeSchema_Assembly" Bounds="871.977818201661,74.3895212683826,224.62,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" FilePath="$(faa2bf21-a5a1-452e-900f-b91f665f1ebe.OutputPath)" Group="Collapsed" Label="HVACTopGun.Services.dll">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@544" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.InteropServices, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.InteropServices.dll" Group="Collapsed" Label="System.Runtime.InteropServices.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@546" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.HttpOverrides, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.HttpOverrides.dll" Group="Collapsed" Label="Microsoft.AspNetCore.HttpOverrides.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@548" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Text.Encoding.CodePages, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Text.Encoding.CodePages.dll" Group="Collapsed" Label="System.Text.Encoding.CodePages.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@550" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc.RazorPages, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@552" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Authentication.Cookies, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@554" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.WebUtilities, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.WebUtilities.dll" Group="Collapsed" Label="Microsoft.AspNetCore.WebUtilities.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@556" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Configuration.EnvironmentVariables, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@558" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.Handles, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.Handles.dll" Group="Collapsed" Label="System.Runtime.Handles.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@56" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="SendGrid, Version=9.28.1.0, Culture=neutral, PublicKeyToken=4f047e93159395ca" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\sendgrid\9.28.1\lib\netstandard2.0\SendGrid.dll" Group="Collapsed" Label="SendGrid.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@560" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.StaticFiles, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.StaticFiles.dll" Group="Collapsed" Label="Microsoft.AspNetCore.StaticFiles.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@562" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.MemoryMappedFiles, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.MemoryMappedFiles.dll" Group="Collapsed" Label="System.IO.MemoryMappedFiles.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@564" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.Themes, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.themes\22.1.38\lib\net7.0\Syncfusion.Blazor.Themes.dll" Group="Collapsed" Label="Syncfusion.Blazor.Themes.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@566" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.Pipelines, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\System.IO.Pipelines.dll" Group="Collapsed" Label="System.IO.Pipelines.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@568" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.Pipes, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.Pipes.dll" Group="Collapsed" Label="System.IO.Pipes.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@570" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Identity.Stores, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@572" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Http.Features, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Http.Features.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Http.Features.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@574" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Features, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.extensions.features\7.0.9\lib\net7.0\Microsoft.Extensions.Features.dll" Group="Collapsed" Label="Microsoft.Extensions.Features.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@576" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc.ViewFeatures, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@578" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Azure.Security.KeyVault.Certificates, Version=4.1.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\azure.security.keyvault.certificates\4.1.0\lib\netstandard2.0\Azure.Security.KeyVault.Certificates.dll" Group="Collapsed" Label="Azure.Security.KeyVault.Certificates.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@58" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\netstandard.dll" Group="Collapsed" Label="netstandard.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@580" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Cryptography.X509Certificates, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Security.Cryptography.X509Certificates.dll" Group="Collapsed" Label="System.Security.Cryptography.X509Certificates.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@582" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Win32.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Win32.Primitives.dll" Group="Collapsed" Label="Microsoft.Win32.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@584" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Drawing.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Drawing.Primitives.dll" Group="Collapsed" Label="System.Drawing.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@586" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ComponentModel.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.ComponentModel.Primitives.dll" Group="Collapsed" Label="System.ComponentModel.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@588" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.FileSystem.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.IO.FileSystem.Primitives.dll" Group="Collapsed" Label="System.IO.FileSystem.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@590" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.Serialization.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.Serialization.Primitives.dll" Group="Collapsed" Label="System.Runtime.Serialization.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@592" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Reflection.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Reflection.Primitives.dll" Group="Collapsed" Label="System.Reflection.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@594" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.Primitives.dll" Group="Collapsed" Label="Microsoft.Extensions.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@596" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Net.Primitives.dll" Group="Collapsed" Label="System.Net.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@598" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Cryptography.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Security.Cryptography.Primitives.dll" Group="Collapsed" Label="System.Security.Cryptography.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@6" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Data.dll" Group="Collapsed" Label="System.Data.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@60" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Diagnostics.StackTrace, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Diagnostics.StackTrace.dll" Group="Collapsed" Label="System.Diagnostics.StackTrace.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@600" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Server.IIS, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Server.IIS.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Server.IIS.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@602" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.CodeAnalysis, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.codeanalysis.common\4.0.0\lib\netcoreapp3.1\Microsoft.CodeAnalysis.dll" Group="Collapsed" Label="Microsoft.CodeAnalysis.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@604" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Diagnostics.HealthChecks, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Diagnostics.HealthChecks.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@606" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Diagnostics.HealthChecks, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.Diagnostics.HealthChecks.dll" Group="Collapsed" Label="Microsoft.Extensions.Diagnostics.HealthChecks.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@608" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Threading.Tasks, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Threading.Tasks.dll" Group="Collapsed" Label="System.Threading.Tasks.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@610" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Threading.Channels, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Threading.Channels.dll" Group="Collapsed" Label="System.Threading.Channels.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@612" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.IdentityModel.Protocols, Version=6.32.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identitymodel.protocols\6.32.0\lib\net6.0\Microsoft.IdentityModel.Protocols.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Protocols.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@614" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.IdentityModel.Protocols, Version=6.24.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identitymodel.protocols\6.24.0\lib\net6.0\Microsoft.IdentityModel.Protocols.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Protocols.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@616" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Azure.SignalR.Protocols, Version=1.21.4.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.azure.signalr.protocols\1.21.4\lib\netstandard2.0\Microsoft.Azure.SignalR.Protocols.dll" Group="Collapsed" Label="Microsoft.Azure.SignalR.Protocols.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@618" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Diagnostics.Tools, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Diagnostics.Tools.dll" Group="Collapsed" Label="System.Diagnostics.Tools.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@62" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Diagnostics.DiagnosticSource, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Diagnostics.DiagnosticSource.dll" Group="Collapsed" Label="System.Diagnostics.DiagnosticSource.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@620" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Fluxor.Blazor.Web.ReduxDevTools, Version=5.9.0.0, Culture=neutral, PublicKeyToken=6e6412da1d5ce8eb" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\fluxor.blazor.web.reduxdevtools\5.9.0\lib\net7.0\Fluxor.Blazor.Web.ReduxDevTools.dll" Group="Collapsed" Label="Fluxor.Blazor.Web.ReduxDevTools.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@622" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Cryptography.Algorithms, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Security.Cryptography.Algorithms.dll" Group="Collapsed" Label="System.Security.Cryptography.Algorithms.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@624" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security.Claims, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Security.Claims.dll" Group="Collapsed" Label="System.Security.Claims.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@626" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Components.Forms, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.components.forms\7.0.9\lib\net7.0\Microsoft.AspNetCore.Components.Forms.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Components.Forms.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@628" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.IdentityModel.Tokens, Version=6.32.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identitymodel.tokens\6.32.0\lib\net6.0\Microsoft.IdentityModel.Tokens.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Tokens.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@630" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.IdentityModel.Tokens, Version=6.24.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identitymodel.tokens\6.24.0\lib\net6.0\Microsoft.IdentityModel.Tokens.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Tokens.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@632" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.IdentityModel.JsonWebTokens, Version=6.32.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identitymodel.jsonwebtokens\6.32.0\lib\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll" Group="Collapsed" Label="Microsoft.IdentityModel.JsonWebTokens.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@634" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.IdentityModel.JsonWebTokens, Version=6.24.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identitymodel.jsonwebtokens\6.24.0\lib\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll" Group="Collapsed" Label="Microsoft.IdentityModel.JsonWebTokens.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@636" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.Extensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Runtime.Extensions.dll" Group="Collapsed" Label="System.Runtime.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@638" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Text.Encoding.Extensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Text.Encoding.Extensions.dll" Group="Collapsed" Label="System.Text.Encoding.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@64" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Logging.TraceSource, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@640" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Globalization.Extensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Globalization.Extensions.dll" Group="Collapsed" Label="System.Globalization.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@642" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Reflection.Extensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Reflection.Extensions.dll" Group="Collapsed" Label="System.Reflection.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@644" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.DataProtection.Extensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.DataProtection.Extensions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.DataProtection.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@646" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Http.Extensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Http.Extensions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Http.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@648" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc.Razor.Extensions, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.aspnetcore.mvc.razor.extensions\6.0.0\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="@650" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Threading.Tasks.Extensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Threading.Tasks.Extensions.dll" Group="Collapsed" Label="System.Threading.Tasks.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@652" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Configuration.FileExtensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@654" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Reflection.TypeExtensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Reflection.TypeExtensions.dll" Group="Collapsed" Label="System.Reflection.TypeExtensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@656" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.IdentityModel.LoggingExtensions, Version=6.32.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identitymodel.loggingextensions\6.32.0\lib\netstandard2.0\Microsoft.IdentityModel.LoggingExtensions.dll" Group="Collapsed" Label="Microsoft.IdentityModel.LoggingExtensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@658" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Options.ConfigurationExtensions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@66" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Diagnostics.TraceSource, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Diagnostics.TraceSource.dll" Group="Collapsed" Label="System.Diagnostics.TraceSource.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@660" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="FluentValidation.DependencyInjectionExtensions, Version=11.0.0.0, Culture=neutral, PublicKeyToken=7de548da2fbae0f0" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\fluentvalidation.dependencyinjectionextensions\11.6.0\lib\netstandard2.1\FluentValidation.DependencyInjectionExtensions.dll" Group="Collapsed" Label="FluentValidation.DependencyInjectionExtensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@662" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Data.DataSetExtensions.dll" Group="Collapsed" Label="System.Data.DataSetExtensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@664" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Linq.Expressions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Linq.Expressions.dll" Group="Collapsed" Label="System.Linq.Expressions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@666" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Text.RegularExpressions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.Text.RegularExpressions.dll" Group="Collapsed" Label="System.Text.RegularExpressions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@668" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.Notifications, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.notifications\22.1.38\lib\net7.0\Syncfusion.Blazor.Notifications.dll" Group="Collapsed" Label="Syncfusion.Blazor.Notifications.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@670" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Syncfusion.Blazor.Navigations, Version=22.1.38.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\syncfusion.blazor.navigations\22.1.38\lib\net7.0\Syncfusion.Blazor.Navigations.dll" Group="Collapsed" Label="Syncfusion.Blazor.Navigations.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@672" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ComponentModel.Annotations, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.ComponentModel.Annotations.dll" Group="Collapsed" Label="System.ComponentModel.Annotations.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@674" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc.DataAnnotations, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@676" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.NETCore.App.Ref\7.0.8\ref\net7.0\System.ComponentModel.DataAnnotations.dll" Group="Collapsed" Label="System.ComponentModel.DataAnnotations.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@678" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Options.DataAnnotations, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.Extensions.Options.DataAnnotations.dll" Group="Collapsed" Label="Microsoft.Extensions.Options.DataAnnotations.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@68" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Logging.EventSource, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@680" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Mvc.Abstractions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@682" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.EntityFrameworkCore.Abstractions, Version=7.0.9.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.entityframeworkcore.abstractions\7.0.9\lib\net6.0\Microsoft.EntityFrameworkCore.Abstractions.dll" Group="Collapsed" Label="Microsoft.EntityFrameworkCore.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@684" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Logging.Abstractions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@686" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Caching.Abstractions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@688" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.ResponseCaching.Abstractions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@690" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Hosting.Abstractions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.0\Microsoft.AspNetCore.Hosting.Abstractions.dll" Group="Collapsed" Label="Microsoft.AspNetCore.Hosting.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@692" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.Extensions.Hosting.Abstractions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@694" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.AspNetCore.Routing.Abstractions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" DelayedChildNodesState="NotFetched" FilePath="$(ProgramFiles)\dotnet\packs\Microsoft.AspNetCore.App.Ref\7.0.8\ref\net7.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="@696" Category="CodeSchema_Assembly" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.IdentityModel.Abstractions, Version=6.32.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Casey\.nuget\packages\microsoft.identitymodel.abstractions\6.32.0\lib\net6.0\Microsoft.IdentityModel.Abstractions.dll" Group="Collapsed" Label="Microsoft.IdentityModel.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>