-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.lock.json
More file actions
1677 lines (1677 loc) · 74.1 KB
/
packages.lock.json
File metadata and controls
1677 lines (1677 loc) · 74.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": 1,
"dependencies": {
"net10.0": {
"CommandLineParser": {
"type": "Direct",
"requested": "[2.9.1, )",
"resolved": "2.9.1",
"contentHash": "OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA=="
},
"Extended.Collections": {
"type": "Direct",
"requested": "[1.1.1, )",
"resolved": "1.1.1",
"contentHash": "PvLjUHQeX6MwjF34eQhU6EE1fCRC5zYcX/u10n+ZUkzgv+hRtZSHj1JzAg7AQ5a6iEcLZ2yCb5VBDzdupErDNQ=="
},
"JetBrains.Annotations": {
"type": "Direct",
"requested": "[2024.3.0, )",
"resolved": "2024.3.0",
"contentHash": "ox5pkeLQXjvJdyAB4b2sBYAlqZGLh3PjSnP1bQNVx72ONuTJ9+34/+Rq91Fc0dG29XG9RgZur9+NcP4riihTug=="
},
"LanguageExt.Core": {
"type": "Direct",
"requested": "[5.0.0-beta-77, )",
"resolved": "5.0.0-beta-77",
"contentHash": "zVBqn2alHIDTOSjgWDUo31irEg59ZfM6T8e24UcUn6o/F+5Qr0jRjGPp2LzME7PHyKh+crK+boBmdCAFguwqjw=="
},
"Microsoft.NET.ILLink.Tasks": {
"type": "Direct",
"requested": "[10.0.6, )",
"resolved": "10.0.6",
"contentHash": "IX1ZLJGbd3Cci6FzAvnA+ufiYMr7QFHWZI7lbLDx3XJPNhqHxcrjFSyxXwOLTtFWJDkcOi4vf9uJbWfl1/EqSw=="
},
"Microsoft.PowerShell.Commands.Management": {
"type": "Direct",
"requested": "[7.6.0, )",
"resolved": "7.6.0",
"contentHash": "GS6Raa/avZbiOZNuEa2drr946bFvNzR6m4dlF3JhqUvz8Hp5gY226lHU4Pna1WTaAnhKNgnsmDJeFELw56UBhw==",
"dependencies": {
"Microsoft.PowerShell.Security": "7.6.0",
"System.Diagnostics.EventLog": "10.0.5",
"System.ServiceProcess.ServiceController": "10.0.5"
}
},
"Microsoft.PowerShell.Commands.Utility": {
"type": "Direct",
"requested": "[7.6.0, )",
"resolved": "7.6.0",
"contentHash": "opNQxFiWdFMeCfpgXLlUAP1eg5u+gFQFBwvg+Er7auf1IDNkhU1psSSmtOU2d06/d5GjlqFRNywgzNnhywmDRg==",
"dependencies": {
"JsonSchema.Net": "7.4.0",
"Markdig.Signed": "0.44.0",
"Microsoft.CodeAnalysis.CSharp": "5.0.0",
"Microsoft.PowerShell.MarkdownRender": "7.2.1",
"Microsoft.Win32.SystemEvents": "10.0.5",
"System.Drawing.Common": "10.0.5",
"System.Management.Automation": "7.6.0"
}
},
"Microsoft.PowerShell.ConsoleHost": {
"type": "Direct",
"requested": "[7.6.0, )",
"resolved": "7.6.0",
"contentHash": "3tW1hVYcCYMO9JtZRb5qtlPeHerx0un/W6SJeAZRKeJdTQh9e6wqm78VXdd28uY+SOeBgC/eYopQnTSv4xo/SA==",
"dependencies": {
"System.Management.Automation": "7.6.0"
}
},
"Microsoft.PowerShell.SDK": {
"type": "Direct",
"requested": "[7.6.0, )",
"resolved": "7.6.0",
"contentHash": "35NE9e2KkMqgtBQjUYT0aagNIMTPw3NUsN/PqbO/qSxkIyZkVC5rDbNu5xwts0uGtp6SAlclX5HOHJvvY3Fh5Q==",
"dependencies": {
"Microsoft.Bcl.AsyncInterfaces": "10.0.5",
"Microsoft.Extensions.ObjectPool": "10.0.5",
"Microsoft.Management.Infrastructure.CimCmdlets": "7.6.0",
"Microsoft.PowerShell.Commands.Diagnostics": "7.6.0",
"Microsoft.PowerShell.Commands.Management": "7.6.0",
"Microsoft.PowerShell.Commands.Utility": "7.6.0",
"Microsoft.PowerShell.ConsoleHost": "7.6.0",
"Microsoft.PowerShell.Security": "7.6.0",
"Microsoft.WSMan.Management": "7.6.0",
"Microsoft.Win32.Registry.AccessControl": "10.0.5",
"Microsoft.Win32.SystemEvents": "10.0.5",
"Microsoft.Windows.Compatibility": "10.0.5",
"System.CodeDom": "10.0.5",
"System.ComponentModel.Composition": "10.0.5",
"System.ComponentModel.Composition.Registration": "10.0.5",
"System.Configuration.ConfigurationManager": "10.0.5",
"System.Data.Odbc": "10.0.5",
"System.Data.OleDb": "10.0.5",
"System.Data.SqlClient": "4.9.1",
"System.Diagnostics.EventLog": "10.0.5",
"System.Diagnostics.PerformanceCounter": "10.0.5",
"System.DirectoryServices": "10.0.5",
"System.DirectoryServices.AccountManagement": "10.0.5",
"System.DirectoryServices.Protocols": "10.0.5",
"System.Drawing.Common": "10.0.5",
"System.IO.Packaging": "10.0.5",
"System.IO.Ports": "10.0.5",
"System.Management": "10.0.5",
"System.Management.Automation": "7.6.0",
"System.Net.Http.WinHttpHandler": "10.0.5",
"System.Reflection.Context": "10.0.5",
"System.Runtime.Caching": "10.0.5",
"System.Security.Cryptography.Pkcs": "10.0.5",
"System.Security.Cryptography.ProtectedData": "10.0.5",
"System.Security.Cryptography.Xml": "10.0.5",
"System.Security.Permissions": "10.0.5",
"System.ServiceModel.Http": "10.0.652802",
"System.ServiceModel.NetFramingBase": "10.0.652802",
"System.ServiceModel.NetTcp": "10.0.652802",
"System.ServiceModel.Primitives": "10.0.652802",
"System.ServiceModel.Syndication": "10.0.5",
"System.ServiceProcess.ServiceController": "10.0.5",
"System.Speech": "10.0.5",
"System.Windows.Extensions": "10.0.5",
"runtime.android-arm.runtime.native.System.IO.Ports": "10.0.5",
"runtime.android-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.android-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.android-x86.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-arm.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-bionic-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-bionic-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-musl-arm.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-musl-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-musl-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.maccatalyst-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.maccatalyst-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.native.System.IO.Ports": "10.0.5",
"runtime.osx-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.osx-x64.runtime.native.System.IO.Ports": "10.0.5"
}
},
"NLog": {
"type": "Direct",
"requested": "[5.3.2, )",
"resolved": "5.3.2",
"contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg=="
},
"NuGet.Commands": {
"type": "Direct",
"requested": "[6.9.1, )",
"resolved": "6.9.1",
"contentHash": "pI2X+KRQYsVcmjJUIAXT+8fvUCZgNWBQiSizKCOltRqaMjtUHLetfADfz7jfreOBohsDxNzhBnNqPQ8MU/Gjxw==",
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
"Microsoft.Extensions.FileSystemGlobbing": "6.0.0",
"NuGet.Credentials": "6.9.1",
"NuGet.ProjectModel": "6.9.1"
}
},
"NuGet.Common": {
"type": "Direct",
"requested": "[6.9.1, )",
"resolved": "6.9.1",
"contentHash": "FbuWZBjQ1NJXBDqCwSddN2yvw3Plq3sTCIh0nc66Hu8jrNr+BOaxlKZv78jvJ+pSy8BvurYOdF9sl9KoORjrtg==",
"dependencies": {
"NuGet.Frameworks": "6.9.1"
}
},
"Pastel": {
"type": "Direct",
"requested": "[5.1.0, )",
"resolved": "5.1.0",
"contentHash": "jQ0fTkHZvgQsmbr5qU0IdCP1PWuUfmEmekIsTwysWK/iIwmT9Mbm0x5GpjYSTEwHTNVEpjYhBhyKVdzESgRCpg=="
},
"QuikGraph": {
"type": "Direct",
"requested": "[2.5.0, )",
"resolved": "2.5.0",
"contentHash": "sG+mrPpXwxlXknRK5VqWUGiOmDACa9X+3ftlkQIMgOZUqxVOQSe0+HIU9PTjwqazy0pqSf8MPDXYFGl0GYWcKw=="
},
"QuikGraph.Graphviz": {
"type": "Direct",
"requested": "[2.5.0, )",
"resolved": "2.5.0",
"contentHash": "pCKpErtHGxUi72OT+2aIg1pdHdUqpqEM5J/i9rmVsEVDE4X0xb1HBPWdxv/FLZmbBjk0ZogZXZttUL3CnAPpNw==",
"dependencies": {
"QuikGraph": "2.5.0"
}
},
"System.Management.Automation": {
"type": "Direct",
"requested": "[7.6.0, )",
"resolved": "7.6.0",
"contentHash": "S/AVZCBLZAsfZ+Oe29GuH45bi8Gi5inskQ4IE8Q5bvgtuF4AIwuXPkpnZK5nzF+9XDz+hF31yS8w1C15HvZhlg==",
"dependencies": {
"Microsoft.ApplicationInsights": "2.23.0",
"Microsoft.Management.Infrastructure": "3.0.0",
"Microsoft.PowerShell.CoreCLR.Eventing": "7.6.0",
"Microsoft.PowerShell.Native": "700.0.0-rc.1",
"Microsoft.Security.Extensions": "1.4.0",
"Microsoft.Win32.Registry.AccessControl": "10.0.5",
"Newtonsoft.Json": "13.0.4",
"System.CodeDom": "10.0.5",
"System.Configuration.ConfigurationManager": "10.0.5",
"System.Diagnostics.EventLog": "10.0.5",
"System.DirectoryServices": "10.0.5",
"System.Management": "10.0.5",
"System.Security.Cryptography.Pkcs": "10.0.5",
"System.Security.Cryptography.ProtectedData": "10.0.5",
"System.Security.Permissions": "10.0.5",
"System.Windows.Extensions": "10.0.5"
}
},
"Humanizer.Core": {
"type": "Transitive",
"resolved": "2.14.1",
"contentHash": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw=="
},
"Json.More.Net": {
"type": "Transitive",
"resolved": "2.1.1",
"contentHash": "ZXAKl2VsdnIZeUo1PFII3Oi1m1L4YQjEyDjygHfHln5vgsjgIo749X6xWkv7qFYp8RROES+vOEfDcvvoVgs8kA=="
},
"JsonPointer.Net": {
"type": "Transitive",
"resolved": "5.3.1",
"contentHash": "3e2OJjU0OaE26XC/klgxbJuXvteFWTDJIJv0ITYWcJEoskq7jzUwPSC1s0iz4wPPQnfN7vwwFmg2gJfwRAPwgw==",
"dependencies": {
"Humanizer.Core": "2.14.1",
"Json.More.Net": "2.1.1"
}
},
"JsonSchema.Net": {
"type": "Transitive",
"resolved": "7.4.0",
"contentHash": "5T3DWENwuCzLwFWz0qjXXVWA8+5+gC95OLkhqUBWpVpWBMr9gwfhWNeX8rWyr+fLQ7pIQ+lWuHIrmXRudxOOSw==",
"dependencies": {
"JsonPointer.Net": "5.3.1"
}
},
"Markdig.Signed": {
"type": "Transitive",
"resolved": "0.44.0",
"contentHash": "mNxf8HrQA/clO8usqQhVc0BGlw0bJtZ76dic5KZGBPJZDX4UR67Jglwilkp5A//gPSMwcoY5EjLPppkZ/B4IMg=="
},
"Microsoft.ApplicationInsights": {
"type": "Transitive",
"resolved": "2.23.0",
"contentHash": "nWArUZTdU7iqZLycLKWe0TDms48KKGE6pONH2terYNa8REXiqixrMOkf1sk5DHGMaUTqONU2YkS4SAXBhLStgw=="
},
"Microsoft.Bcl.AsyncInterfaces": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "hQB3Hq1LlF0NkGVNyZIvwIQIY3LM7Cw1oYjNiTvdNqmzzipVAWEK1c5sj2H5aFX0udnjgPLxSYKq2fupueS8ow=="
},
"Microsoft.CodeAnalysis.Analyzers": {
"type": "Transitive",
"resolved": "3.11.0",
"contentHash": "v/EW3UE8/lbEYHoC2Qq7AR/DnmvpgdtAMndfQNmpuIMx/Mto8L5JnuCfdBYtgvalQOtfNCnxFejxuRrryvUTsg=="
},
"Microsoft.CodeAnalysis.Common": {
"type": "Transitive",
"resolved": "5.0.0",
"contentHash": "ZXRAdvH6GiDeHRyd3q/km8Z44RoM6FBWHd+gen/la81mVnAdHTEsEkO5J0TCNXBymAcx5UYKt5TvgKBhaLJEow==",
"dependencies": {
"Microsoft.CodeAnalysis.Analyzers": "3.11.0"
}
},
"Microsoft.CodeAnalysis.CSharp": {
"type": "Transitive",
"resolved": "5.0.0",
"contentHash": "5DSyJ9bk+ATuDy7fp2Zt0mJStDVKbBoiz1DyfAwSa+k4H4IwykAUcV3URelw5b8/iVbfSaOwkwmPUZH6opZKCw==",
"dependencies": {
"Microsoft.CodeAnalysis.Analyzers": "3.11.0",
"Microsoft.CodeAnalysis.Common": "[5.0.0]"
}
},
"Microsoft.Extensions.FileProviders.Abstractions": {
"type": "Transitive",
"resolved": "6.0.0",
"contentHash": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==",
"dependencies": {
"Microsoft.Extensions.Primitives": "6.0.0"
}
},
"Microsoft.Extensions.FileSystemGlobbing": {
"type": "Transitive",
"resolved": "6.0.0",
"contentHash": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw=="
},
"Microsoft.Extensions.ObjectPool": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "91t1kPt6F+1cTJ4dZFY89BopLr1JyGlZ2pROIkIuyE28jUXhdelOzn22UwvNk8EwW/9x8D7GXyLqiMJShgIGhQ=="
},
"Microsoft.Extensions.Primitives": {
"type": "Transitive",
"resolved": "6.0.0",
"contentHash": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ=="
},
"Microsoft.Management.Infrastructure": {
"type": "Transitive",
"resolved": "3.0.0",
"contentHash": "cGZi0q5IujCTVYKo9h22Pw+UwfZDV82HXO8HTxMG2HqntPlT3Ls8jY6punLp4YzCypJNpfCAu2kae3TIyuAiJw==",
"dependencies": {
"Microsoft.Management.Infrastructure.Runtime.Unix": "3.0.0",
"Microsoft.Management.Infrastructure.Runtime.Win": "3.0.0"
}
},
"Microsoft.Management.Infrastructure.CimCmdlets": {
"type": "Transitive",
"resolved": "7.6.0",
"contentHash": "Th5W4CyHWLVGL8wiIlcTBKK7ggxLB+Tz3K9ixQzcBtdOtBo9O+iRNtiTyVgBwCkGrMxtc/HBLWUaCFAIIn327Q==",
"dependencies": {
"System.Management.Automation": "7.6.0"
}
},
"Microsoft.Management.Infrastructure.Runtime.Unix": {
"type": "Transitive",
"resolved": "3.0.0",
"contentHash": "QZE3uEDvZ0m7LabQvcmNOYHp7v1QPBVMpB/ild0WEE8zqUVAP5y9rRI5we37ImI1bQmW5pZ+3HNC70POPm0jBQ=="
},
"Microsoft.Management.Infrastructure.Runtime.Win": {
"type": "Transitive",
"resolved": "3.0.0",
"contentHash": "uwMyWN33+iQ8Wm/n1yoPXgFoiYNd0HzJyoqSVhaQZyJfaQrJR3udgcIHjqa1qbc3lS6kvfuUMN4TrF4U4refCQ=="
},
"Microsoft.PowerShell.Commands.Diagnostics": {
"type": "Transitive",
"resolved": "7.6.0",
"contentHash": "YaNBSTiD8pDmxMfK8MjbcX/k2QGt0kZQ58T/bkEqZE3oKUITcUsRRYYHtnFkeRSwbdGPC4Lfej9VaL7zbWSeXQ==",
"dependencies": {
"System.Management.Automation": "7.6.0"
}
},
"Microsoft.PowerShell.CoreCLR.Eventing": {
"type": "Transitive",
"resolved": "7.6.0",
"contentHash": "bjNtp02ZuXhg6b28p6q+hoAhoSksHZ7cdVhCXX3vUqU0Zlvgl9FJlxFmGfL7ommIpIx/8j5eXO5Pth24LwDSnQ==",
"dependencies": {
"System.Diagnostics.EventLog": "10.0.5"
}
},
"Microsoft.PowerShell.MarkdownRender": {
"type": "Transitive",
"resolved": "7.2.1",
"contentHash": "o5oUwL23R/KnjQPD2Oi49WAG5j4O4VLo1fPRSyM/aq0HuTrY2RnF4B3MCGk13BfcmK51p9kPlHZ1+8a/ZjO4Jg==",
"dependencies": {
"Markdig.Signed": "0.31.0"
}
},
"Microsoft.PowerShell.Native": {
"type": "Transitive",
"resolved": "700.0.0-rc.1",
"contentHash": "lJOCErHTSWwCzfp3wgeyqhNRi4t43McDc0CHqlbt3Cj3OomiqPlNHQXujSbgd+0Ir6/8QAmvU/VOYgqCyMki6A=="
},
"Microsoft.PowerShell.Security": {
"type": "Transitive",
"resolved": "7.6.0",
"contentHash": "sTSYo9zxWs+kl2TE9nTx5He7m4b4lcvF5yBpXEio9DN3KGw+lvh2vjFhOfpmVTPXubg/9hiLSnSs/zvgNdShGQ==",
"dependencies": {
"System.Management.Automation": "7.6.0"
}
},
"Microsoft.Security.Extensions": {
"type": "Transitive",
"resolved": "1.4.0",
"contentHash": "MnHXttc0jHbRrGdTJ+yJBbGDoa4OXhtnKXHQw70foMyAooFtPScZX/dN+Nib47nuglc9Gt29Gfb5Zl+1lAuTeA=="
},
"Microsoft.Win32.Registry.AccessControl": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "1J6ooeZGeTSlM2vZdB1UHm9Y7vP8f/pS+Pd2JrqfjXLBZXrrby4rXBY6pP2k/Wb26CVm9TlEPjyWB2ryXT69LA=="
},
"Microsoft.Win32.SystemEvents": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "a7rC0Qb5JGiA4f4ooqQjsx17LgYkb9feOcMNGyBXGqYmqC4ZoLbrV98zn7Kr5Z39BIU10Bti80Jwm/QAw+45VA=="
},
"Microsoft.Windows.Compatibility": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "UPIGVEcJUFVw0zj1IA71HxumiE4ZLdPH46e6bau1Pnrx18UxbRxa98qb1RVK1hRrmzgQcvslyT03KtiLSaFExw==",
"dependencies": {
"Microsoft.Win32.Registry.AccessControl": "10.0.5",
"Microsoft.Win32.SystemEvents": "10.0.5",
"System.CodeDom": "10.0.5",
"System.ComponentModel.Composition": "10.0.5",
"System.ComponentModel.Composition.Registration": "10.0.5",
"System.Configuration.ConfigurationManager": "10.0.5",
"System.Data.Odbc": "10.0.5",
"System.Data.OleDb": "10.0.5",
"System.Data.SqlClient": "4.9.0",
"System.Diagnostics.EventLog": "10.0.5",
"System.Diagnostics.PerformanceCounter": "10.0.5",
"System.DirectoryServices": "10.0.5",
"System.DirectoryServices.AccountManagement": "10.0.5",
"System.DirectoryServices.Protocols": "10.0.5",
"System.Drawing.Common": "10.0.5",
"System.IO.Packaging": "10.0.5",
"System.IO.Ports": "10.0.5",
"System.Management": "10.0.5",
"System.Reflection.Context": "10.0.5",
"System.Runtime.Caching": "10.0.5",
"System.Security.Cryptography.Pkcs": "10.0.5",
"System.Security.Cryptography.ProtectedData": "10.0.5",
"System.Security.Cryptography.Xml": "10.0.5",
"System.Security.Permissions": "10.0.5",
"System.ServiceModel.Http": "8.1.2",
"System.ServiceModel.NetTcp": "8.1.2",
"System.ServiceModel.Primitives": "8.1.2",
"System.ServiceModel.Syndication": "10.0.5",
"System.ServiceProcess.ServiceController": "10.0.5",
"System.Speech": "10.0.5",
"System.Web.Services.Description": "8.1.2"
}
},
"Microsoft.WSMan.Management": {
"type": "Transitive",
"resolved": "7.6.0",
"contentHash": "XohGKsxBbEFaBASEWveSBy+GTNOElQD8UBldmRjuhwnjix2FURj259W0qV2bj4OkzanWPPbNt6aiFSuupTATGg==",
"dependencies": {
"Microsoft.WSMan.Runtime": "7.6.0",
"System.Diagnostics.EventLog": "10.0.5",
"System.Management.Automation": "7.6.0",
"System.ServiceProcess.ServiceController": "10.0.5"
}
},
"Microsoft.WSMan.Runtime": {
"type": "Transitive",
"resolved": "7.6.0",
"contentHash": "5tMrp/aoM6uIdUNe16CWEMzxQ2E1uqrl1wXaIc1KPlXDWk60v438s7ujCXVGb/gDUaOacOcYkOi94G/Vl/Fm2g=="
},
"Newtonsoft.Json": {
"type": "Transitive",
"resolved": "13.0.4",
"contentHash": "pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A=="
},
"NuGet.Configuration": {
"type": "Transitive",
"resolved": "6.9.1",
"contentHash": "GM06pcUzWdNsizeGciqCjAhryfI1F/rQPETLDF+8pDRgzVpA+wKAR01/4aFU+IXzugnQ9LqOb5YyCRuR1OVZiQ==",
"dependencies": {
"NuGet.Common": "6.9.1",
"System.Security.Cryptography.ProtectedData": "4.4.0"
}
},
"NuGet.Credentials": {
"type": "Transitive",
"resolved": "6.9.1",
"contentHash": "elTErAznCWoqOLILVDN4FTa3+rpVVdUbHUaOUqJkk9+Z/ZSqyDPbCIhLaqTkPkWqoKa93gqzX9IFwURkMphPnw==",
"dependencies": {
"NuGet.Protocol": "6.9.1"
}
},
"NuGet.DependencyResolver.Core": {
"type": "Transitive",
"resolved": "6.9.1",
"contentHash": "gVWIEScv1K40H2Fvs6HGaOzRMpG+r1RUqYpBdh7gqQ18kgsswWUSr90jCNtBb7PUYKkMU1oAhxTslj/gQjO+Vw==",
"dependencies": {
"NuGet.Configuration": "6.9.1",
"NuGet.LibraryModel": "6.9.1",
"NuGet.Protocol": "6.9.1"
}
},
"NuGet.Frameworks": {
"type": "Transitive",
"resolved": "6.9.1",
"contentHash": "DaKh3lenPUvzGccPkbI97BIvA27z+/UsL3ankfoZlX/4vBVDK5N1sheFTQ+GuJf+IgSzsJz/A21SPUpQLHwUtA=="
},
"NuGet.LibraryModel": {
"type": "Transitive",
"resolved": "6.9.1",
"contentHash": "xlOpbZTc4862vKHkZHLJ5VgDteo+78ftVkajB8rKgSpevnBqwPKv2Y5OfUxct9HCqWYw0ikVfNf/qfjqnQCV1Q==",
"dependencies": {
"NuGet.Common": "6.9.1",
"NuGet.Versioning": "6.9.1"
}
},
"NuGet.Packaging": {
"type": "Transitive",
"resolved": "6.9.1",
"contentHash": "6FyasOxKInCELJ+pGy8f17ub9st6ofFeNcBNTo7CRiPJlxyhJfKGKNpfe3HHYwvnZhc3Vdfr0kSR+f1BVGDuTA==",
"dependencies": {
"Newtonsoft.Json": "13.0.3",
"NuGet.Configuration": "6.9.1",
"NuGet.Versioning": "6.9.1",
"System.Security.Cryptography.Pkcs": "6.0.4"
}
},
"NuGet.ProjectModel": {
"type": "Transitive",
"resolved": "6.9.1",
"contentHash": "x98QkS3oloaJfdSsDFOGTH5oeoHHTDoyTO7oyg/7g60be14AQowLqgPQV52Kuscl4lknx/3259RTxyDcbkdifQ==",
"dependencies": {
"NuGet.DependencyResolver.Core": "6.9.1"
}
},
"NuGet.Protocol": {
"type": "Transitive",
"resolved": "6.9.1",
"contentHash": "h3bdjqUY4jvwM02D/7QM4FR8x/bbf4Pyjrc1Etw7an2OrWKPUSx0vJPdapKzioxIw7GXl/aVUM/DCeIc3S9brA==",
"dependencies": {
"NuGet.Packaging": "6.9.1"
}
},
"NuGet.Versioning": {
"type": "Transitive",
"resolved": "6.9.1",
"contentHash": "ypnSvEtpNGo48bAWn95J1oHChycCXcevFSbn53fqzLxlXFSZP7dawu8p/7mHAfGufZQSV2sBpW80XQGIfXO8kQ=="
},
"runtime.android-arm.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "nZdjF2WSBDvYCkaeDC4tIXada+cuYdgLWKFgIEbgcuIfuC7dLyKKpsXKcBYm2utrymmBKgXpRElK37Ts/BKwHQ=="
},
"runtime.android-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "fJilZhYkETJX2CDhZ/GsA6xgfDGdCugUIn2Gk/11mVA4HSn+5agco2z1xCjds9oMmnTYjQIZALwi311mDF2utA=="
},
"runtime.android-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "BXmMlyT9Mnkl4mxMw4jwFnOyGpT3ts+Q0qvbK3BiTDAJPkCuyRqFBPb4/QVSkG8DKjCq4rD3tbZx57gl/iKh3g=="
},
"runtime.android-x86.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "5oj/cFputmPxRDXz9lTDEWCK1UAZbHkVPNhx6gPOBdB6esQ/dzW5YWWWrE8qd24OgKMIXfUGCUiv8X2MFvE7mw=="
},
"runtime.linux-arm.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "EZiqHjxgvDakx9UYNfRjXtevIlggWdqBEExeZG7g7Zt1XksV8Oud2bwrWOK1PhnlROmXV3YDNE5wK9rHrMQqpg=="
},
"runtime.linux-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "3ZEQMsHJ+HCJs+4z/4QdQpE6PhV4cOW5kob8kXYT8jf2MJ4oOELiAKy/GNuxB9mnpL3/IELIrZa7j/yPPQXqPw=="
},
"runtime.linux-bionic-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "vrg5vcj+tSxrOlt9QpsoNg7RQVgj0di9ZywEAsoa+2Cg48ZuLuf5IaHSgCxYcU195GibrUaD3aqhPMuj8wBiIA=="
},
"runtime.linux-bionic-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "Sf3oMGv8fkyFgrS8v1R9r6hnyjjxLxWB5KRzoeER8joyxCsBhwCh7PtAjcZJwIY4yOxEaVoLkHQqgB55rUJdag=="
},
"runtime.linux-musl-arm.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "TQMo+2NA4eB/7CLRVbEwDRu8NC+IKy6TTJKCUVufvgaVJTu3/6ZlONSUX1wtKszxxqMWs7M8ZVQ3J3sWn1IAAw=="
},
"runtime.linux-musl-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "9KGCN0wsG9xSPzL3JSDdQfhZfsR2fV0pL1iLnvFzIvjTmqtMqe945QLK6lk7J6g7raqu5dDmWFs6atUlwuvI9A=="
},
"runtime.linux-musl-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "Wo1np+ez58KbmAx/DrLb93DPaxs4mlWKB20UFm+klTjBZkLR/E5fSijYYkJiQa8+QQ7DrgwpKocO5jveQ6TmyQ=="
},
"runtime.linux-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "LEui8jeftffYJWcqNB9NY1h2wjpvYNHpx56k6PfojNTEJVkDJX/O7t0LnfbIKqqnKNHEzfzzuc+kKqShlOC5YA=="
},
"runtime.maccatalyst-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "sEpLosIuiDygUrLBY/Cb5QGksm+GVMFAbkHgsA4EI+xIwN64nm5t0RC7nYa5ir4Ow1rG7UPppLvld95Z1uMHbg=="
},
"runtime.maccatalyst-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "xR/JIRaO8iyCzOdJZuqb1/WZ14M71hfoqaS36a4p/X1EbDdVLM97UFPAAcwSVAmvQCKSn1Tf+gT43xtYdQeNUw=="
},
"runtime.native.System.Data.SqlClient.sni": {
"type": "Transitive",
"resolved": "4.4.0",
"contentHash": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
"dependencies": {
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
}
},
"runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "N3CaTe3uSLjoi7uNnx83HEwPGgrAQz2JJ1KUorEMmMYBwwDavw+aalHNiYSEyfPGqvVRsetkZ42oAQx6dZj+WA==",
"dependencies": {
"runtime.android-arm.runtime.native.System.IO.Ports": "10.0.5",
"runtime.android-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.android-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.android-x86.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-arm.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-bionic-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-bionic-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-musl-arm.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-musl-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-musl-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.maccatalyst-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.maccatalyst-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.osx-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.osx-x64.runtime.native.System.IO.Ports": "10.0.5"
}
},
"runtime.osx-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "Fj8EEw6yihufT95SJ+SQBjoxXiNLNIHB0pf9pO89Myd1IbdKASwi6llgQr7jcd/PdnuRoghxWgKKnYgRysWm/w=="
},
"runtime.osx-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "y/RbVJGN17kifSSGUOUsfip6PkoE67s4aA7PO/Z0piYz2Da3OC8/mrDaiiHemt/+F/p5SiVEXfA30s0ccW4xGw=="
},
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": {
"type": "Transitive",
"resolved": "4.4.0",
"contentHash": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg=="
},
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": {
"type": "Transitive",
"resolved": "4.4.0",
"contentHash": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ=="
},
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": {
"type": "Transitive",
"resolved": "4.4.0",
"contentHash": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA=="
},
"System.CodeDom": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "hGZWDDJh1U6t7fy3iO4HlZYK1ur1fWE3sTqTNHkHk0Leh0JUcxYM//JtLBNG5g+6D2Lt0+aHH8rc7e5oIlNgCg=="
},
"System.ComponentModel.Composition": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "Yi8nY2EKRZlZYRPxQ1/E4rrYs6QD1H0UgfcfHhKsCVhNJ4lNULLbly6Dtz6CjH6gZKBf2hZYXzzzzVGhpGLBvw=="
},
"System.ComponentModel.Composition.Registration": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "yaeiTK8VYzgD67+bmB/vu+CxwnPCfFLD0+e0jeOLDgcdNoUTx6j3uMv/QI3r4PecPZQw1xriXdfqfhqvvyx7qg==",
"dependencies": {
"System.ComponentModel.Composition": "10.0.5",
"System.Reflection.Context": "10.0.5"
}
},
"System.Configuration.ConfigurationManager": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "9UHU7hldEOVgcOHUX7Pa+owDfpzhW+a1gshEvyknAoDA++G6FV+N1cPoUbtsXEO7GgPErGSg8MHrI/YqrLoiGA==",
"dependencies": {
"System.Diagnostics.EventLog": "10.0.5",
"System.Security.Cryptography.ProtectedData": "10.0.5"
}
},
"System.Data.Odbc": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "nLtGLGJYf0jfVNH7004s5N3a6setHGhh/pRJTqq1U5bBx3TOaV9gDtZomi1IcacAoX9UwmVflXdViuw5UzEXAw=="
},
"System.Data.OleDb": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "ZQpXcFu9i0MO2UnoD0KjaFCrB3bZ2Yzk8YdML2/PRU7U2QIWYzCpkkMJXUamG7gwowTuXmLm3eXDKiU8fM0cQg==",
"dependencies": {
"System.Configuration.ConfigurationManager": "10.0.5",
"System.Diagnostics.PerformanceCounter": "10.0.5"
}
},
"System.Data.SqlClient": {
"type": "Transitive",
"resolved": "4.9.1",
"contentHash": "A7RK9I4UaVHJ407GTfy37S4ABHt1+lZ+/uoA54zTv0XaaWgHO5BtXSMzMVqB6socIHEeeK5K1YRgaxCEfD79wQ==",
"dependencies": {
"runtime.native.System.Data.SqlClient.sni": "4.4.0"
}
},
"System.Diagnostics.EventLog": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "wugvy+pBVzjQEnRs9wMTWwoaeNFX3hsaHeVHFDIvJSWXp7wfmNWu3mxAwBIE6pyW+g6+rHa1Of5fTzb0QVqUTA=="
},
"System.Diagnostics.PerformanceCounter": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "2fdEqAn8xpPNW7g7BDwsvWw9BGG4m8yu2+qqRFE02nypN4urVdzp3kT42e6pION9RHGkEUFHnrBLXcUQ2+Ws2w==",
"dependencies": {
"System.Configuration.ConfigurationManager": "10.0.5"
}
},
"System.DirectoryServices": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "1AbKZ7Jh/kN7U7BPf5fLWMXjaXeSCCSL8OLvs1aM2P4FJL1+BATcnIjhUgG3pcmII0aFN+tWS/rX0iBZkX9AVw=="
},
"System.DirectoryServices.AccountManagement": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "gWbJuEXT8wmdjz3tWuqCs7fj5ak1TKJxJfG+PBt7WFqBkVsMbjQ1VJcR2ZoPgTeRHcHqHdjA04MLBJ6Eq8QgEw==",
"dependencies": {
"System.Configuration.ConfigurationManager": "10.0.5",
"System.DirectoryServices": "10.0.5",
"System.DirectoryServices.Protocols": "10.0.5"
}
},
"System.DirectoryServices.Protocols": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "9cxxK3ulK9KHqifCyvxvATTYNda1WxZxvrC41loC/9j1/+qF6q/E2RCgqSNrKWB7WtFNDOWuJQSOoPF88OTskQ=="
},
"System.Drawing.Common": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "FYgPPbii/9Prh7RuY1gaxSyik7Ysw594K0uCHggDxHDgl7mfk8c4UlwluKjQoMquVGLce7Jld4DjjsnuYK3m7g==",
"dependencies": {
"Microsoft.Win32.SystemEvents": "10.0.5"
}
},
"System.IO.Packaging": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "ygK00KGbFHlZZmcO5ihqdrsMeFQ0liD2qQ+Yz/30G5ZOyeh3aHBEfVIRPBNFBE0epnwjbIrjLdDvLP3iBmsCcg=="
},
"System.IO.Ports": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "tUlRZNFQ5c5SHZourJdX4DecbJYXHgWOsYxsvsPT3UxCL0Na0YA1awzGZu91Q2Lo6obt57b1o0IqP7ABLGvWPA==",
"dependencies": {
"runtime.native.System.IO.Ports": "10.0.5"
}
},
"System.Management": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "JhBVxvWhUJ0KAquUK0dMnc3a1Ol4JyH8fMrMQZ9GgEUkrtvPy8DE57SDnGnuvOdI0maJOdguxw87N5bh2eL87A==",
"dependencies": {
"System.CodeDom": "10.0.5"
}
},
"System.Net.Http.WinHttpHandler": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "Ov7L6Ab7BSMq7o6quFalQZW5lFQPvVrZwUOXFqUD+WufOezhWY5cRts8z0eCla8FQr549eJzsYssfLJOXZMVIA=="
},
"System.Reflection.Context": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "DAAArz6bs7EMcndUH5eKd7A/963OKFA7RWB5kyQpp7/ze7Is3mlVAcCVCRDpxIVmlFJ83sVFO4LxTPm7joxo4w=="
},
"System.Runtime.Caching": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "bEwpkbmj1Ep8ioRI7M8eoPpgp6rHXHu1D+e2lCXqDYBChPOKA09TwEbIkzZk+Dwueh4kVZOXOWpzMY/LsgND/g==",
"dependencies": {
"System.Configuration.ConfigurationManager": "10.0.5"
}
},
"System.Security.Cryptography.Pkcs": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "BJEYUZfXpkPIHo2+oFoUemD5CPMFHPJOkRzXrbj/iZrWsjga3ypj8Rqd9bFlSLupEH4IIdD/aBWm/V1gCiBL9w=="
},
"System.Security.Cryptography.ProtectedData": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "kxR4O/8o32eNN3m4qbLe3UifYqeyEpallCyVAsLvL5ZFJVyT3JCb+9du/WHfC09VyJh1Q+p/Gd4+AwM7Rz4acg=="
},
"System.Security.Cryptography.Xml": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "1FW536WbzEWa/+UmSroCtfuTEPh3ueOnFtD0jEZP6xreGMf8/cSHDUFNpVUq4pXvvvVl4WMgBgavjxu5zTj+uw==",
"dependencies": {
"System.Security.Cryptography.Pkcs": "10.0.5"
}
},
"System.Security.Permissions": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "mhNFWI/5ljeEUT4nsJFK5ykecpyelRwN6Hy1x0hIJoqs5ssHJ9jr7hIkrjhbiE2Y4usuG1FpZr9S00Oei49aMg==",
"dependencies": {
"System.Windows.Extensions": "10.0.5"
}
},
"System.ServiceModel.Http": {
"type": "Transitive",
"resolved": "10.0.652802",
"contentHash": "G02XZvmccf42QCU5MjviBIg69MSMAVHwL1inVPsNSpfp5g+t5BkQM3DyvWRLN4qmeFDWSF/mA1rIYONIDu/6Dg==",
"dependencies": {
"System.ServiceModel.Primitives": "10.0.652802"
}
},
"System.ServiceModel.NetFramingBase": {
"type": "Transitive",
"resolved": "10.0.652802",
"contentHash": "8/wx/Xnfm9LmGmK0banr05JJYNZmJzlxa8J5lfR7v3MM78QzSG8C3/HDi0/BjlOMeMZd21sX7oEFUhoucrk49w==",
"dependencies": {
"System.ServiceModel.Primitives": "10.0.652802"
}
},
"System.ServiceModel.NetTcp": {
"type": "Transitive",
"resolved": "10.0.652802",
"contentHash": "VFQgu0IRWUPuPTxHZkMmhPNGYqcu9RwpFcZpW5L941dunUY8nJAErtAWEZYKnj2zAWsm/88nLAEoFc4cuoC2zw==",
"dependencies": {
"System.ServiceModel.NetFramingBase": "10.0.652802",
"System.ServiceModel.Primitives": "10.0.652802"
}
},
"System.ServiceModel.Primitives": {
"type": "Transitive",
"resolved": "10.0.652802",
"contentHash": "ULfGNl75BNXkpF42wNV2CDXJ64dUZZEa8xO2mBsc4tqbW9QjruxjEB6bAr4Z/T1rNU+leOztIjCJQYsBGFWYlw==",
"dependencies": {
"Microsoft.Extensions.ObjectPool": "10.0.0",
"System.Security.Cryptography.Xml": "10.0.0"
}
},
"System.ServiceModel.Syndication": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "lMzvEBS8dnq+TH4Ff50abQRMlbVTTBMenAmv/ILyaY3Mpf4+k/IlQtIl3uAyoNX/nXfKZp+1NyBWpxDSsMs6iA=="
},
"System.ServiceProcess.ServiceController": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "L7pataU51CVJkdfIxpH6wY1buML9zsi9ZVWYaCOLM1AMpd4wQ0StzbOb8OGZAfwCyK/oyKEYcCZrWAi4GgP3lg==",
"dependencies": {
"System.Diagnostics.EventLog": "10.0.5"
}
},
"System.Speech": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "MYkGiMGWYc9rhyvsmf2UGIHD4RVJ3+uNgllFPP1YW6ILJJDXpDN8jMcy++0E/KrG507kTPCo5EOW4tEwUOCKhQ=="
},
"System.Web.Services.Description": {
"type": "Transitive",
"resolved": "8.1.2",
"contentHash": "FziIBleSpygZOBudSeMkawLgfarnSam7paGkTtV9ITyTmw/TdEqB+moS0TeApmNfAMWGbcWXDXr3djckuLgGDg=="
},
"System.Windows.Extensions": {
"type": "Transitive",
"resolved": "10.0.5",
"contentHash": "5hVP2TIgEqqA590MnKmMN5+Fgzl6xBRjR1wbgC3M1znrZZJe63TwBPN+ymaMgwT0vjsiXk95AjMAe8SAhhJSTg=="
}
},
"net10.0/linux-x64": {
"Microsoft.PowerShell.Commands.Management": {
"type": "Direct",
"requested": "[7.6.0, )",
"resolved": "7.6.0",
"contentHash": "GS6Raa/avZbiOZNuEa2drr946bFvNzR6m4dlF3JhqUvz8Hp5gY226lHU4Pna1WTaAnhKNgnsmDJeFELw56UBhw==",
"dependencies": {
"Microsoft.PowerShell.Security": "7.6.0",
"System.Diagnostics.EventLog": "10.0.5",
"System.ServiceProcess.ServiceController": "10.0.5"
}
},
"Microsoft.PowerShell.Commands.Utility": {
"type": "Direct",
"requested": "[7.6.0, )",
"resolved": "7.6.0",
"contentHash": "opNQxFiWdFMeCfpgXLlUAP1eg5u+gFQFBwvg+Er7auf1IDNkhU1psSSmtOU2d06/d5GjlqFRNywgzNnhywmDRg==",
"dependencies": {
"JsonSchema.Net": "7.4.0",
"Markdig.Signed": "0.44.0",
"Microsoft.CodeAnalysis.CSharp": "5.0.0",
"Microsoft.PowerShell.MarkdownRender": "7.2.1",
"Microsoft.Win32.SystemEvents": "10.0.5",
"System.Drawing.Common": "10.0.5",
"System.Management.Automation": "7.6.0"
}
},
"Microsoft.PowerShell.ConsoleHost": {
"type": "Direct",
"requested": "[7.6.0, )",
"resolved": "7.6.0",
"contentHash": "3tW1hVYcCYMO9JtZRb5qtlPeHerx0un/W6SJeAZRKeJdTQh9e6wqm78VXdd28uY+SOeBgC/eYopQnTSv4xo/SA==",
"dependencies": {
"System.Management.Automation": "7.6.0"
}
},
"Microsoft.PowerShell.SDK": {
"type": "Direct",
"requested": "[7.6.0, )",
"resolved": "7.6.0",
"contentHash": "35NE9e2KkMqgtBQjUYT0aagNIMTPw3NUsN/PqbO/qSxkIyZkVC5rDbNu5xwts0uGtp6SAlclX5HOHJvvY3Fh5Q==",
"dependencies": {
"Microsoft.Bcl.AsyncInterfaces": "10.0.5",
"Microsoft.Extensions.ObjectPool": "10.0.5",
"Microsoft.Management.Infrastructure.CimCmdlets": "7.6.0",
"Microsoft.PowerShell.Commands.Diagnostics": "7.6.0",
"Microsoft.PowerShell.Commands.Management": "7.6.0",
"Microsoft.PowerShell.Commands.Utility": "7.6.0",
"Microsoft.PowerShell.ConsoleHost": "7.6.0",
"Microsoft.PowerShell.Security": "7.6.0",
"Microsoft.WSMan.Management": "7.6.0",
"Microsoft.Win32.Registry.AccessControl": "10.0.5",
"Microsoft.Win32.SystemEvents": "10.0.5",
"Microsoft.Windows.Compatibility": "10.0.5",
"System.CodeDom": "10.0.5",
"System.ComponentModel.Composition": "10.0.5",
"System.ComponentModel.Composition.Registration": "10.0.5",
"System.Configuration.ConfigurationManager": "10.0.5",
"System.Data.Odbc": "10.0.5",
"System.Data.OleDb": "10.0.5",
"System.Data.SqlClient": "4.9.1",
"System.Diagnostics.EventLog": "10.0.5",
"System.Diagnostics.PerformanceCounter": "10.0.5",
"System.DirectoryServices": "10.0.5",
"System.DirectoryServices.AccountManagement": "10.0.5",
"System.DirectoryServices.Protocols": "10.0.5",
"System.Drawing.Common": "10.0.5",
"System.IO.Packaging": "10.0.5",
"System.IO.Ports": "10.0.5",
"System.Management": "10.0.5",
"System.Management.Automation": "7.6.0",
"System.Net.Http.WinHttpHandler": "10.0.5",
"System.Reflection.Context": "10.0.5",
"System.Runtime.Caching": "10.0.5",
"System.Security.Cryptography.Pkcs": "10.0.5",
"System.Security.Cryptography.ProtectedData": "10.0.5",
"System.Security.Cryptography.Xml": "10.0.5",
"System.Security.Permissions": "10.0.5",
"System.ServiceModel.Http": "10.0.652802",
"System.ServiceModel.NetFramingBase": "10.0.652802",
"System.ServiceModel.NetTcp": "10.0.652802",
"System.ServiceModel.Primitives": "10.0.652802",
"System.ServiceModel.Syndication": "10.0.5",
"System.ServiceProcess.ServiceController": "10.0.5",
"System.Speech": "10.0.5",
"System.Windows.Extensions": "10.0.5",
"runtime.android-arm.runtime.native.System.IO.Ports": "10.0.5",
"runtime.android-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.android-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.android-x86.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-arm.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-bionic-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-bionic-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-musl-arm.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-musl-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-musl-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.linux-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.maccatalyst-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.maccatalyst-x64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.native.System.IO.Ports": "10.0.5",
"runtime.osx-arm64.runtime.native.System.IO.Ports": "10.0.5",
"runtime.osx-x64.runtime.native.System.IO.Ports": "10.0.5"
}
},
"System.Management.Automation": {
"type": "Direct",
"requested": "[7.6.0, )",
"resolved": "7.6.0",
"contentHash": "S/AVZCBLZAsfZ+Oe29GuH45bi8Gi5inskQ4IE8Q5bvgtuF4AIwuXPkpnZK5nzF+9XDz+hF31yS8w1C15HvZhlg==",
"dependencies": {
"Microsoft.ApplicationInsights": "2.23.0",
"Microsoft.Management.Infrastructure": "3.0.0",
"Microsoft.PowerShell.CoreCLR.Eventing": "7.6.0",
"Microsoft.PowerShell.Native": "700.0.0-rc.1",
"Microsoft.Security.Extensions": "1.4.0",
"Microsoft.Win32.Registry.AccessControl": "10.0.5",
"Newtonsoft.Json": "13.0.4",
"System.CodeDom": "10.0.5",
"System.Configuration.ConfigurationManager": "10.0.5",
"System.Diagnostics.EventLog": "10.0.5",
"System.DirectoryServices": "10.0.5",
"System.Management": "10.0.5",
"System.Security.Cryptography.Pkcs": "10.0.5",
"System.Security.Cryptography.ProtectedData": "10.0.5",
"System.Security.Permissions": "10.0.5",
"System.Windows.Extensions": "10.0.5"
}
},
"Microsoft.Management.Infrastructure.CimCmdlets": {
"type": "Transitive",
"resolved": "7.6.0",
"contentHash": "Th5W4CyHWLVGL8wiIlcTBKK7ggxLB+Tz3K9ixQzcBtdOtBo9O+iRNtiTyVgBwCkGrMxtc/HBLWUaCFAIIn327Q==",
"dependencies": {
"System.Management.Automation": "7.6.0"
}
},
"Microsoft.Management.Infrastructure.Runtime.Unix": {
"type": "Transitive",
"resolved": "3.0.0",
"contentHash": "QZE3uEDvZ0m7LabQvcmNOYHp7v1QPBVMpB/ild0WEE8zqUVAP5y9rRI5we37ImI1bQmW5pZ+3HNC70POPm0jBQ=="
},
"Microsoft.Management.Infrastructure.Runtime.Win": {
"type": "Transitive",
"resolved": "3.0.0",