-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.lock.json
More file actions
1308 lines (1308 loc) · 56.9 KB
/
packages.lock.json
File metadata and controls
1308 lines (1308 loc) · 56.9 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-windows7.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-48, )",
"resolved": "5.0.0-beta-48",
"contentHash": "y1Ej5JSH36WjS5t65qyNgNvPeuR67igLL924YqrRPU/sV7gWqNCYFUOJ8JZhM+v8ZGniq0vtfMlmym0/jD4uWA=="
},
"Microsoft.NET.ILLink.Tasks": {
"type": "Direct",
"requested": "[10.0.2, )",
"resolved": "10.0.2",
"contentHash": "sXdDtMf2qcnbygw9OdE535c2lxSxrZP8gO4UhDJ0xiJbl1wIqXS1OTcTDFTIJPOFd6Mhcm8gPEthqWGUxBsTqw=="
},
"Microsoft.PowerShell.Commands.Diagnostics": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "wOuwP94fXoNYjkES/asy8zZ/Zk93IyUSF6iY+ae8S+Y+UfMyNHoB66ICVBmedqMNwCorQTx3R5OZwzrTtqCCnA==",
"dependencies": {
"System.Management.Automation": "7.6.0-preview.3"
}
},
"Microsoft.PowerShell.Commands.Management": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "UonfM95CxxD1FnH7WmnbpXtbuOaNMRZJO/HO4z9FGeQ8WBRrtwMyNmHp7RRvy5N1+cu8nk4b7GME8Zw7nF+t7g==",
"dependencies": {
"Microsoft.PowerShell.Security": "7.6.0-preview.3",
"System.ServiceProcess.ServiceController": "9.0.2"
}
},
"Microsoft.PowerShell.Commands.Utility": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "c5P13VBI4LP7/hBWHqGSnB+OQ36ivQdqd356FeUgXpzjzLe4BL0V0D6ScYkTwfrM58ZKk9TEcwVZuzkI91ZzSg==",
"dependencies": {
"JsonSchema.Net": "7.3.3",
"Markdig.Signed": "0.40.0",
"Microsoft.CodeAnalysis.CSharp": "4.12.0",
"Microsoft.PowerShell.MarkdownRender": "7.2.1",
"System.Management.Automation": "7.6.0-preview.3"
}
},
"Microsoft.PowerShell.ConsoleHost": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "lHTlwAg1kTkWjM5UH1uliEL4NSops0r3CVC+VOA7ir46xsTqJbTFByAPey6wRIkKuOXW2E8wbcNG8eDXzMOIMQ==",
"dependencies": {
"System.Management.Automation": "7.6.0-preview.3"
}
},
"Microsoft.PowerShell.SDK": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "jOtOeFb6JEZU8a3lxaemhFCflPaw5a8VQlFOcNMqhgQ/w+metq29mV4oYvJWBCY9ItbjY/ZBWP4qgQhJ1o55+g==",
"dependencies": {
"Microsoft.Bcl.AsyncInterfaces": "9.0.2",
"Microsoft.Extensions.ObjectPool": "9.0.2",
"Microsoft.Management.Infrastructure.CimCmdlets": "7.6.0-preview.3",
"Microsoft.PowerShell.Commands.Diagnostics": "7.6.0-preview.3",
"Microsoft.PowerShell.Commands.Management": "7.6.0-preview.3",
"Microsoft.PowerShell.Commands.Utility": "7.6.0-preview.3",
"Microsoft.PowerShell.ConsoleHost": "7.6.0-preview.3",
"Microsoft.PowerShell.Security": "7.6.0-preview.3",
"Microsoft.WSMan.Management": "7.6.0-preview.3",
"Microsoft.Windows.Compatibility": "9.0.2",
"System.Data.SqlClient": "4.9.0",
"System.Management.Automation": "7.6.0-preview.3",
"System.Net.Http.WinHttpHandler": "9.0.2",
"System.Private.ServiceModel": "4.10.3",
"System.ServiceModel.Duplex": "4.10.3",
"System.ServiceModel.Http": "4.10.3",
"System.ServiceModel.NetTcp": "4.10.3",
"System.ServiceModel.Primitives": "4.10.3",
"System.ServiceModel.Security": "4.10.3"
}
},
"Microsoft.WSMan.Management": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "4O/vH6sWj1qon7WzoS3HgcgqUuUG39+OItEnIWan/vidynbMdoDKB7UtvEhWf+tAbbUDVcHUv5JzahXTBRmc2Q==",
"dependencies": {
"Microsoft.WSMan.Runtime": "7.6.0-preview.3",
"System.Management.Automation": "7.6.0-preview.3",
"System.ServiceProcess.ServiceController": "9.0.2"
}
},
"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-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "utkbOkDL7plAl021EZsgoyW7poVKa1oFEPrwlyGCXgMPAmwaSscXFToTTDTJdDQLG337aY+QrpzjMe35B6vXwg==",
"dependencies": {
"Microsoft.ApplicationInsights": "2.22.0",
"Microsoft.Management.Infrastructure": "3.0.0",
"Microsoft.PowerShell.CoreCLR.Eventing": "7.6.0-preview.3",
"Microsoft.PowerShell.Native": "7.4.0",
"Microsoft.Security.Extensions": "1.4.0",
"Newtonsoft.Json": "13.0.3",
"System.Management": "9.0.2"
}
},
"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.3.3",
"contentHash": "d1cSLfTHzv81aOqq5SqpJv6Uw78a45sovxr7EpEPHBG0Nrc8xSg1F5/jRdETeV5cbbytFGcTaVhVFaT7MCEdJg==",
"dependencies": {
"JsonPointer.Net": "5.3.1"
}
},
"Markdig.Signed": {
"type": "Transitive",
"resolved": "0.40.0",
"contentHash": "tuoVAXkGYdXyqIq+wkqFFn1LpJzsAuxghqi+MxDc+CrHdQWCMtCsycXMkNcsgsjJeUpFYHqcSBUUzZXEsN9ejQ=="
},
"Microsoft.ApplicationInsights": {
"type": "Transitive",
"resolved": "2.22.0",
"contentHash": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw=="
},
"Microsoft.Bcl.AsyncInterfaces": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "1CED0BGD7dCKsbe7tDhzpPB2Qdi9x35QChu6zkBEI4s0T5bDkkttGReqQnOeOfRNSxtP2WvpX6Ik/0O93XDuMw=="
},
"Microsoft.CodeAnalysis.Analyzers": {
"type": "Transitive",
"resolved": "3.3.4",
"contentHash": "AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g=="
},
"Microsoft.CodeAnalysis.Common": {
"type": "Transitive",
"resolved": "4.12.0",
"contentHash": "c1kNYihL2gdcuU1dqm8R8YeA4YkB43TpU3pa2r66Uooh6AAhRtENzj9A4Kj0a+H8JDDyuTjNZql9XlVUzV+UjA==",
"dependencies": {
"Microsoft.CodeAnalysis.Analyzers": "3.3.4"
}
},
"Microsoft.CodeAnalysis.CSharp": {
"type": "Transitive",
"resolved": "4.12.0",
"contentHash": "30vVQ1MizeC22iEdEvI2w0eTIYG43/L20yBzuQH01xKzJgHAoWehzI2F8u07o4mXh4DGMOjQF7aEm0zzvsG3Mg==",
"dependencies": {
"Microsoft.CodeAnalysis.Analyzers": "3.3.4",
"Microsoft.CodeAnalysis.Common": "[4.12.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": "9.0.2",
"contentHash": "nWx7uY6lfkmtpyC2dGc0IxtrZZs/LnLCQHw3YYQucbqWj8a27U/dZ+eh72O3ZiolqLzzLkVzoC+w/M8dZwxRTw=="
},
"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-preview.3",
"contentHash": "Mlr/zOJuXYHo4EZZPBD7H46NyiitJs07f/EmpHBAP3q/AXYl67yXcegt6YcE2iB4TBPJtzXniCaRFx/e+Oxy7g==",
"dependencies": {
"System.Management.Automation": "7.6.0-preview.3"
}
},
"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.CoreCLR.Eventing": {
"type": "Transitive",
"resolved": "7.6.0-preview.3",
"contentHash": "juhqdiJ+9V6dcSTlgV+qER2C1ydQ+OfieNAYthm5BoUkTLqBf8NWsUYMfnhmO/vLJxnS+I8la/eHuCwRsJseuQ=="
},
"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": "7.4.0",
"contentHash": "FlaJ3JBWhqFToYT0ycMb/Xxzoof7oTQbNyI4UikgubC7AMWt5ptBNKjIAMPvOcvEHr+ohaO9GvRWp3tiyS3sKw=="
},
"Microsoft.PowerShell.Security": {
"type": "Transitive",
"resolved": "7.6.0-preview.3",
"contentHash": "98xho3etkl8AhY68fc1rLtwnndubfTmOG46N0BvH/1qxBXDJ/xMSdVw0pHP/1gqu8o6L8xnKIJrAKnzcmkxdCQ==",
"dependencies": {
"System.Management.Automation": "7.6.0-preview.3"
}
},
"Microsoft.Security.Extensions": {
"type": "Transitive",
"resolved": "1.4.0",
"contentHash": "MnHXttc0jHbRrGdTJ+yJBbGDoa4OXhtnKXHQw70foMyAooFtPScZX/dN+Nib47nuglc9Gt29Gfb5Zl+1lAuTeA=="
},
"Microsoft.Windows.Compatibility": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "k5XR+3ZPppWvmzvkkR6MfYh+LDrQZG5LGxoaQ2zcmR4GIyVE9GZCsstrogcuu/aPGeZlnydse+lur8ytNMI6Tg==",
"dependencies": {
"System.ComponentModel.Composition": "9.0.2",
"System.ComponentModel.Composition.Registration": "9.0.2",
"System.Data.Odbc": "9.0.2",
"System.Data.OleDb": "9.0.2",
"System.Data.SqlClient": "4.8.6",
"System.DirectoryServices.AccountManagement": "9.0.2",
"System.DirectoryServices.Protocols": "9.0.2",
"System.IO.Ports": "9.0.2",
"System.Management": "9.0.2",
"System.Reflection.Context": "9.0.2",
"System.Runtime.Caching": "9.0.2",
"System.ServiceModel.Duplex": "4.10.0",
"System.ServiceModel.Http": "4.10.0",
"System.ServiceModel.NetTcp": "4.10.0",
"System.ServiceModel.Primitives": "4.10.0",
"System.ServiceModel.Security": "4.10.0",
"System.ServiceModel.Syndication": "9.0.2",
"System.ServiceProcess.ServiceController": "9.0.2",
"System.Speech": "9.0.2",
"System.Web.Services.Description": "4.10.0"
}
},
"Microsoft.WSMan.Runtime": {
"type": "Transitive",
"resolved": "7.6.0-preview.3",
"contentHash": "0LoKhqJwSRjV72xo/dCYJIjzLxILu5+A0ZFGS0LhUZ2ENwyfEkCMXNvvjyY3aPhPArguDbdKK1acsG5zXoW6hA=="
},
"Newtonsoft.Json": {
"type": "Transitive",
"resolved": "13.0.3",
"contentHash": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ=="
},
"NuGet.Configuration": {
"type": "Transitive",
"resolved": "6.9.1",
"contentHash": "GM06pcUzWdNsizeGciqCjAhryfI1F/rQPETLDF+8pDRgzVpA+wKAR01/4aFU+IXzugnQ9LqOb5YyCRuR1OVZiQ==",
"dependencies": {
"NuGet.Common": "6.9.1"
}
},
"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"
}
},
"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": "9.0.2",
"contentHash": "8KolqwbQ0VdgTCTwK5+A+AjhoO7gaMXlVQrCBSPs4pabdrADVyMzT4m0bCVnlr3BYkA1E0hwSFfzcjrJfUfMJA=="
},
"runtime.android-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "g4PXUC/ZlObiF6MXYx1jbTJuonWF00BljNcq3sSRBP/eLfJhTep54eKH3+PfPqqg90aiDCT8/va9ALVno4yLzQ=="
},
"runtime.android-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "ygB47B8//yT97qPnQHTDwzj+rqukcI4UcuBzk8YDKtoskJS+tn21OOtMOlr922m7YEPYnOOwZygrx/fRaDKf1g=="
},
"runtime.android-x86.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "D6jf7vDJHKXU9didjUYkgbMUGaeFwVqq91tRLzw1CqoDIBXcAxms8UlU4pap6qUMLuoa0DM3CrTQQzVOgEDaxA=="
},
"runtime.linux-arm.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "bsXuCSpyPqJtdKXQ4+zHhmP9iZUj+SY9UwKM++uCZY/40fO/05u54H5F9qE2II4OJBzo2ea4X2xxRAhy0ieemA=="
},
"runtime.linux-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "SoNWxczlEI5UaAwgKxwosooo+0eYbkWD7mWTW4vhtWCEmebzcFmjTxMNiKP0/elFrT9AZE5kqsylUW86Xf61Ew=="
},
"runtime.linux-bionic-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "A1pXuhSvP59vjsl98kj/IazdPExslkohS/8Co+GJsCcLj1ITqHkC1jJXeiQ/LCFiYVANT0UusZ7rUWCfNhgHZg=="
},
"runtime.linux-bionic-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "8HrGBFKVfuiiRtywSHYYu4P6GehmJZkdI+YN5J94WBspe28Pty0Uy/PTUDkzUOjdcZN/lyJ1l0bJalJE7iECUA=="
},
"runtime.linux-musl-arm.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "7IFSSoDB6j8GX6OTyfFvYH79J0xoGpC24xDGpOICohiC5OVIuCXyi94CWtydnpvMQzLZeUXSmVMRG6QQvlJTjg=="
},
"runtime.linux-musl-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "0jyuKKQ+MKzZg0QBfOevQNaO+EaCTLVAgHXrrE+TnRx4RpsSWWhubhjFhfdwgXPaIJp7s22ziDZlFfhaEofzqA=="
},
"runtime.linux-musl-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "eIAL7aIpokin87Q0k7TrvZappuQqOJlwYUC7rjlAyaD57sCGknFPMcK6Dy5/4PndUUynhuv4eHWiQ+JNqmrZzA=="
},
"runtime.linux-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "OnivEH6g0lJ9RqxBGjN4v2DmQ2ujnxKQTl2+DuWJE4P1X5xBZML9wH9i9Z3ctClIQW6erLtb6WbAv/Wu67gEBw=="
},
"runtime.maccatalyst-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "2CdJqVTAiDStC6Osc13Xn6tNoMFeKg2wXhVKDcdtp03JrAEaQDxS/8Lqf78CCNqz3d5Y8Ao747Wcw1OkoVjguw=="
},
"runtime.maccatalyst-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "H9WGv+kxTQkOwegBtGoFU1YhFx6sNe1QYVBy1uS3oo+28XrvBr3rqehbz+CEs9L9kbVXION/7jwN2MV4rnOHGg=="
},
"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": "9.0.2",
"contentHash": "vDSDKmQScIAjYBb2sBuuuAa35juhCmUzk1qyybJrHzZ0pigKZgxhqtDBiLoIdN6epjRfX5uwNJPrNTdW9awxuA==",
"dependencies": {
"runtime.android-arm.runtime.native.System.IO.Ports": "9.0.2",
"runtime.android-arm64.runtime.native.System.IO.Ports": "9.0.2",
"runtime.android-x64.runtime.native.System.IO.Ports": "9.0.2",
"runtime.android-x86.runtime.native.System.IO.Ports": "9.0.2",
"runtime.linux-arm.runtime.native.System.IO.Ports": "9.0.2",
"runtime.linux-arm64.runtime.native.System.IO.Ports": "9.0.2",
"runtime.linux-bionic-arm64.runtime.native.System.IO.Ports": "9.0.2",
"runtime.linux-bionic-x64.runtime.native.System.IO.Ports": "9.0.2",
"runtime.linux-musl-arm.runtime.native.System.IO.Ports": "9.0.2",
"runtime.linux-musl-arm64.runtime.native.System.IO.Ports": "9.0.2",
"runtime.linux-musl-x64.runtime.native.System.IO.Ports": "9.0.2",
"runtime.linux-x64.runtime.native.System.IO.Ports": "9.0.2",
"runtime.maccatalyst-arm64.runtime.native.System.IO.Ports": "9.0.2",
"runtime.maccatalyst-x64.runtime.native.System.IO.Ports": "9.0.2",
"runtime.osx-arm64.runtime.native.System.IO.Ports": "9.0.2",
"runtime.osx-x64.runtime.native.System.IO.Ports": "9.0.2"
}
},
"runtime.osx-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "aKmjKX0GLAuLF8iZQgkvEfNgsKfXfJ93mqlcLyxlGcb4f0u1HCPOf97IJI4HAOGmwlqw1RTQyEEMVes54S7o1Q=="
},
"runtime.osx-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "aQDPDCg6seSBRJvx45K8heC2Q1u8uKZ+u52RnREKh6MdHx+E1WlEOqs7u5MH5E3dP6Hw6BIYSdvoElRi8fBB3Q=="
},
"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.ComponentModel.Composition": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "a0U4avrdO1YZfLY3YmjuRIFN3D9ufNBxtXyRVr7JwM0qay0e5EGORnbQ2od8VV53UWDAO4ZePbjXC169uzmZ8w=="
},
"System.ComponentModel.Composition.Registration": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "XyPttiV+ss3Cs3Irgpyvdz1f1/UGe8Qcik40DUlfqpPyWChuPfxg+iJQ988JLuPmtLYOL0AIHXIchgHDEvW9jg==",
"dependencies": {
"System.ComponentModel.Composition": "9.0.2",
"System.Reflection.Context": "9.0.2"
}
},
"System.Data.Odbc": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "Lr/TsB6AmNWI2Ehb4uGwmgzMnHIXb2+o1AgiB9XOn6ABrcM8C3+GkXEYdO2wV6PnKCTdklkdw4TD1xSKRD4dmw=="
},
"System.Data.OleDb": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "7jJf3gmMMV7MF7xe1JgpqjMuMzJ8BrHSqDKALjNKWgW4pWxX4BTbPX/p636Y++jA3FsC57tSu/gvFmyob5+wGQ=="
},
"System.Data.SqlClient": {
"type": "Transitive",
"resolved": "4.9.0",
"contentHash": "j4KJO+vC62NyUtNHz854njEqXbT8OmAa5jb1nrGfYWBOcggyYUQE0w/snXeaCjdvkSKWuUD+hfvlbN8pTrJTXg==",
"dependencies": {
"runtime.native.System.Data.SqlClient.sni": "4.4.0"
}
},
"System.DirectoryServices.AccountManagement": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "+1ZrjbfGTQ8cTJ9hUycOVQMXKO9JAZ1V5rSPBiBUJJe+50eQb2NYkP5CCfTGRal4+iVNUBTB1B16+T5mft/YIQ==",
"dependencies": {
"System.DirectoryServices.Protocols": "9.0.2"
}
},
"System.DirectoryServices.Protocols": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "PIsrugQvUdJiuxU+oUvJYHBDUh4DX+s9rZDr082DlWe02nSPXqiYZ+bBFMw0ppNKmC0hVaXBcY5K8+bwtBlKAQ=="
},
"System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "8s2COaRyV3om826x0rd2Y5bzpLWmS5KHAIUpG3BWYKxFmdLWM2UTOWzp6/x9rGutbJbfFra8QLfhar4kR/7Ygg==",
"dependencies": {
"runtime.native.System.IO.Ports": "9.0.2"
}
},
"System.Management": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "U6SXFe1kfJySAvcPPdbdb+fycaY+3c/KV0PwTjurvrALMnlSm37s5z8zcoI7qbkV2kYhxiLfsZRGiF0XeSsqSQ=="
},
"System.Net.Http.WinHttpHandler": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "cYglGzfCs7tdIc3Q86Suw9AAtG2lPkmHohRniyNvP9d5HwFBXmpUA4GIqw8y4iKp19F1SvZArm/dVsvgGi32gg=="
},
"System.Private.ServiceModel": {
"type": "Transitive",
"resolved": "4.10.3",
"contentHash": "BcUV7OERlLqGxDXZuIyIMMmk1PbqBblLRbAoigmzIUx/M8A+8epvyPyXRpbgoucKH7QmfYdQIev04Phx2Co08A==",
"dependencies": {
"Microsoft.Bcl.AsyncInterfaces": "5.0.0",
"Microsoft.Extensions.ObjectPool": "5.0.10"
}
},
"System.Reflection.Context": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "t3Gp3/8KojzMyXnx5IZ9FgjlO3Xf3BC20iYxut3+EJQHXxMv9FeSEaj9mUF/uyMs/qNNyUyqPcg5/ssuHsDfIg=="
},
"System.Runtime.Caching": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "ePGvHiW5gEcRck8X9qx18yAi91TekaM/64yyGDJBmge/GBkMbIiNRYcDSR3yw8ltE/I58xuzM1cghU8LsMlOyA=="
},
"System.ServiceModel.Duplex": {
"type": "Transitive",
"resolved": "4.10.3",
"contentHash": "IZ8ZahvTenWML7/jGUXSCm6jHlxpMbcb+Hy+h5p1WP9YVtb+Er7FHRRGizqQMINEdK6HhWpD6rzr5PdxNyusdg==",
"dependencies": {
"System.Private.ServiceModel": "4.10.3",
"System.ServiceModel.Primitives": "4.10.3"
}
},
"System.ServiceModel.Http": {
"type": "Transitive",
"resolved": "4.10.3",
"contentHash": "hodkn0rPTYmoZ9EIPwcleUrOi1gZBPvU0uFvzmJbyxl1lIpVM5GxTrs/pCETStjOXCiXhBDoZQYajquOEfeW/w==",
"dependencies": {
"System.Private.ServiceModel": "4.10.3",
"System.ServiceModel.Primitives": "4.10.3"
}
},
"System.ServiceModel.NetTcp": {
"type": "Transitive",
"resolved": "4.10.3",
"contentHash": "tP7GN7ehqSIQEz7yOJEtY8ziTpfavf2IQMPKa7r9KGQ75+uEW6/wSlWez7oKQwGYuAHbcGhpJvdG6WoVMKYgkw==",
"dependencies": {
"System.Private.ServiceModel": "4.10.3",
"System.ServiceModel.Primitives": "4.10.3"
}
},
"System.ServiceModel.Primitives": {
"type": "Transitive",
"resolved": "4.10.3",
"contentHash": "aNcdry95wIP1J+/HcLQM/f/AA73LnBQDNc2uCoZ+c1//KpVRp8nMZv5ApMwK+eDNVdCK8G0NLInF+xG3mfQL+g==",
"dependencies": {
"System.Private.ServiceModel": "4.10.3"
}
},
"System.ServiceModel.Security": {
"type": "Transitive",
"resolved": "4.10.3",
"contentHash": "vqelKb7DvP2inb6LDJ5Igi8wpOYdtLXn5luDW5qEaqkV2sYO1pKlVYBpr6g6m5SevzbdZlVNu67dQiD/H6EdGQ==",
"dependencies": {
"System.Private.ServiceModel": "4.10.3",
"System.ServiceModel.Primitives": "4.10.3"
}
},
"System.ServiceModel.Syndication": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "RMAlQRvIqallRGcUQsuuiVcHCerLjxZ6M9ZGspI+8Bo4mozL70vdSdC8h7ukPGMn0YCa4VLchDhy04yfbObODg=="
},
"System.ServiceProcess.ServiceController": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "c69iiGEZ4xUv8aZTFd45K4SM08L2NLepihJ5vAb7Ekzgtk2Y8bUwt+3PQVstUl020dXW16R8hpiq/RZuzFFVyw=="
},
"System.Speech": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "arQPudYrkW+cZfF7qyKcv9ukR7lM54AKyQDPX/2RPrC1EFlkYWHeOI6ST6VeI8hefW4zH9f/FnThuC70LFNd9A=="
},
"System.Web.Services.Description": {
"type": "Transitive",
"resolved": "4.10.0",
"contentHash": "Dwr64geRujAwnI+wPMJP1rf4pFaYRITrAS7EIGd0GVMwQ8OayM6ypwmnAPzQG4YTyN84w6KD5Rv8LJywYK+vUA=="
}
},
"net10.0-windows7.0/linux-x64": {
"Microsoft.PowerShell.Commands.Diagnostics": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "wOuwP94fXoNYjkES/asy8zZ/Zk93IyUSF6iY+ae8S+Y+UfMyNHoB66ICVBmedqMNwCorQTx3R5OZwzrTtqCCnA==",
"dependencies": {
"System.Management.Automation": "7.6.0-preview.3"
}
},
"Microsoft.PowerShell.Commands.Management": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "UonfM95CxxD1FnH7WmnbpXtbuOaNMRZJO/HO4z9FGeQ8WBRrtwMyNmHp7RRvy5N1+cu8nk4b7GME8Zw7nF+t7g==",
"dependencies": {
"Microsoft.PowerShell.Security": "7.6.0-preview.3",
"System.ServiceProcess.ServiceController": "9.0.2"
}
},
"Microsoft.PowerShell.Commands.Utility": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "c5P13VBI4LP7/hBWHqGSnB+OQ36ivQdqd356FeUgXpzjzLe4BL0V0D6ScYkTwfrM58ZKk9TEcwVZuzkI91ZzSg==",
"dependencies": {
"JsonSchema.Net": "7.3.3",
"Markdig.Signed": "0.40.0",
"Microsoft.CodeAnalysis.CSharp": "4.12.0",
"Microsoft.PowerShell.MarkdownRender": "7.2.1",
"System.Management.Automation": "7.6.0-preview.3"
}
},
"Microsoft.PowerShell.ConsoleHost": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "lHTlwAg1kTkWjM5UH1uliEL4NSops0r3CVC+VOA7ir46xsTqJbTFByAPey6wRIkKuOXW2E8wbcNG8eDXzMOIMQ==",
"dependencies": {
"System.Management.Automation": "7.6.0-preview.3"
}
},
"Microsoft.PowerShell.SDK": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "jOtOeFb6JEZU8a3lxaemhFCflPaw5a8VQlFOcNMqhgQ/w+metq29mV4oYvJWBCY9ItbjY/ZBWP4qgQhJ1o55+g==",
"dependencies": {
"Microsoft.Bcl.AsyncInterfaces": "9.0.2",
"Microsoft.Extensions.ObjectPool": "9.0.2",
"Microsoft.Management.Infrastructure.CimCmdlets": "7.6.0-preview.3",
"Microsoft.PowerShell.Commands.Diagnostics": "7.6.0-preview.3",
"Microsoft.PowerShell.Commands.Management": "7.6.0-preview.3",
"Microsoft.PowerShell.Commands.Utility": "7.6.0-preview.3",
"Microsoft.PowerShell.ConsoleHost": "7.6.0-preview.3",
"Microsoft.PowerShell.Security": "7.6.0-preview.3",
"Microsoft.WSMan.Management": "7.6.0-preview.3",
"Microsoft.Windows.Compatibility": "9.0.2",
"System.Data.SqlClient": "4.9.0",
"System.Management.Automation": "7.6.0-preview.3",
"System.Net.Http.WinHttpHandler": "9.0.2",
"System.Private.ServiceModel": "4.10.3",
"System.ServiceModel.Duplex": "4.10.3",
"System.ServiceModel.Http": "4.10.3",
"System.ServiceModel.NetTcp": "4.10.3",
"System.ServiceModel.Primitives": "4.10.3",
"System.ServiceModel.Security": "4.10.3"
}
},
"Microsoft.WSMan.Management": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "4O/vH6sWj1qon7WzoS3HgcgqUuUG39+OItEnIWan/vidynbMdoDKB7UtvEhWf+tAbbUDVcHUv5JzahXTBRmc2Q==",
"dependencies": {
"Microsoft.WSMan.Runtime": "7.6.0-preview.3",
"System.Management.Automation": "7.6.0-preview.3",
"System.ServiceProcess.ServiceController": "9.0.2"
}
},
"System.Management.Automation": {
"type": "Direct",
"requested": "[7.6.0-preview.3, )",
"resolved": "7.6.0-preview.3",
"contentHash": "utkbOkDL7plAl021EZsgoyW7poVKa1oFEPrwlyGCXgMPAmwaSscXFToTTDTJdDQLG337aY+QrpzjMe35B6vXwg==",
"dependencies": {
"Microsoft.ApplicationInsights": "2.22.0",
"Microsoft.Management.Infrastructure": "3.0.0",
"Microsoft.PowerShell.CoreCLR.Eventing": "7.6.0-preview.3",
"Microsoft.PowerShell.Native": "7.4.0",
"Microsoft.Security.Extensions": "1.4.0",
"Newtonsoft.Json": "13.0.3",
"System.Management": "9.0.2"
}
},
"Microsoft.Management.Infrastructure.CimCmdlets": {
"type": "Transitive",
"resolved": "7.6.0-preview.3",
"contentHash": "Mlr/zOJuXYHo4EZZPBD7H46NyiitJs07f/EmpHBAP3q/AXYl67yXcegt6YcE2iB4TBPJtzXniCaRFx/e+Oxy7g==",
"dependencies": {
"System.Management.Automation": "7.6.0-preview.3"
}
},
"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.CoreCLR.Eventing": {
"type": "Transitive",
"resolved": "7.6.0-preview.3",
"contentHash": "juhqdiJ+9V6dcSTlgV+qER2C1ydQ+OfieNAYthm5BoUkTLqBf8NWsUYMfnhmO/vLJxnS+I8la/eHuCwRsJseuQ=="
},
"Microsoft.PowerShell.Native": {
"type": "Transitive",
"resolved": "7.4.0",
"contentHash": "FlaJ3JBWhqFToYT0ycMb/Xxzoof7oTQbNyI4UikgubC7AMWt5ptBNKjIAMPvOcvEHr+ohaO9GvRWp3tiyS3sKw=="
},
"Microsoft.PowerShell.Security": {
"type": "Transitive",
"resolved": "7.6.0-preview.3",
"contentHash": "98xho3etkl8AhY68fc1rLtwnndubfTmOG46N0BvH/1qxBXDJ/xMSdVw0pHP/1gqu8o6L8xnKIJrAKnzcmkxdCQ==",
"dependencies": {
"System.Management.Automation": "7.6.0-preview.3"
}
},
"Microsoft.Security.Extensions": {
"type": "Transitive",
"resolved": "1.4.0",
"contentHash": "MnHXttc0jHbRrGdTJ+yJBbGDoa4OXhtnKXHQw70foMyAooFtPScZX/dN+Nib47nuglc9Gt29Gfb5Zl+1lAuTeA=="
},
"Microsoft.WSMan.Runtime": {
"type": "Transitive",
"resolved": "7.6.0-preview.3",
"contentHash": "0LoKhqJwSRjV72xo/dCYJIjzLxILu5+A0ZFGS0LhUZ2ENwyfEkCMXNvvjyY3aPhPArguDbdKK1acsG5zXoW6hA=="
},
"runtime.android-arm.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "8KolqwbQ0VdgTCTwK5+A+AjhoO7gaMXlVQrCBSPs4pabdrADVyMzT4m0bCVnlr3BYkA1E0hwSFfzcjrJfUfMJA=="
},
"runtime.android-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "g4PXUC/ZlObiF6MXYx1jbTJuonWF00BljNcq3sSRBP/eLfJhTep54eKH3+PfPqqg90aiDCT8/va9ALVno4yLzQ=="
},
"runtime.android-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "ygB47B8//yT97qPnQHTDwzj+rqukcI4UcuBzk8YDKtoskJS+tn21OOtMOlr922m7YEPYnOOwZygrx/fRaDKf1g=="
},
"runtime.android-x86.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "D6jf7vDJHKXU9didjUYkgbMUGaeFwVqq91tRLzw1CqoDIBXcAxms8UlU4pap6qUMLuoa0DM3CrTQQzVOgEDaxA=="
},
"runtime.linux-arm.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "bsXuCSpyPqJtdKXQ4+zHhmP9iZUj+SY9UwKM++uCZY/40fO/05u54H5F9qE2II4OJBzo2ea4X2xxRAhy0ieemA=="
},
"runtime.linux-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "SoNWxczlEI5UaAwgKxwosooo+0eYbkWD7mWTW4vhtWCEmebzcFmjTxMNiKP0/elFrT9AZE5kqsylUW86Xf61Ew=="
},
"runtime.linux-bionic-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "A1pXuhSvP59vjsl98kj/IazdPExslkohS/8Co+GJsCcLj1ITqHkC1jJXeiQ/LCFiYVANT0UusZ7rUWCfNhgHZg=="
},
"runtime.linux-bionic-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "8HrGBFKVfuiiRtywSHYYu4P6GehmJZkdI+YN5J94WBspe28Pty0Uy/PTUDkzUOjdcZN/lyJ1l0bJalJE7iECUA=="
},
"runtime.linux-musl-arm.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "7IFSSoDB6j8GX6OTyfFvYH79J0xoGpC24xDGpOICohiC5OVIuCXyi94CWtydnpvMQzLZeUXSmVMRG6QQvlJTjg=="
},
"runtime.linux-musl-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "0jyuKKQ+MKzZg0QBfOevQNaO+EaCTLVAgHXrrE+TnRx4RpsSWWhubhjFhfdwgXPaIJp7s22ziDZlFfhaEofzqA=="
},
"runtime.linux-musl-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "eIAL7aIpokin87Q0k7TrvZappuQqOJlwYUC7rjlAyaD57sCGknFPMcK6Dy5/4PndUUynhuv4eHWiQ+JNqmrZzA=="
},
"runtime.linux-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "OnivEH6g0lJ9RqxBGjN4v2DmQ2ujnxKQTl2+DuWJE4P1X5xBZML9wH9i9Z3ctClIQW6erLtb6WbAv/Wu67gEBw=="
},
"runtime.maccatalyst-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "2CdJqVTAiDStC6Osc13Xn6tNoMFeKg2wXhVKDcdtp03JrAEaQDxS/8Lqf78CCNqz3d5Y8Ao747Wcw1OkoVjguw=="
},
"runtime.maccatalyst-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "H9WGv+kxTQkOwegBtGoFU1YhFx6sNe1QYVBy1uS3oo+28XrvBr3rqehbz+CEs9L9kbVXION/7jwN2MV4rnOHGg=="
},
"runtime.osx-arm64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "aKmjKX0GLAuLF8iZQgkvEfNgsKfXfJ93mqlcLyxlGcb4f0u1HCPOf97IJI4HAOGmwlqw1RTQyEEMVes54S7o1Q=="
},
"runtime.osx-x64.runtime.native.System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "aQDPDCg6seSBRJvx45K8heC2Q1u8uKZ+u52RnREKh6MdHx+E1WlEOqs7u5MH5E3dP6Hw6BIYSdvoElRi8fBB3Q=="
},
"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.Data.Odbc": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "Lr/TsB6AmNWI2Ehb4uGwmgzMnHIXb2+o1AgiB9XOn6ABrcM8C3+GkXEYdO2wV6PnKCTdklkdw4TD1xSKRD4dmw=="
},
"System.Data.OleDb": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "7jJf3gmMMV7MF7xe1JgpqjMuMzJ8BrHSqDKALjNKWgW4pWxX4BTbPX/p636Y++jA3FsC57tSu/gvFmyob5+wGQ=="
},
"System.Data.SqlClient": {
"type": "Transitive",
"resolved": "4.9.0",
"contentHash": "j4KJO+vC62NyUtNHz854njEqXbT8OmAa5jb1nrGfYWBOcggyYUQE0w/snXeaCjdvkSKWuUD+hfvlbN8pTrJTXg==",
"dependencies": {
"runtime.native.System.Data.SqlClient.sni": "4.4.0"
}
},
"System.DirectoryServices.AccountManagement": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "+1ZrjbfGTQ8cTJ9hUycOVQMXKO9JAZ1V5rSPBiBUJJe+50eQb2NYkP5CCfTGRal4+iVNUBTB1B16+T5mft/YIQ==",
"dependencies": {
"System.DirectoryServices.Protocols": "9.0.2"
}
},
"System.DirectoryServices.Protocols": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "PIsrugQvUdJiuxU+oUvJYHBDUh4DX+s9rZDr082DlWe02nSPXqiYZ+bBFMw0ppNKmC0hVaXBcY5K8+bwtBlKAQ=="
},
"System.IO.Ports": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "8s2COaRyV3om826x0rd2Y5bzpLWmS5KHAIUpG3BWYKxFmdLWM2UTOWzp6/x9rGutbJbfFra8QLfhar4kR/7Ygg==",
"dependencies": {
"runtime.native.System.IO.Ports": "9.0.2"
}
},
"System.Management": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "U6SXFe1kfJySAvcPPdbdb+fycaY+3c/KV0PwTjurvrALMnlSm37s5z8zcoI7qbkV2kYhxiLfsZRGiF0XeSsqSQ=="
},
"System.Net.Http.WinHttpHandler": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "cYglGzfCs7tdIc3Q86Suw9AAtG2lPkmHohRniyNvP9d5HwFBXmpUA4GIqw8y4iKp19F1SvZArm/dVsvgGi32gg=="
},
"System.Runtime.Caching": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "ePGvHiW5gEcRck8X9qx18yAi91TekaM/64yyGDJBmge/GBkMbIiNRYcDSR3yw8ltE/I58xuzM1cghU8LsMlOyA=="
},
"System.ServiceProcess.ServiceController": {
"type": "Transitive",
"resolved": "9.0.2",
"contentHash": "c69iiGEZ4xUv8aZTFd45K4SM08L2NLepihJ5vAb7Ekzgtk2Y8bUwt+3PQVstUl020dXW16R8hpiq/RZuzFFVyw=="
},
"System.Speech": {