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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
   | {   "runtimeTarget": {     "name": ".NETCoreApp,Version=v6.0",     "signature": ""   },   "compilationOptions": {},   "targets": {     ".NETCoreApp,Version=v6.0": {       "webapi_test/1.0.0": {         "dependencies": {           "Dapper": "2.0.123",           "Microsoft.Data.SqlClient": "4.0.0",           "Newtonsoft.Json": "13.0.1",           "Swashbuckle.AspNetCore": "6.2.3",           "Swashbuckle.AspNetCore.Swagger": "6.2.3",           "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3",           "System.Data.OleDb": "6.0.0",           "System.Data.SqlClient": "4.8.3"         },         "runtime": {           "webapi_test.dll": {}         }       },       "Azure.Core/1.6.0": {         "dependencies": {           "Microsoft.Bcl.AsyncInterfaces": "1.0.0",           "System.Buffers": "4.5.1",           "System.Diagnostics.DiagnosticSource": "5.0.0",           "System.Memory": "4.5.3",           "System.Numerics.Vectors": "4.5.0",           "System.Text.Json": "4.6.0",           "System.Threading.Tasks.Extensions": "4.5.2"         },         "runtime": {           "lib/netstandard2.0/Azure.Core.dll": {             "assemblyVersion": "1.6.0.0",             "fileVersion": "1.600.20.52802"           }         }       },       "Azure.Identity/1.3.0": {         "dependencies": {           "Azure.Core": "1.6.0",           "Microsoft.Identity.Client": "4.22.0",           "Microsoft.Identity.Client.Extensions.Msal": "2.16.5",           "System.Memory": "4.5.3",           "System.Security.Cryptography.ProtectedData": "6.0.0",           "System.Text.Json": "4.6.0",           "System.Threading.Tasks.Extensions": "4.5.2"         },         "runtime": {           "lib/netstandard2.0/Azure.Identity.dll": {             "assemblyVersion": "1.3.0.0",             "fileVersion": "1.300.20.56202"           }         }       },       "Dapper/2.0.123": {         "runtime": {           "lib/net5.0/Dapper.dll": {             "assemblyVersion": "2.0.0.0",             "fileVersion": "2.0.123.33578"           }         }       },       "Microsoft.Bcl.AsyncInterfaces/1.0.0": {         "runtime": {           "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {             "assemblyVersion": "1.0.0.0",             "fileVersion": "4.700.19.46214"           }         }       },       "Microsoft.CSharp/4.5.0": {},       "Microsoft.Data.SqlClient/4.0.0": {         "dependencies": {           "Azure.Identity": "1.3.0",           "Microsoft.Data.SqlClient.SNI.runtime": "4.0.0",           "Microsoft.Identity.Client": "4.22.0",           "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",           "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",           "Microsoft.Win32.Registry": "5.0.0",           "System.Buffers": "4.5.1",           "System.Configuration.ConfigurationManager": "6.0.0",           "System.Diagnostics.DiagnosticSource": "5.0.0",           "System.IO": "4.3.0",           "System.Resources.ResourceManager": "4.3.0",           "System.Runtime.Caching": "5.0.0",           "System.Security.Cryptography.Cng": "5.0.0",           "System.Security.Principal.Windows": "5.0.0",           "System.Text.Encoding.CodePages": "5.0.0",           "System.Text.Encodings.Web": "4.7.2"         },         "runtime": {           "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {             "assemblyVersion": "4.0.0.0",             "fileVersion": "4.0.0.0"           }         },         "runtimeTargets": {           "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {             "rid": "unix",             "assetType": "runtime",             "assemblyVersion": "4.0.0.0",             "fileVersion": "4.0.0.0"           },           "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {             "rid": "win",             "assetType": "runtime",             "assemblyVersion": "4.0.0.0",             "fileVersion": "4.0.0.0"           }         }       },       "Microsoft.Data.SqlClient.SNI.runtime/4.0.0": {         "runtimeTargets": {           "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {             "rid": "win-arm",             "assetType": "native",             "fileVersion": "4.0.0.0"           },           "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {             "rid": "win-arm64",             "assetType": "native",             "fileVersion": "4.0.0.0"           },           "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {             "rid": "win-x64",             "assetType": "native",             "fileVersion": "4.0.0.0"           },           "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {             "rid": "win-x86",             "assetType": "native",             "fileVersion": "4.0.0.0"           }         }       },       "Microsoft.Extensions.ApiDescription.Server/3.0.0": {},       "Microsoft.Identity.Client/4.22.0": {         "runtime": {           "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {             "assemblyVersion": "4.22.0.0",             "fileVersion": "4.22.0.0"           }         }       },       "Microsoft.Identity.Client.Extensions.Msal/2.16.5": {         "dependencies": {           "Microsoft.Identity.Client": "4.22.0",           "System.Security.Cryptography.ProtectedData": "6.0.0"         },         "runtime": {           "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": {             "assemblyVersion": "2.16.5.0",             "fileVersion": "2.16.5.0"           }         }       },       "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {         "dependencies": {           "Microsoft.IdentityModel.Tokens": "6.8.0"         },         "runtime": {           "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {             "assemblyVersion": "6.8.0.0",             "fileVersion": "6.8.0.11012"           }         }       },       "Microsoft.IdentityModel.Logging/6.8.0": {         "runtime": {           "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {             "assemblyVersion": "6.8.0.0",             "fileVersion": "6.8.0.11012"           }         }       },       "Microsoft.IdentityModel.Protocols/6.8.0": {         "dependencies": {           "Microsoft.IdentityModel.Logging": "6.8.0",           "Microsoft.IdentityModel.Tokens": "6.8.0"         },         "runtime": {           "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {             "assemblyVersion": "6.8.0.0",             "fileVersion": "6.8.0.11012"           }         }       },       "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {         "dependencies": {           "Microsoft.IdentityModel.Protocols": "6.8.0",           "System.IdentityModel.Tokens.Jwt": "6.8.0"         },         "runtime": {           "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {             "assemblyVersion": "6.8.0.0",             "fileVersion": "6.8.0.11012"           }         }       },       "Microsoft.IdentityModel.Tokens/6.8.0": {         "dependencies": {           "Microsoft.CSharp": "4.5.0",           "Microsoft.IdentityModel.Logging": "6.8.0",           "System.Security.Cryptography.Cng": "5.0.0"         },         "runtime": {           "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {             "assemblyVersion": "6.8.0.0",             "fileVersion": "6.8.0.11012"           }         }       },       "Microsoft.NETCore.Platforms/5.0.0": {},       "Microsoft.NETCore.Targets/1.1.0": {},       "Microsoft.OpenApi/1.2.3": {         "runtime": {           "lib/netstandard2.0/Microsoft.OpenApi.dll": {             "assemblyVersion": "1.2.3.0",             "fileVersion": "1.2.3.0"           }         }       },       "Microsoft.Win32.Registry/5.0.0": {         "dependencies": {           "System.Security.AccessControl": "6.0.0",           "System.Security.Principal.Windows": "5.0.0"         }       },       "Microsoft.Win32.SystemEvents/6.0.0": {         "runtime": {           "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         },         "runtimeTargets": {           "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {             "rid": "win",             "assetType": "runtime",             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         }       },       "Newtonsoft.Json/13.0.1": {         "runtime": {           "lib/netstandard2.0/Newtonsoft.Json.dll": {             "assemblyVersion": "13.0.0.0",             "fileVersion": "13.0.1.25517"           }         }       },       "runtime.native.System.Data.SqlClient.sni/4.7.0": {         "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.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {         "runtimeTargets": {           "runtimes/win-arm64/native/sni.dll": {             "rid": "win-arm64",             "assetType": "native",             "fileVersion": "4.6.25512.1"           }         }       },       "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {         "runtimeTargets": {           "runtimes/win-x64/native/sni.dll": {             "rid": "win-x64",             "assetType": "native",             "fileVersion": "4.6.25512.1"           }         }       },       "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {         "runtimeTargets": {           "runtimes/win-x86/native/sni.dll": {             "rid": "win-x86",             "assetType": "native",             "fileVersion": "4.6.25512.1"           }         }       },       "Swashbuckle.AspNetCore/6.2.3": {         "dependencies": {           "Microsoft.Extensions.ApiDescription.Server": "3.0.0",           "Swashbuckle.AspNetCore.Swagger": "6.2.3",           "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3",           "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3"         }       },       "Swashbuckle.AspNetCore.Swagger/6.2.3": {         "dependencies": {           "Microsoft.OpenApi": "1.2.3"         },         "runtime": {           "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {             "assemblyVersion": "6.2.3.0",             "fileVersion": "6.2.3.0"           }         }       },       "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": {         "dependencies": {           "Swashbuckle.AspNetCore.Swagger": "6.2.3"         },         "runtime": {           "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {             "assemblyVersion": "6.2.3.0",             "fileVersion": "6.2.3.0"           }         }       },       "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": {         "runtime": {           "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {             "assemblyVersion": "6.2.3.0",             "fileVersion": "6.2.3.0"           }         }       },       "System.Buffers/4.5.1": {},       "System.Configuration.ConfigurationManager/6.0.0": {         "dependencies": {           "System.Security.Cryptography.ProtectedData": "6.0.0",           "System.Security.Permissions": "6.0.0"         },         "runtime": {           "lib/net6.0/System.Configuration.ConfigurationManager.dll": {             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         }       },       "System.Data.OleDb/6.0.0": {         "dependencies": {           "System.Configuration.ConfigurationManager": "6.0.0",           "System.Diagnostics.PerformanceCounter": "6.0.0"         },         "runtime": {           "lib/net6.0/System.Data.OleDb.dll": {             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         },         "runtimeTargets": {           "runtimes/win/lib/net6.0/System.Data.OleDb.dll": {             "rid": "win",             "assetType": "runtime",             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         }       },       "System.Data.SqlClient/4.8.3": {         "dependencies": {           "Microsoft.Win32.Registry": "5.0.0",           "System.Security.Principal.Windows": "5.0.0",           "runtime.native.System.Data.SqlClient.sni": "4.7.0"         },         "runtime": {           "lib/netcoreapp2.1/System.Data.SqlClient.dll": {             "assemblyVersion": "4.6.1.3",             "fileVersion": "4.700.21.41603"           }         },         "runtimeTargets": {           "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {             "rid": "unix",             "assetType": "runtime",             "assemblyVersion": "4.6.1.3",             "fileVersion": "4.700.21.41603"           },           "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {             "rid": "win",             "assetType": "runtime",             "assemblyVersion": "4.6.1.3",             "fileVersion": "4.700.21.41603"           }         }       },       "System.Diagnostics.DiagnosticSource/5.0.0": {},       "System.Diagnostics.PerformanceCounter/6.0.0": {         "dependencies": {           "System.Configuration.ConfigurationManager": "6.0.0"         },         "runtime": {           "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         },         "runtimeTargets": {           "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {             "rid": "win",             "assetType": "runtime",             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         }       },       "System.Drawing.Common/6.0.0": {         "dependencies": {           "Microsoft.Win32.SystemEvents": "6.0.0"         },         "runtime": {           "lib/net6.0/System.Drawing.Common.dll": {             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         },         "runtimeTargets": {           "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {             "rid": "unix",             "assetType": "runtime",             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           },           "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {             "rid": "win",             "assetType": "runtime",             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         }       },       "System.Formats.Asn1/5.0.0": {},       "System.Globalization/4.3.0": {         "dependencies": {           "Microsoft.NETCore.Platforms": "5.0.0",           "Microsoft.NETCore.Targets": "1.1.0",           "System.Runtime": "4.3.0"         }       },       "System.IdentityModel.Tokens.Jwt/6.8.0": {         "dependencies": {           "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",           "Microsoft.IdentityModel.Tokens": "6.8.0"         },         "runtime": {           "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {             "assemblyVersion": "6.8.0.0",             "fileVersion": "6.8.0.11012"           }         }       },       "System.IO/4.3.0": {         "dependencies": {           "Microsoft.NETCore.Platforms": "5.0.0",           "Microsoft.NETCore.Targets": "1.1.0",           "System.Runtime": "4.3.0",           "System.Text.Encoding": "4.3.0",           "System.Threading.Tasks": "4.3.0"         }       },       "System.Memory/4.5.3": {},       "System.Numerics.Vectors/4.5.0": {},       "System.Reflection/4.3.0": {         "dependencies": {           "Microsoft.NETCore.Platforms": "5.0.0",           "Microsoft.NETCore.Targets": "1.1.0",           "System.IO": "4.3.0",           "System.Reflection.Primitives": "4.3.0",           "System.Runtime": "4.3.0"         }       },       "System.Reflection.Primitives/4.3.0": {         "dependencies": {           "Microsoft.NETCore.Platforms": "5.0.0",           "Microsoft.NETCore.Targets": "1.1.0",           "System.Runtime": "4.3.0"         }       },       "System.Resources.ResourceManager/4.3.0": {         "dependencies": {           "Microsoft.NETCore.Platforms": "5.0.0",           "Microsoft.NETCore.Targets": "1.1.0",           "System.Globalization": "4.3.0",           "System.Reflection": "4.3.0",           "System.Runtime": "4.3.0"         }       },       "System.Runtime/4.3.0": {         "dependencies": {           "Microsoft.NETCore.Platforms": "5.0.0",           "Microsoft.NETCore.Targets": "1.1.0"         }       },       "System.Runtime.Caching/5.0.0": {         "dependencies": {           "System.Configuration.ConfigurationManager": "6.0.0"         },         "runtime": {           "lib/netstandard2.0/System.Runtime.Caching.dll": {             "assemblyVersion": "4.0.0.0",             "fileVersion": "5.0.20.51904"           }         },         "runtimeTargets": {           "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {             "rid": "win",             "assetType": "runtime",             "assemblyVersion": "4.0.0.0",             "fileVersion": "5.0.20.51904"           }         }       },       "System.Security.AccessControl/6.0.0": {},       "System.Security.Cryptography.Cng/5.0.0": {         "dependencies": {           "System.Formats.Asn1": "5.0.0"         }       },       "System.Security.Cryptography.ProtectedData/6.0.0": {         "runtime": {           "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         },         "runtimeTargets": {           "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {             "rid": "win",             "assetType": "runtime",             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         }       },       "System.Security.Permissions/6.0.0": {         "dependencies": {           "System.Security.AccessControl": "6.0.0",           "System.Windows.Extensions": "6.0.0"         },         "runtime": {           "lib/net6.0/System.Security.Permissions.dll": {             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         }       },       "System.Security.Principal.Windows/5.0.0": {},       "System.Text.Encoding/4.3.0": {         "dependencies": {           "Microsoft.NETCore.Platforms": "5.0.0",           "Microsoft.NETCore.Targets": "1.1.0",           "System.Runtime": "4.3.0"         }       },       "System.Text.Encoding.CodePages/5.0.0": {         "dependencies": {           "Microsoft.NETCore.Platforms": "5.0.0"         }       },       "System.Text.Encodings.Web/4.7.2": {},       "System.Text.Json/4.6.0": {},       "System.Threading.Tasks/4.3.0": {         "dependencies": {           "Microsoft.NETCore.Platforms": "5.0.0",           "Microsoft.NETCore.Targets": "1.1.0",           "System.Runtime": "4.3.0"         }       },       "System.Threading.Tasks.Extensions/4.5.2": {},       "System.Windows.Extensions/6.0.0": {         "dependencies": {           "System.Drawing.Common": "6.0.0"         },         "runtime": {           "lib/net6.0/System.Windows.Extensions.dll": {             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         },         "runtimeTargets": {           "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {             "rid": "win",             "assetType": "runtime",             "assemblyVersion": "6.0.0.0",             "fileVersion": "6.0.21.52210"           }         }       }     }   },   "libraries": {     "webapi_test/1.0.0": {       "type": "project",       "serviceable": false,       "sha512": ""     },     "Azure.Core/1.6.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-kI4m2NsODPOrxo0OoKjk6B3ADbdovhDQIEmI4039upjjZKRaewVLx/Uz4DfRa/NtnIRZQPUALe1yvdHWAoRt4w==",       "path": "azure.core/1.6.0",       "hashPath": "azure.core.1.6.0.nupkg.sha512"     },     "Azure.Identity/1.3.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-l1SYfZKOFBuUFG7C2SWHmJcrQQaiXgBdVCycx4vcZQkC6efDVt7mzZ5pfJAFEJDBUq7mjRQ0RPq9ZDGdSswqMg==",       "path": "azure.identity/1.3.0",       "hashPath": "azure.identity.1.3.0.nupkg.sha512"     },     "Dapper/2.0.123": {       "type": "package",       "serviceable": true,       "sha512": "sha512-RDFF4rBLLmbpi6pwkY7q/M6UXHRJEOerplDGE5jwEkP/JGJnBauAClYavNKJPW1yOTWRPIyfj4is3EaJxQXILQ==",       "path": "dapper/2.0.123",       "hashPath": "dapper.2.0.123.nupkg.sha512"     },     "Microsoft.Bcl.AsyncInterfaces/1.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==",       "path": "microsoft.bcl.asyncinterfaces/1.0.0",       "hashPath": "microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512"     },     "Microsoft.CSharp/4.5.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",       "path": "microsoft.csharp/4.5.0",       "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"     },     "Microsoft.Data.SqlClient/4.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-YGYfWg3Xth2EXAy8TBN4Fgj0FY6BnGgCtT6ypKuqKojiGAtLsRtRbP8KOXNy8+SMK6AVzAguvl8K5zX9uqg8yA==",       "path": "microsoft.data.sqlclient/4.0.0",       "hashPath": "microsoft.data.sqlclient.4.0.0.nupkg.sha512"     },     "Microsoft.Data.SqlClient.SNI.runtime/4.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-wtLlRwQX7YoBUYm25xBjJ3UsuLgycme1xXqDn8t3S5kPCWiZrx8uOkyZHLKzH4kkCiQ9m2/J5JeCKNRbZNn3Qg==",       "path": "microsoft.data.sqlclient.sni.runtime/4.0.0",       "hashPath": "microsoft.data.sqlclient.sni.runtime.4.0.0.nupkg.sha512"     },     "Microsoft.Extensions.ApiDescription.Server/3.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",       "path": "microsoft.extensions.apidescription.server/3.0.0",       "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512"     },     "Microsoft.Identity.Client/4.22.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-GlamU9rs8cSVIx9WSGv5QKpt66KkE+ImxNa/wNZZUJ3knt3PM98T9sOY8B7NcEfhw7NoxU2/0TSOcmnRSJQgqw==",       "path": "microsoft.identity.client/4.22.0",       "hashPath": "microsoft.identity.client.4.22.0.nupkg.sha512"     },     "Microsoft.Identity.Client.Extensions.Msal/2.16.5": {       "type": "package",       "serviceable": true,       "sha512": "sha512-VlGUZEpF8KP/GCfFI59sdE0WA0o9quqwM1YQY0dSp6jpGy5EOBkureaybLfpwCuYUUjQbLkN2p7neUIcQCfbzA==",       "path": "microsoft.identity.client.extensions.msal/2.16.5",       "hashPath": "microsoft.identity.client.extensions.msal.2.16.5.nupkg.sha512"     },     "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==",       "path": "microsoft.identitymodel.jsonwebtokens/6.8.0",       "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512"     },     "Microsoft.IdentityModel.Logging/6.8.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",       "path": "microsoft.identitymodel.logging/6.8.0",       "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512"     },     "Microsoft.IdentityModel.Protocols/6.8.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==",       "path": "microsoft.identitymodel.protocols/6.8.0",       "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512"     },     "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==",       "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0",       "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512"     },     "Microsoft.IdentityModel.Tokens/6.8.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",       "path": "microsoft.identitymodel.tokens/6.8.0",       "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512"     },     "Microsoft.NETCore.Platforms/5.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",       "path": "microsoft.netcore.platforms/5.0.0",       "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"     },     "Microsoft.NETCore.Targets/1.1.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",       "path": "microsoft.netcore.targets/1.1.0",       "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"     },     "Microsoft.OpenApi/1.2.3": {       "type": "package",       "serviceable": true,       "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",       "path": "microsoft.openapi/1.2.3",       "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512"     },     "Microsoft.Win32.Registry/5.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",       "path": "microsoft.win32.registry/5.0.0",       "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"     },     "Microsoft.Win32.SystemEvents/6.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",       "path": "microsoft.win32.systemevents/6.0.0",       "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"     },     "Newtonsoft.Json/13.0.1": {       "type": "package",       "serviceable": true,       "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",       "path": "newtonsoft.json/13.0.1",       "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"     },     "runtime.native.System.Data.SqlClient.sni/4.7.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",       "path": "runtime.native.system.data.sqlclient.sni/4.7.0",       "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512"     },     "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",       "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",       "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"     },     "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",       "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",       "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"     },     "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",       "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",       "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"     },     "Swashbuckle.AspNetCore/6.2.3": {       "type": "package",       "serviceable": true,       "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==",       "path": "swashbuckle.aspnetcore/6.2.3",       "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512"     },     "Swashbuckle.AspNetCore.Swagger/6.2.3": {       "type": "package",       "serviceable": true,       "sha512": "sha512-qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==",       "path": "swashbuckle.aspnetcore.swagger/6.2.3",       "hashPath": "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512"     },     "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": {       "type": "package",       "serviceable": true,       "sha512": "sha512-+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==",       "path": "swashbuckle.aspnetcore.swaggergen/6.2.3",       "hashPath": "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512"     },     "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": {       "type": "package",       "serviceable": true,       "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==",       "path": "swashbuckle.aspnetcore.swaggerui/6.2.3",       "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512"     },     "System.Buffers/4.5.1": {       "type": "package",       "serviceable": true,       "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",       "path": "system.buffers/4.5.1",       "hashPath": "system.buffers.4.5.1.nupkg.sha512"     },     "System.Configuration.ConfigurationManager/6.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",       "path": "system.configuration.configurationmanager/6.0.0",       "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512"     },     "System.Data.OleDb/6.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==",       "path": "system.data.oledb/6.0.0",       "hashPath": "system.data.oledb.6.0.0.nupkg.sha512"     },     "System.Data.SqlClient/4.8.3": {       "type": "package",       "serviceable": true,       "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",       "path": "system.data.sqlclient/4.8.3",       "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512"     },     "System.Diagnostics.DiagnosticSource/5.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",       "path": "system.diagnostics.diagnosticsource/5.0.0",       "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512"     },     "System.Diagnostics.PerformanceCounter/6.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==",       "path": "system.diagnostics.performancecounter/6.0.0",       "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512"     },     "System.Drawing.Common/6.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",       "path": "system.drawing.common/6.0.0",       "hashPath": "system.drawing.common.6.0.0.nupkg.sha512"     },     "System.Formats.Asn1/5.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",       "path": "system.formats.asn1/5.0.0",       "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"     },     "System.Globalization/4.3.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",       "path": "system.globalization/4.3.0",       "hashPath": "system.globalization.4.3.0.nupkg.sha512"     },     "System.IdentityModel.Tokens.Jwt/6.8.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==",       "path": "system.identitymodel.tokens.jwt/6.8.0",       "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512"     },     "System.IO/4.3.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",       "path": "system.io/4.3.0",       "hashPath": "system.io.4.3.0.nupkg.sha512"     },     "System.Memory/4.5.3": {       "type": "package",       "serviceable": true,       "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",       "path": "system.memory/4.5.3",       "hashPath": "system.memory.4.5.3.nupkg.sha512"     },     "System.Numerics.Vectors/4.5.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",       "path": "system.numerics.vectors/4.5.0",       "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"     },     "System.Reflection/4.3.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",       "path": "system.reflection/4.3.0",       "hashPath": "system.reflection.4.3.0.nupkg.sha512"     },     "System.Reflection.Primitives/4.3.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",       "path": "system.reflection.primitives/4.3.0",       "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"     },     "System.Resources.ResourceManager/4.3.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",       "path": "system.resources.resourcemanager/4.3.0",       "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"     },     "System.Runtime/4.3.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",       "path": "system.runtime/4.3.0",       "hashPath": "system.runtime.4.3.0.nupkg.sha512"     },     "System.Runtime.Caching/5.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==",       "path": "system.runtime.caching/5.0.0",       "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512"     },     "System.Security.AccessControl/6.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",       "path": "system.security.accesscontrol/6.0.0",       "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"     },     "System.Security.Cryptography.Cng/5.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",       "path": "system.security.cryptography.cng/5.0.0",       "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512"     },     "System.Security.Cryptography.ProtectedData/6.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",       "path": "system.security.cryptography.protecteddata/6.0.0",       "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"     },     "System.Security.Permissions/6.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",       "path": "system.security.permissions/6.0.0",       "hashPath": "system.security.permissions.6.0.0.nupkg.sha512"     },     "System.Security.Principal.Windows/5.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",       "path": "system.security.principal.windows/5.0.0",       "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"     },     "System.Text.Encoding/4.3.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",       "path": "system.text.encoding/4.3.0",       "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"     },     "System.Text.Encoding.CodePages/5.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",       "path": "system.text.encoding.codepages/5.0.0",       "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512"     },     "System.Text.Encodings.Web/4.7.2": {       "type": "package",       "serviceable": true,       "sha512": "sha512-iTUgB/WtrZ1sWZs84F2hwyQhiRH6QNjQv2DkwrH+WP6RoFga2Q1m3f9/Q7FG8cck8AdHitQkmkXSY8qylcDmuA==",       "path": "system.text.encodings.web/4.7.2",       "hashPath": "system.text.encodings.web.4.7.2.nupkg.sha512"     },     "System.Text.Json/4.6.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==",       "path": "system.text.json/4.6.0",       "hashPath": "system.text.json.4.6.0.nupkg.sha512"     },     "System.Threading.Tasks/4.3.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",       "path": "system.threading.tasks/4.3.0"       "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"     },     "System.Threading.Tasks.Extensions/4.5.2": {       "type": "package",       "serviceable": true,       "sha512": "sha512-BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",       "path": "system.threading.tasks.extensions/4.5.2",       "hashPath": "system.threading.tasks.extensions.4.5.2.nupkg.sha512"     },     "System.Windows.Extensions/6.0.0": {       "type": "package",       "serviceable": true,       "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",       "path": "system.windows.extensions/6.0.0",       "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512"     }   } }
 
 
  |