project.assets.json 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net8.0": {
  5. "Azure.Core/1.25.0": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  9. "System.Diagnostics.DiagnosticSource": "4.6.0",
  10. "System.Memory.Data": "1.0.2",
  11. "System.Numerics.Vectors": "4.5.0",
  12. "System.Text.Encodings.Web": "4.7.2",
  13. "System.Text.Json": "4.7.2",
  14. "System.Threading.Tasks.Extensions": "4.5.4"
  15. },
  16. "compile": {
  17. "lib/net5.0/Azure.Core.dll": {
  18. "related": ".xml"
  19. }
  20. },
  21. "runtime": {
  22. "lib/net5.0/Azure.Core.dll": {
  23. "related": ".xml"
  24. }
  25. }
  26. },
  27. "Azure.Identity/1.7.0": {
  28. "type": "package",
  29. "dependencies": {
  30. "Azure.Core": "1.25.0",
  31. "Microsoft.Identity.Client": "4.39.0",
  32. "Microsoft.Identity.Client.Extensions.Msal": "2.19.3",
  33. "System.Memory": "4.5.4",
  34. "System.Security.Cryptography.ProtectedData": "4.7.0",
  35. "System.Text.Json": "4.7.2",
  36. "System.Threading.Tasks.Extensions": "4.5.4"
  37. },
  38. "compile": {
  39. "lib/netstandard2.0/Azure.Identity.dll": {
  40. "related": ".xml"
  41. }
  42. },
  43. "runtime": {
  44. "lib/netstandard2.0/Azure.Identity.dll": {
  45. "related": ".xml"
  46. }
  47. }
  48. },
  49. "Humanizer.Core/2.14.1": {
  50. "type": "package",
  51. "compile": {
  52. "lib/net6.0/_._": {
  53. "related": ".xml"
  54. }
  55. },
  56. "runtime": {
  57. "lib/net6.0/Humanizer.dll": {
  58. "related": ".xml"
  59. }
  60. }
  61. },
  62. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {
  63. "type": "package",
  64. "compile": {
  65. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  66. "related": ".xml"
  67. }
  68. },
  69. "runtime": {
  70. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  71. "related": ".xml"
  72. }
  73. }
  74. },
  75. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  76. "type": "package",
  77. "dependencies": {
  78. "Microsoft.AspNetCore.Cryptography.Internal": "8.0.0"
  79. },
  80. "compile": {
  81. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  82. "related": ".xml"
  83. }
  84. },
  85. "runtime": {
  86. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  87. "related": ".xml"
  88. }
  89. }
  90. },
  91. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  92. "type": "package",
  93. "dependencies": {
  94. "Microsoft.EntityFrameworkCore.Relational": "8.0.0",
  95. "Microsoft.Extensions.Identity.Stores": "8.0.0"
  96. },
  97. "compile": {
  98. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  99. "related": ".xml"
  100. }
  101. },
  102. "runtime": {
  103. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  104. "related": ".xml"
  105. }
  106. }
  107. },
  108. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  109. "type": "package",
  110. "compile": {
  111. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  112. "related": ".xml"
  113. }
  114. },
  115. "runtime": {
  116. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  117. "related": ".xml"
  118. }
  119. }
  120. },
  121. "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
  122. "type": "package",
  123. "build": {
  124. "build/_._": {}
  125. }
  126. },
  127. "Microsoft.CodeAnalysis.Common/4.5.0": {
  128. "type": "package",
  129. "dependencies": {
  130. "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
  131. "System.Collections.Immutable": "6.0.0",
  132. "System.Reflection.Metadata": "6.0.1",
  133. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  134. "System.Text.Encoding.CodePages": "6.0.0"
  135. },
  136. "compile": {
  137. "lib/netcoreapp3.1/_._": {
  138. "related": ".pdb;.xml"
  139. }
  140. },
  141. "runtime": {
  142. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  143. "related": ".pdb;.xml"
  144. }
  145. },
  146. "resource": {
  147. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  148. "locale": "cs"
  149. },
  150. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  151. "locale": "de"
  152. },
  153. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  154. "locale": "es"
  155. },
  156. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  157. "locale": "fr"
  158. },
  159. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  160. "locale": "it"
  161. },
  162. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  163. "locale": "ja"
  164. },
  165. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  166. "locale": "ko"
  167. },
  168. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  169. "locale": "pl"
  170. },
  171. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  172. "locale": "pt-BR"
  173. },
  174. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  175. "locale": "ru"
  176. },
  177. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  178. "locale": "tr"
  179. },
  180. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  181. "locale": "zh-Hans"
  182. },
  183. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  184. "locale": "zh-Hant"
  185. }
  186. }
  187. },
  188. "Microsoft.CodeAnalysis.CSharp/4.5.0": {
  189. "type": "package",
  190. "dependencies": {
  191. "Microsoft.CodeAnalysis.Common": "[4.5.0]"
  192. },
  193. "compile": {
  194. "lib/netcoreapp3.1/_._": {
  195. "related": ".pdb;.xml"
  196. }
  197. },
  198. "runtime": {
  199. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  200. "related": ".pdb;.xml"
  201. }
  202. },
  203. "resource": {
  204. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  205. "locale": "cs"
  206. },
  207. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  208. "locale": "de"
  209. },
  210. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  211. "locale": "es"
  212. },
  213. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  214. "locale": "fr"
  215. },
  216. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  217. "locale": "it"
  218. },
  219. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  220. "locale": "ja"
  221. },
  222. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  223. "locale": "ko"
  224. },
  225. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  226. "locale": "pl"
  227. },
  228. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  229. "locale": "pt-BR"
  230. },
  231. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  232. "locale": "ru"
  233. },
  234. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  235. "locale": "tr"
  236. },
  237. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  238. "locale": "zh-Hans"
  239. },
  240. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  241. "locale": "zh-Hant"
  242. }
  243. }
  244. },
  245. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
  246. "type": "package",
  247. "dependencies": {
  248. "Humanizer.Core": "2.14.1",
  249. "Microsoft.CodeAnalysis.CSharp": "[4.5.0]",
  250. "Microsoft.CodeAnalysis.Common": "[4.5.0]",
  251. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.5.0]"
  252. },
  253. "compile": {
  254. "lib/netcoreapp3.1/_._": {
  255. "related": ".pdb;.xml"
  256. }
  257. },
  258. "runtime": {
  259. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  260. "related": ".pdb;.xml"
  261. }
  262. },
  263. "resource": {
  264. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  265. "locale": "cs"
  266. },
  267. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  268. "locale": "de"
  269. },
  270. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  271. "locale": "es"
  272. },
  273. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  274. "locale": "fr"
  275. },
  276. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  277. "locale": "it"
  278. },
  279. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  280. "locale": "ja"
  281. },
  282. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  283. "locale": "ko"
  284. },
  285. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  286. "locale": "pl"
  287. },
  288. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  289. "locale": "pt-BR"
  290. },
  291. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  292. "locale": "ru"
  293. },
  294. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  295. "locale": "tr"
  296. },
  297. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  298. "locale": "zh-Hans"
  299. },
  300. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  301. "locale": "zh-Hant"
  302. }
  303. }
  304. },
  305. "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
  306. "type": "package",
  307. "dependencies": {
  308. "Humanizer.Core": "2.14.1",
  309. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  310. "Microsoft.CodeAnalysis.Common": "[4.5.0]",
  311. "System.Composition": "6.0.0",
  312. "System.IO.Pipelines": "6.0.3",
  313. "System.Threading.Channels": "6.0.0"
  314. },
  315. "compile": {
  316. "lib/netcoreapp3.1/_._": {
  317. "related": ".pdb;.xml"
  318. }
  319. },
  320. "runtime": {
  321. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
  322. "related": ".pdb;.xml"
  323. }
  324. },
  325. "resource": {
  326. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  327. "locale": "cs"
  328. },
  329. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  330. "locale": "de"
  331. },
  332. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  333. "locale": "es"
  334. },
  335. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  336. "locale": "fr"
  337. },
  338. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  339. "locale": "it"
  340. },
  341. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  342. "locale": "ja"
  343. },
  344. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  345. "locale": "ko"
  346. },
  347. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  348. "locale": "pl"
  349. },
  350. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  351. "locale": "pt-BR"
  352. },
  353. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  354. "locale": "ru"
  355. },
  356. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  357. "locale": "tr"
  358. },
  359. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  360. "locale": "zh-Hans"
  361. },
  362. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  363. "locale": "zh-Hant"
  364. }
  365. }
  366. },
  367. "Microsoft.CSharp/4.5.0": {
  368. "type": "package",
  369. "compile": {
  370. "ref/netcoreapp2.0/_._": {}
  371. },
  372. "runtime": {
  373. "lib/netcoreapp2.0/_._": {}
  374. }
  375. },
  376. "Microsoft.Data.SqlClient/5.1.1": {
  377. "type": "package",
  378. "dependencies": {
  379. "Azure.Identity": "1.7.0",
  380. "Microsoft.Data.SqlClient.SNI.runtime": "5.1.0",
  381. "Microsoft.Identity.Client": "4.47.2",
  382. "Microsoft.IdentityModel.JsonWebTokens": "6.24.0",
  383. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.24.0",
  384. "Microsoft.SqlServer.Server": "1.0.0",
  385. "System.Configuration.ConfigurationManager": "6.0.1",
  386. "System.Diagnostics.DiagnosticSource": "6.0.0",
  387. "System.Runtime.Caching": "6.0.0",
  388. "System.Security.Cryptography.Cng": "5.0.0",
  389. "System.Security.Principal.Windows": "5.0.0",
  390. "System.Text.Encoding.CodePages": "6.0.0",
  391. "System.Text.Encodings.Web": "6.0.0"
  392. },
  393. "compile": {
  394. "ref/net6.0/Microsoft.Data.SqlClient.dll": {
  395. "related": ".pdb;.xml"
  396. }
  397. },
  398. "runtime": {
  399. "lib/net6.0/Microsoft.Data.SqlClient.dll": {
  400. "related": ".pdb;.xml"
  401. }
  402. },
  403. "runtimeTargets": {
  404. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  405. "assetType": "runtime",
  406. "rid": "unix"
  407. },
  408. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  409. "assetType": "runtime",
  410. "rid": "win"
  411. }
  412. }
  413. },
  414. "Microsoft.Data.SqlClient.SNI.runtime/5.1.0": {
  415. "type": "package",
  416. "runtimeTargets": {
  417. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  418. "assetType": "native",
  419. "rid": "win-arm"
  420. },
  421. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  422. "assetType": "native",
  423. "rid": "win-arm64"
  424. },
  425. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  426. "assetType": "native",
  427. "rid": "win-x64"
  428. },
  429. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  430. "assetType": "native",
  431. "rid": "win-x86"
  432. }
  433. }
  434. },
  435. "Microsoft.EntityFrameworkCore/8.0.0": {
  436. "type": "package",
  437. "dependencies": {
  438. "Microsoft.EntityFrameworkCore.Abstractions": "8.0.0",
  439. "Microsoft.EntityFrameworkCore.Analyzers": "8.0.0",
  440. "Microsoft.Extensions.Caching.Memory": "8.0.0",
  441. "Microsoft.Extensions.Logging": "8.0.0"
  442. },
  443. "compile": {
  444. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  445. "related": ".xml"
  446. }
  447. },
  448. "runtime": {
  449. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  450. "related": ".xml"
  451. }
  452. },
  453. "build": {
  454. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
  455. }
  456. },
  457. "Microsoft.EntityFrameworkCore.Abstractions/8.0.0": {
  458. "type": "package",
  459. "compile": {
  460. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  461. "related": ".xml"
  462. }
  463. },
  464. "runtime": {
  465. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  466. "related": ".xml"
  467. }
  468. }
  469. },
  470. "Microsoft.EntityFrameworkCore.Analyzers/8.0.0": {
  471. "type": "package",
  472. "compile": {
  473. "lib/netstandard2.0/_._": {}
  474. },
  475. "runtime": {
  476. "lib/netstandard2.0/_._": {}
  477. }
  478. },
  479. "Microsoft.EntityFrameworkCore.Design/8.0.0": {
  480. "type": "package",
  481. "dependencies": {
  482. "Humanizer.Core": "2.14.1",
  483. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
  484. "Microsoft.EntityFrameworkCore.Relational": "8.0.0",
  485. "Microsoft.Extensions.DependencyModel": "8.0.0",
  486. "Mono.TextTemplating": "2.2.1"
  487. },
  488. "compile": {
  489. "lib/net8.0/_._": {
  490. "related": ".xml"
  491. }
  492. },
  493. "runtime": {
  494. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
  495. "related": ".xml"
  496. }
  497. },
  498. "build": {
  499. "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {}
  500. }
  501. },
  502. "Microsoft.EntityFrameworkCore.Relational/8.0.0": {
  503. "type": "package",
  504. "dependencies": {
  505. "Microsoft.EntityFrameworkCore": "8.0.0",
  506. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  507. },
  508. "compile": {
  509. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  510. "related": ".xml"
  511. }
  512. },
  513. "runtime": {
  514. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  515. "related": ".xml"
  516. }
  517. }
  518. },
  519. "Microsoft.EntityFrameworkCore.SqlServer/8.0.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.Data.SqlClient": "5.1.1",
  523. "Microsoft.EntityFrameworkCore.Relational": "8.0.0"
  524. },
  525. "compile": {
  526. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  527. "related": ".xml"
  528. }
  529. },
  530. "runtime": {
  531. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  532. "related": ".xml"
  533. }
  534. }
  535. },
  536. "Microsoft.EntityFrameworkCore.Tools/8.0.0": {
  537. "type": "package",
  538. "dependencies": {
  539. "Microsoft.EntityFrameworkCore.Design": "8.0.0"
  540. },
  541. "compile": {
  542. "lib/net8.0/_._": {}
  543. },
  544. "runtime": {
  545. "lib/net8.0/_._": {}
  546. }
  547. },
  548. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  549. "type": "package",
  550. "dependencies": {
  551. "Microsoft.Extensions.Primitives": "8.0.0"
  552. },
  553. "compile": {
  554. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  555. "related": ".xml"
  556. }
  557. },
  558. "runtime": {
  559. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  560. "related": ".xml"
  561. }
  562. },
  563. "build": {
  564. "buildTransitive/net6.0/_._": {}
  565. }
  566. },
  567. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  568. "type": "package",
  569. "dependencies": {
  570. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  571. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  572. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  573. "Microsoft.Extensions.Options": "8.0.0",
  574. "Microsoft.Extensions.Primitives": "8.0.0"
  575. },
  576. "compile": {
  577. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  578. "related": ".xml"
  579. }
  580. },
  581. "runtime": {
  582. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  583. "related": ".xml"
  584. }
  585. },
  586. "build": {
  587. "buildTransitive/net6.0/_._": {}
  588. }
  589. },
  590. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  591. "type": "package",
  592. "dependencies": {
  593. "Microsoft.Extensions.Primitives": "8.0.0"
  594. },
  595. "compile": {
  596. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  597. "related": ".xml"
  598. }
  599. },
  600. "runtime": {
  601. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  602. "related": ".xml"
  603. }
  604. },
  605. "build": {
  606. "buildTransitive/net6.0/_._": {}
  607. }
  608. },
  609. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  610. "type": "package",
  611. "dependencies": {
  612. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  613. },
  614. "compile": {
  615. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  616. "related": ".xml"
  617. }
  618. },
  619. "runtime": {
  620. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  621. "related": ".xml"
  622. }
  623. },
  624. "build": {
  625. "buildTransitive/net6.0/_._": {}
  626. }
  627. },
  628. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  629. "type": "package",
  630. "compile": {
  631. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  632. "related": ".xml"
  633. }
  634. },
  635. "runtime": {
  636. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  637. "related": ".xml"
  638. }
  639. },
  640. "build": {
  641. "buildTransitive/net6.0/_._": {}
  642. }
  643. },
  644. "Microsoft.Extensions.DependencyModel/8.0.0": {
  645. "type": "package",
  646. "dependencies": {
  647. "System.Text.Encodings.Web": "8.0.0",
  648. "System.Text.Json": "8.0.0"
  649. },
  650. "compile": {
  651. "lib/net8.0/_._": {
  652. "related": ".xml"
  653. }
  654. },
  655. "runtime": {
  656. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
  657. "related": ".xml"
  658. }
  659. },
  660. "build": {
  661. "buildTransitive/net6.0/_._": {}
  662. }
  663. },
  664. "Microsoft.Extensions.Identity.Core/8.0.0": {
  665. "type": "package",
  666. "dependencies": {
  667. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "8.0.0",
  668. "Microsoft.Extensions.Logging": "8.0.0",
  669. "Microsoft.Extensions.Options": "8.0.0"
  670. },
  671. "compile": {
  672. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  673. "related": ".xml"
  674. }
  675. },
  676. "runtime": {
  677. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  678. "related": ".xml"
  679. }
  680. }
  681. },
  682. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  683. "type": "package",
  684. "dependencies": {
  685. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  686. "Microsoft.Extensions.Identity.Core": "8.0.0",
  687. "Microsoft.Extensions.Logging": "8.0.0"
  688. },
  689. "compile": {
  690. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  691. "related": ".xml"
  692. }
  693. },
  694. "runtime": {
  695. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  696. "related": ".xml"
  697. }
  698. }
  699. },
  700. "Microsoft.Extensions.Logging/8.0.0": {
  701. "type": "package",
  702. "dependencies": {
  703. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  704. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  705. "Microsoft.Extensions.Options": "8.0.0"
  706. },
  707. "compile": {
  708. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  709. "related": ".xml"
  710. }
  711. },
  712. "runtime": {
  713. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  714. "related": ".xml"
  715. }
  716. },
  717. "build": {
  718. "buildTransitive/net6.0/_._": {}
  719. }
  720. },
  721. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  722. "type": "package",
  723. "dependencies": {
  724. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  725. },
  726. "compile": {
  727. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  728. "related": ".xml"
  729. }
  730. },
  731. "runtime": {
  732. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  733. "related": ".xml"
  734. }
  735. },
  736. "build": {
  737. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  738. }
  739. },
  740. "Microsoft.Extensions.Options/8.0.0": {
  741. "type": "package",
  742. "dependencies": {
  743. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  744. "Microsoft.Extensions.Primitives": "8.0.0"
  745. },
  746. "compile": {
  747. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  748. "related": ".xml"
  749. }
  750. },
  751. "runtime": {
  752. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  753. "related": ".xml"
  754. }
  755. },
  756. "build": {
  757. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
  758. }
  759. },
  760. "Microsoft.Extensions.Primitives/8.0.0": {
  761. "type": "package",
  762. "compile": {
  763. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  764. "related": ".xml"
  765. }
  766. },
  767. "runtime": {
  768. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  769. "related": ".xml"
  770. }
  771. },
  772. "build": {
  773. "buildTransitive/net6.0/_._": {}
  774. }
  775. },
  776. "Microsoft.Identity.Client/4.47.2": {
  777. "type": "package",
  778. "dependencies": {
  779. "Microsoft.IdentityModel.Abstractions": "6.22.0"
  780. },
  781. "compile": {
  782. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  783. "related": ".xml"
  784. }
  785. },
  786. "runtime": {
  787. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  788. "related": ".xml"
  789. }
  790. }
  791. },
  792. "Microsoft.Identity.Client.Extensions.Msal/2.19.3": {
  793. "type": "package",
  794. "dependencies": {
  795. "Microsoft.Identity.Client": "4.38.0",
  796. "System.Security.Cryptography.ProtectedData": "4.5.0"
  797. },
  798. "compile": {
  799. "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": {
  800. "related": ".xml"
  801. }
  802. },
  803. "runtime": {
  804. "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": {
  805. "related": ".xml"
  806. }
  807. }
  808. },
  809. "Microsoft.IdentityModel.Abstractions/6.24.0": {
  810. "type": "package",
  811. "compile": {
  812. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
  813. "related": ".xml"
  814. }
  815. },
  816. "runtime": {
  817. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
  818. "related": ".xml"
  819. }
  820. }
  821. },
  822. "Microsoft.IdentityModel.JsonWebTokens/6.24.0": {
  823. "type": "package",
  824. "dependencies": {
  825. "Microsoft.IdentityModel.Tokens": "6.24.0",
  826. "System.Text.Encoding": "4.3.0",
  827. "System.Text.Json": "4.7.2"
  828. },
  829. "compile": {
  830. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  831. "related": ".xml"
  832. }
  833. },
  834. "runtime": {
  835. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  836. "related": ".xml"
  837. }
  838. }
  839. },
  840. "Microsoft.IdentityModel.Logging/6.24.0": {
  841. "type": "package",
  842. "dependencies": {
  843. "Microsoft.IdentityModel.Abstractions": "6.24.0"
  844. },
  845. "compile": {
  846. "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
  847. "related": ".xml"
  848. }
  849. },
  850. "runtime": {
  851. "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
  852. "related": ".xml"
  853. }
  854. }
  855. },
  856. "Microsoft.IdentityModel.Protocols/6.24.0": {
  857. "type": "package",
  858. "dependencies": {
  859. "Microsoft.IdentityModel.Logging": "6.24.0",
  860. "Microsoft.IdentityModel.Tokens": "6.24.0"
  861. },
  862. "compile": {
  863. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
  864. "related": ".xml"
  865. }
  866. },
  867. "runtime": {
  868. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
  869. "related": ".xml"
  870. }
  871. }
  872. },
  873. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.24.0": {
  874. "type": "package",
  875. "dependencies": {
  876. "Microsoft.IdentityModel.Protocols": "6.24.0",
  877. "System.IdentityModel.Tokens.Jwt": "6.24.0"
  878. },
  879. "compile": {
  880. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  881. "related": ".xml"
  882. }
  883. },
  884. "runtime": {
  885. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  886. "related": ".xml"
  887. }
  888. }
  889. },
  890. "Microsoft.IdentityModel.Tokens/6.24.0": {
  891. "type": "package",
  892. "dependencies": {
  893. "Microsoft.CSharp": "4.5.0",
  894. "Microsoft.IdentityModel.Logging": "6.24.0",
  895. "System.Security.Cryptography.Cng": "4.5.0"
  896. },
  897. "compile": {
  898. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
  899. "related": ".xml"
  900. }
  901. },
  902. "runtime": {
  903. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
  904. "related": ".xml"
  905. }
  906. }
  907. },
  908. "Microsoft.NETCore.Platforms/1.1.0": {
  909. "type": "package",
  910. "compile": {
  911. "lib/netstandard1.0/_._": {}
  912. },
  913. "runtime": {
  914. "lib/netstandard1.0/_._": {}
  915. }
  916. },
  917. "Microsoft.NETCore.Targets/1.1.0": {
  918. "type": "package",
  919. "compile": {
  920. "lib/netstandard1.0/_._": {}
  921. },
  922. "runtime": {
  923. "lib/netstandard1.0/_._": {}
  924. }
  925. },
  926. "Microsoft.SqlServer.Server/1.0.0": {
  927. "type": "package",
  928. "compile": {
  929. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  930. "related": ".pdb;.xml"
  931. }
  932. },
  933. "runtime": {
  934. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  935. "related": ".pdb;.xml"
  936. }
  937. }
  938. },
  939. "Microsoft.Win32.SystemEvents/6.0.0": {
  940. "type": "package",
  941. "compile": {
  942. "lib/net6.0/_._": {
  943. "related": ".xml"
  944. }
  945. },
  946. "runtime": {
  947. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  948. "related": ".xml"
  949. }
  950. },
  951. "build": {
  952. "buildTransitive/netcoreapp3.1/_._": {}
  953. },
  954. "runtimeTargets": {
  955. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  956. "assetType": "runtime",
  957. "rid": "win"
  958. }
  959. }
  960. },
  961. "Mono.TextTemplating/2.2.1": {
  962. "type": "package",
  963. "dependencies": {
  964. "System.CodeDom": "4.4.0"
  965. },
  966. "compile": {
  967. "lib/netstandard2.0/_._": {}
  968. },
  969. "runtime": {
  970. "lib/netstandard2.0/Mono.TextTemplating.dll": {}
  971. }
  972. },
  973. "System.CodeDom/4.4.0": {
  974. "type": "package",
  975. "compile": {
  976. "ref/netstandard2.0/_._": {
  977. "related": ".xml"
  978. }
  979. },
  980. "runtime": {
  981. "lib/netstandard2.0/System.CodeDom.dll": {}
  982. }
  983. },
  984. "System.Collections.Immutable/6.0.0": {
  985. "type": "package",
  986. "dependencies": {
  987. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  988. },
  989. "compile": {
  990. "lib/net6.0/_._": {
  991. "related": ".xml"
  992. }
  993. },
  994. "runtime": {
  995. "lib/net6.0/System.Collections.Immutable.dll": {
  996. "related": ".xml"
  997. }
  998. },
  999. "build": {
  1000. "buildTransitive/netcoreapp3.1/_._": {}
  1001. }
  1002. },
  1003. "System.Composition/6.0.0": {
  1004. "type": "package",
  1005. "dependencies": {
  1006. "System.Composition.AttributedModel": "6.0.0",
  1007. "System.Composition.Convention": "6.0.0",
  1008. "System.Composition.Hosting": "6.0.0",
  1009. "System.Composition.Runtime": "6.0.0",
  1010. "System.Composition.TypedParts": "6.0.0"
  1011. },
  1012. "build": {
  1013. "buildTransitive/netcoreapp3.1/_._": {}
  1014. }
  1015. },
  1016. "System.Composition.AttributedModel/6.0.0": {
  1017. "type": "package",
  1018. "compile": {
  1019. "lib/net6.0/_._": {
  1020. "related": ".xml"
  1021. }
  1022. },
  1023. "runtime": {
  1024. "lib/net6.0/System.Composition.AttributedModel.dll": {
  1025. "related": ".xml"
  1026. }
  1027. },
  1028. "build": {
  1029. "buildTransitive/netcoreapp3.1/_._": {}
  1030. }
  1031. },
  1032. "System.Composition.Convention/6.0.0": {
  1033. "type": "package",
  1034. "dependencies": {
  1035. "System.Composition.AttributedModel": "6.0.0"
  1036. },
  1037. "compile": {
  1038. "lib/net6.0/_._": {
  1039. "related": ".xml"
  1040. }
  1041. },
  1042. "runtime": {
  1043. "lib/net6.0/System.Composition.Convention.dll": {
  1044. "related": ".xml"
  1045. }
  1046. },
  1047. "build": {
  1048. "buildTransitive/netcoreapp3.1/_._": {}
  1049. }
  1050. },
  1051. "System.Composition.Hosting/6.0.0": {
  1052. "type": "package",
  1053. "dependencies": {
  1054. "System.Composition.Runtime": "6.0.0"
  1055. },
  1056. "compile": {
  1057. "lib/net6.0/_._": {
  1058. "related": ".xml"
  1059. }
  1060. },
  1061. "runtime": {
  1062. "lib/net6.0/System.Composition.Hosting.dll": {
  1063. "related": ".xml"
  1064. }
  1065. },
  1066. "build": {
  1067. "buildTransitive/netcoreapp3.1/_._": {}
  1068. }
  1069. },
  1070. "System.Composition.Runtime/6.0.0": {
  1071. "type": "package",
  1072. "compile": {
  1073. "lib/net6.0/_._": {
  1074. "related": ".xml"
  1075. }
  1076. },
  1077. "runtime": {
  1078. "lib/net6.0/System.Composition.Runtime.dll": {
  1079. "related": ".xml"
  1080. }
  1081. },
  1082. "build": {
  1083. "buildTransitive/netcoreapp3.1/_._": {}
  1084. }
  1085. },
  1086. "System.Composition.TypedParts/6.0.0": {
  1087. "type": "package",
  1088. "dependencies": {
  1089. "System.Composition.AttributedModel": "6.0.0",
  1090. "System.Composition.Hosting": "6.0.0",
  1091. "System.Composition.Runtime": "6.0.0"
  1092. },
  1093. "compile": {
  1094. "lib/net6.0/_._": {
  1095. "related": ".xml"
  1096. }
  1097. },
  1098. "runtime": {
  1099. "lib/net6.0/System.Composition.TypedParts.dll": {
  1100. "related": ".xml"
  1101. }
  1102. },
  1103. "build": {
  1104. "buildTransitive/netcoreapp3.1/_._": {}
  1105. }
  1106. },
  1107. "System.Configuration.ConfigurationManager/6.0.1": {
  1108. "type": "package",
  1109. "dependencies": {
  1110. "System.Security.Cryptography.ProtectedData": "6.0.0",
  1111. "System.Security.Permissions": "6.0.0"
  1112. },
  1113. "compile": {
  1114. "lib/net6.0/_._": {
  1115. "related": ".xml"
  1116. }
  1117. },
  1118. "runtime": {
  1119. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  1120. "related": ".xml"
  1121. }
  1122. },
  1123. "build": {
  1124. "buildTransitive/netcoreapp3.1/_._": {}
  1125. }
  1126. },
  1127. "System.Diagnostics.DiagnosticSource/6.0.0": {
  1128. "type": "package",
  1129. "dependencies": {
  1130. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1131. },
  1132. "compile": {
  1133. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1134. "related": ".xml"
  1135. }
  1136. },
  1137. "runtime": {
  1138. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1139. "related": ".xml"
  1140. }
  1141. },
  1142. "build": {
  1143. "buildTransitive/netcoreapp3.1/_._": {}
  1144. }
  1145. },
  1146. "System.Drawing.Common/6.0.0": {
  1147. "type": "package",
  1148. "dependencies": {
  1149. "Microsoft.Win32.SystemEvents": "6.0.0"
  1150. },
  1151. "compile": {
  1152. "lib/net6.0/_._": {
  1153. "related": ".xml"
  1154. }
  1155. },
  1156. "runtime": {
  1157. "lib/net6.0/System.Drawing.Common.dll": {
  1158. "related": ".xml"
  1159. }
  1160. },
  1161. "build": {
  1162. "buildTransitive/netcoreapp3.1/_._": {}
  1163. },
  1164. "runtimeTargets": {
  1165. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  1166. "assetType": "runtime",
  1167. "rid": "unix"
  1168. },
  1169. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  1170. "assetType": "runtime",
  1171. "rid": "win"
  1172. }
  1173. }
  1174. },
  1175. "System.Formats.Asn1/5.0.0": {
  1176. "type": "package",
  1177. "compile": {
  1178. "lib/netstandard2.0/_._": {
  1179. "related": ".xml"
  1180. }
  1181. },
  1182. "runtime": {
  1183. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  1184. "related": ".xml"
  1185. }
  1186. }
  1187. },
  1188. "System.IdentityModel.Tokens.Jwt/6.24.0": {
  1189. "type": "package",
  1190. "dependencies": {
  1191. "Microsoft.IdentityModel.JsonWebTokens": "6.24.0",
  1192. "Microsoft.IdentityModel.Tokens": "6.24.0"
  1193. },
  1194. "compile": {
  1195. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
  1196. "related": ".xml"
  1197. }
  1198. },
  1199. "runtime": {
  1200. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
  1201. "related": ".xml"
  1202. }
  1203. }
  1204. },
  1205. "System.IO.Pipelines/6.0.3": {
  1206. "type": "package",
  1207. "compile": {
  1208. "lib/net6.0/_._": {
  1209. "related": ".xml"
  1210. }
  1211. },
  1212. "runtime": {
  1213. "lib/net6.0/System.IO.Pipelines.dll": {
  1214. "related": ".xml"
  1215. }
  1216. },
  1217. "build": {
  1218. "buildTransitive/netcoreapp3.1/_._": {}
  1219. }
  1220. },
  1221. "System.Memory/4.5.4": {
  1222. "type": "package",
  1223. "compile": {
  1224. "ref/netcoreapp2.1/_._": {}
  1225. },
  1226. "runtime": {
  1227. "lib/netcoreapp2.1/_._": {}
  1228. }
  1229. },
  1230. "System.Memory.Data/1.0.2": {
  1231. "type": "package",
  1232. "dependencies": {
  1233. "System.Text.Encodings.Web": "4.7.2",
  1234. "System.Text.Json": "4.6.0"
  1235. },
  1236. "compile": {
  1237. "lib/netstandard2.0/System.Memory.Data.dll": {
  1238. "related": ".xml"
  1239. }
  1240. },
  1241. "runtime": {
  1242. "lib/netstandard2.0/System.Memory.Data.dll": {
  1243. "related": ".xml"
  1244. }
  1245. }
  1246. },
  1247. "System.Numerics.Vectors/4.5.0": {
  1248. "type": "package",
  1249. "compile": {
  1250. "ref/netcoreapp2.0/_._": {}
  1251. },
  1252. "runtime": {
  1253. "lib/netcoreapp2.0/_._": {}
  1254. }
  1255. },
  1256. "System.Reflection.Metadata/6.0.1": {
  1257. "type": "package",
  1258. "dependencies": {
  1259. "System.Collections.Immutable": "6.0.0"
  1260. },
  1261. "compile": {
  1262. "lib/net6.0/_._": {
  1263. "related": ".xml"
  1264. }
  1265. },
  1266. "runtime": {
  1267. "lib/net6.0/System.Reflection.Metadata.dll": {
  1268. "related": ".xml"
  1269. }
  1270. },
  1271. "build": {
  1272. "buildTransitive/netcoreapp3.1/_._": {}
  1273. }
  1274. },
  1275. "System.Runtime/4.3.0": {
  1276. "type": "package",
  1277. "dependencies": {
  1278. "Microsoft.NETCore.Platforms": "1.1.0",
  1279. "Microsoft.NETCore.Targets": "1.1.0"
  1280. },
  1281. "compile": {
  1282. "ref/netstandard1.5/System.Runtime.dll": {
  1283. "related": ".xml"
  1284. }
  1285. }
  1286. },
  1287. "System.Runtime.Caching/6.0.0": {
  1288. "type": "package",
  1289. "dependencies": {
  1290. "System.Configuration.ConfigurationManager": "6.0.0"
  1291. },
  1292. "compile": {
  1293. "lib/net6.0/_._": {
  1294. "related": ".xml"
  1295. }
  1296. },
  1297. "runtime": {
  1298. "lib/net6.0/System.Runtime.Caching.dll": {
  1299. "related": ".xml"
  1300. }
  1301. },
  1302. "build": {
  1303. "buildTransitive/netcoreapp3.1/_._": {}
  1304. },
  1305. "runtimeTargets": {
  1306. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": {
  1307. "assetType": "runtime",
  1308. "rid": "win"
  1309. }
  1310. }
  1311. },
  1312. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1313. "type": "package",
  1314. "compile": {
  1315. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1316. "related": ".xml"
  1317. }
  1318. },
  1319. "runtime": {
  1320. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1321. "related": ".xml"
  1322. }
  1323. },
  1324. "build": {
  1325. "buildTransitive/netcoreapp3.1/_._": {}
  1326. }
  1327. },
  1328. "System.Security.AccessControl/6.0.0": {
  1329. "type": "package",
  1330. "compile": {
  1331. "lib/net6.0/_._": {
  1332. "related": ".xml"
  1333. }
  1334. },
  1335. "runtime": {
  1336. "lib/net6.0/System.Security.AccessControl.dll": {
  1337. "related": ".xml"
  1338. }
  1339. },
  1340. "build": {
  1341. "buildTransitive/netcoreapp3.1/_._": {}
  1342. },
  1343. "runtimeTargets": {
  1344. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": {
  1345. "assetType": "runtime",
  1346. "rid": "win"
  1347. }
  1348. }
  1349. },
  1350. "System.Security.Cryptography.Cng/5.0.0": {
  1351. "type": "package",
  1352. "dependencies": {
  1353. "System.Formats.Asn1": "5.0.0"
  1354. },
  1355. "compile": {
  1356. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1357. "related": ".xml"
  1358. }
  1359. },
  1360. "runtime": {
  1361. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1362. "related": ".xml"
  1363. }
  1364. },
  1365. "runtimeTargets": {
  1366. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1367. "assetType": "runtime",
  1368. "rid": "win"
  1369. }
  1370. }
  1371. },
  1372. "System.Security.Cryptography.ProtectedData/6.0.0": {
  1373. "type": "package",
  1374. "compile": {
  1375. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1376. "related": ".xml"
  1377. }
  1378. },
  1379. "runtime": {
  1380. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1381. "related": ".xml"
  1382. }
  1383. },
  1384. "build": {
  1385. "buildTransitive/netcoreapp3.1/_._": {}
  1386. },
  1387. "runtimeTargets": {
  1388. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1389. "assetType": "runtime",
  1390. "rid": "win"
  1391. }
  1392. }
  1393. },
  1394. "System.Security.Permissions/6.0.0": {
  1395. "type": "package",
  1396. "dependencies": {
  1397. "System.Security.AccessControl": "6.0.0",
  1398. "System.Windows.Extensions": "6.0.0"
  1399. },
  1400. "compile": {
  1401. "lib/net6.0/_._": {
  1402. "related": ".xml"
  1403. }
  1404. },
  1405. "runtime": {
  1406. "lib/net6.0/System.Security.Permissions.dll": {
  1407. "related": ".xml"
  1408. }
  1409. },
  1410. "build": {
  1411. "buildTransitive/netcoreapp3.1/_._": {}
  1412. }
  1413. },
  1414. "System.Security.Principal.Windows/5.0.0": {
  1415. "type": "package",
  1416. "compile": {
  1417. "ref/netcoreapp3.0/_._": {
  1418. "related": ".xml"
  1419. }
  1420. },
  1421. "runtime": {
  1422. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  1423. "related": ".xml"
  1424. }
  1425. },
  1426. "runtimeTargets": {
  1427. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1428. "assetType": "runtime",
  1429. "rid": "unix"
  1430. },
  1431. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1432. "assetType": "runtime",
  1433. "rid": "win"
  1434. }
  1435. }
  1436. },
  1437. "System.Text.Encoding/4.3.0": {
  1438. "type": "package",
  1439. "dependencies": {
  1440. "Microsoft.NETCore.Platforms": "1.1.0",
  1441. "Microsoft.NETCore.Targets": "1.1.0",
  1442. "System.Runtime": "4.3.0"
  1443. },
  1444. "compile": {
  1445. "ref/netstandard1.3/System.Text.Encoding.dll": {
  1446. "related": ".xml"
  1447. }
  1448. }
  1449. },
  1450. "System.Text.Encoding.CodePages/6.0.0": {
  1451. "type": "package",
  1452. "dependencies": {
  1453. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1454. },
  1455. "compile": {
  1456. "lib/net6.0/_._": {
  1457. "related": ".xml"
  1458. }
  1459. },
  1460. "runtime": {
  1461. "lib/net6.0/System.Text.Encoding.CodePages.dll": {
  1462. "related": ".xml"
  1463. }
  1464. },
  1465. "build": {
  1466. "buildTransitive/netcoreapp3.1/_._": {}
  1467. },
  1468. "runtimeTargets": {
  1469. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
  1470. "assetType": "runtime",
  1471. "rid": "win"
  1472. }
  1473. }
  1474. },
  1475. "System.Text.Encodings.Web/8.0.0": {
  1476. "type": "package",
  1477. "compile": {
  1478. "lib/net8.0/System.Text.Encodings.Web.dll": {
  1479. "related": ".xml"
  1480. }
  1481. },
  1482. "runtime": {
  1483. "lib/net8.0/System.Text.Encodings.Web.dll": {
  1484. "related": ".xml"
  1485. }
  1486. },
  1487. "build": {
  1488. "buildTransitive/net6.0/_._": {}
  1489. },
  1490. "runtimeTargets": {
  1491. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": {
  1492. "assetType": "runtime",
  1493. "rid": "browser"
  1494. }
  1495. }
  1496. },
  1497. "System.Text.Json/8.0.0": {
  1498. "type": "package",
  1499. "dependencies": {
  1500. "System.Text.Encodings.Web": "8.0.0"
  1501. },
  1502. "compile": {
  1503. "lib/net8.0/System.Text.Json.dll": {
  1504. "related": ".xml"
  1505. }
  1506. },
  1507. "runtime": {
  1508. "lib/net8.0/System.Text.Json.dll": {
  1509. "related": ".xml"
  1510. }
  1511. },
  1512. "build": {
  1513. "buildTransitive/net6.0/System.Text.Json.targets": {}
  1514. }
  1515. },
  1516. "System.Threading.Channels/6.0.0": {
  1517. "type": "package",
  1518. "compile": {
  1519. "lib/net6.0/_._": {
  1520. "related": ".xml"
  1521. }
  1522. },
  1523. "runtime": {
  1524. "lib/net6.0/System.Threading.Channels.dll": {
  1525. "related": ".xml"
  1526. }
  1527. },
  1528. "build": {
  1529. "buildTransitive/netcoreapp3.1/_._": {}
  1530. }
  1531. },
  1532. "System.Threading.Tasks.Extensions/4.5.4": {
  1533. "type": "package",
  1534. "compile": {
  1535. "ref/netcoreapp2.1/_._": {}
  1536. },
  1537. "runtime": {
  1538. "lib/netcoreapp2.1/_._": {}
  1539. }
  1540. },
  1541. "System.Windows.Extensions/6.0.0": {
  1542. "type": "package",
  1543. "dependencies": {
  1544. "System.Drawing.Common": "6.0.0"
  1545. },
  1546. "compile": {
  1547. "lib/net6.0/_._": {
  1548. "related": ".xml"
  1549. }
  1550. },
  1551. "runtime": {
  1552. "lib/net6.0/System.Windows.Extensions.dll": {
  1553. "related": ".xml"
  1554. }
  1555. },
  1556. "runtimeTargets": {
  1557. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
  1558. "assetType": "runtime",
  1559. "rid": "win"
  1560. }
  1561. }
  1562. }
  1563. }
  1564. },
  1565. "libraries": {
  1566. "Azure.Core/1.25.0": {
  1567. "sha512": "X8Dd4sAggS84KScWIjEbFAdt2U1KDolQopTPoHVubG2y3CM54f9l6asVrP5Uy384NWXjsspPYaJgz5xHc+KvTA==",
  1568. "type": "package",
  1569. "path": "azure.core/1.25.0",
  1570. "files": [
  1571. ".nupkg.metadata",
  1572. ".signature.p7s",
  1573. "CHANGELOG.md",
  1574. "README.md",
  1575. "azure.core.1.25.0.nupkg.sha512",
  1576. "azure.core.nuspec",
  1577. "azureicon.png",
  1578. "lib/net461/Azure.Core.dll",
  1579. "lib/net461/Azure.Core.xml",
  1580. "lib/net5.0/Azure.Core.dll",
  1581. "lib/net5.0/Azure.Core.xml",
  1582. "lib/netcoreapp2.1/Azure.Core.dll",
  1583. "lib/netcoreapp2.1/Azure.Core.xml",
  1584. "lib/netstandard2.0/Azure.Core.dll",
  1585. "lib/netstandard2.0/Azure.Core.xml"
  1586. ]
  1587. },
  1588. "Azure.Identity/1.7.0": {
  1589. "sha512": "eHEiCO/8+MfNc9nH5dVew/+FvxdaGrkRL4OMNwIz0W79+wtJyEoeRlXJ3SrXhoy9XR58geBYKmzMR83VO7bcAw==",
  1590. "type": "package",
  1591. "path": "azure.identity/1.7.0",
  1592. "files": [
  1593. ".nupkg.metadata",
  1594. ".signature.p7s",
  1595. "CHANGELOG.md",
  1596. "README.md",
  1597. "azure.identity.1.7.0.nupkg.sha512",
  1598. "azure.identity.nuspec",
  1599. "azureicon.png",
  1600. "lib/netstandard2.0/Azure.Identity.dll",
  1601. "lib/netstandard2.0/Azure.Identity.xml"
  1602. ]
  1603. },
  1604. "Humanizer.Core/2.14.1": {
  1605. "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
  1606. "type": "package",
  1607. "path": "humanizer.core/2.14.1",
  1608. "files": [
  1609. ".nupkg.metadata",
  1610. ".signature.p7s",
  1611. "humanizer.core.2.14.1.nupkg.sha512",
  1612. "humanizer.core.nuspec",
  1613. "lib/net6.0/Humanizer.dll",
  1614. "lib/net6.0/Humanizer.xml",
  1615. "lib/netstandard1.0/Humanizer.dll",
  1616. "lib/netstandard1.0/Humanizer.xml",
  1617. "lib/netstandard2.0/Humanizer.dll",
  1618. "lib/netstandard2.0/Humanizer.xml",
  1619. "logo.png"
  1620. ]
  1621. },
  1622. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {
  1623. "sha512": "buuMMCTxFcVkOkEftb2OafYxrveNGre9KJF4Oi1DkR4rxIj6oLam7Wq3g0Fp9hNVpJteKEPiupsxYnPrD/oUGA==",
  1624. "type": "package",
  1625. "path": "microsoft.aspnetcore.cryptography.internal/8.0.0",
  1626. "files": [
  1627. ".nupkg.metadata",
  1628. ".signature.p7s",
  1629. "Icon.png",
  1630. "THIRD-PARTY-NOTICES.TXT",
  1631. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll",
  1632. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml",
  1633. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  1634. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  1635. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  1636. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  1637. "microsoft.aspnetcore.cryptography.internal.8.0.0.nupkg.sha512",
  1638. "microsoft.aspnetcore.cryptography.internal.nuspec"
  1639. ]
  1640. },
  1641. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  1642. "sha512": "65w93R5wqUUs35R9wjHHDf75GqAbxJsNByKZo5TbQOWSXcUbLWrDUWBQHv78iXIT0PL1pXNqKQz7OHiHMvo0/A==",
  1643. "type": "package",
  1644. "path": "microsoft.aspnetcore.cryptography.keyderivation/8.0.0",
  1645. "files": [
  1646. ".nupkg.metadata",
  1647. ".signature.p7s",
  1648. "Icon.png",
  1649. "THIRD-PARTY-NOTICES.TXT",
  1650. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  1651. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  1652. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  1653. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  1654. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  1655. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  1656. "microsoft.aspnetcore.cryptography.keyderivation.8.0.0.nupkg.sha512",
  1657. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  1658. ]
  1659. },
  1660. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  1661. "sha512": "ua2LSZY/f0BkNUUVPPm83eq4Xnt+FZYutiMimRrzSmv2K2t2Ia/PuP4CfibYNSwnKl6fbZ49Bwn2mQGWnmmvOA==",
  1662. "type": "package",
  1663. "path": "microsoft.aspnetcore.identity.entityframeworkcore/8.0.0",
  1664. "files": [
  1665. ".nupkg.metadata",
  1666. ".signature.p7s",
  1667. "Icon.png",
  1668. "THIRD-PARTY-NOTICES.TXT",
  1669. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  1670. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  1671. "microsoft.aspnetcore.identity.entityframeworkcore.8.0.0.nupkg.sha512",
  1672. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  1673. ]
  1674. },
  1675. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  1676. "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
  1677. "type": "package",
  1678. "path": "microsoft.bcl.asyncinterfaces/6.0.0",
  1679. "files": [
  1680. ".nupkg.metadata",
  1681. ".signature.p7s",
  1682. "Icon.png",
  1683. "LICENSE.TXT",
  1684. "THIRD-PARTY-NOTICES.TXT",
  1685. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  1686. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  1687. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  1688. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  1689. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  1690. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  1691. "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
  1692. "microsoft.bcl.asyncinterfaces.nuspec",
  1693. "useSharedDesignerContext.txt"
  1694. ]
  1695. },
  1696. "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
  1697. "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
  1698. "type": "package",
  1699. "path": "microsoft.codeanalysis.analyzers/3.3.3",
  1700. "hasTools": true,
  1701. "files": [
  1702. ".nupkg.metadata",
  1703. ".signature.p7s",
  1704. "Icon.png",
  1705. "ThirdPartyNotices.rtf",
  1706. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  1707. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  1708. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1709. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1710. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1711. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1712. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1713. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1714. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1715. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1716. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1717. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1718. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1719. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1720. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1721. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  1722. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  1723. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1724. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1725. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1726. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1727. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1728. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1729. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1730. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1731. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1732. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1733. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1734. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1735. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1736. "build/Microsoft.CodeAnalysis.Analyzers.props",
  1737. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  1738. "build/config/analysislevel_2_9_8_all.editorconfig",
  1739. "build/config/analysislevel_2_9_8_default.editorconfig",
  1740. "build/config/analysislevel_2_9_8_minimum.editorconfig",
  1741. "build/config/analysislevel_2_9_8_none.editorconfig",
  1742. "build/config/analysislevel_2_9_8_recommended.editorconfig",
  1743. "build/config/analysislevel_3_3_all.editorconfig",
  1744. "build/config/analysislevel_3_3_default.editorconfig",
  1745. "build/config/analysislevel_3_3_minimum.editorconfig",
  1746. "build/config/analysislevel_3_3_none.editorconfig",
  1747. "build/config/analysislevel_3_3_recommended.editorconfig",
  1748. "build/config/analysislevel_3_all.editorconfig",
  1749. "build/config/analysislevel_3_default.editorconfig",
  1750. "build/config/analysislevel_3_minimum.editorconfig",
  1751. "build/config/analysislevel_3_none.editorconfig",
  1752. "build/config/analysislevel_3_recommended.editorconfig",
  1753. "build/config/analysislevelcorrectness_2_9_8_all.editorconfig",
  1754. "build/config/analysislevelcorrectness_2_9_8_default.editorconfig",
  1755. "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig",
  1756. "build/config/analysislevelcorrectness_2_9_8_none.editorconfig",
  1757. "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig",
  1758. "build/config/analysislevelcorrectness_3_3_all.editorconfig",
  1759. "build/config/analysislevelcorrectness_3_3_default.editorconfig",
  1760. "build/config/analysislevelcorrectness_3_3_minimum.editorconfig",
  1761. "build/config/analysislevelcorrectness_3_3_none.editorconfig",
  1762. "build/config/analysislevelcorrectness_3_3_recommended.editorconfig",
  1763. "build/config/analysislevelcorrectness_3_all.editorconfig",
  1764. "build/config/analysislevelcorrectness_3_default.editorconfig",
  1765. "build/config/analysislevelcorrectness_3_minimum.editorconfig",
  1766. "build/config/analysislevelcorrectness_3_none.editorconfig",
  1767. "build/config/analysislevelcorrectness_3_recommended.editorconfig",
  1768. "build/config/analysislevellibrary_2_9_8_all.editorconfig",
  1769. "build/config/analysislevellibrary_2_9_8_default.editorconfig",
  1770. "build/config/analysislevellibrary_2_9_8_minimum.editorconfig",
  1771. "build/config/analysislevellibrary_2_9_8_none.editorconfig",
  1772. "build/config/analysislevellibrary_2_9_8_recommended.editorconfig",
  1773. "build/config/analysislevellibrary_3_3_all.editorconfig",
  1774. "build/config/analysislevellibrary_3_3_default.editorconfig",
  1775. "build/config/analysislevellibrary_3_3_minimum.editorconfig",
  1776. "build/config/analysislevellibrary_3_3_none.editorconfig",
  1777. "build/config/analysislevellibrary_3_3_recommended.editorconfig",
  1778. "build/config/analysislevellibrary_3_all.editorconfig",
  1779. "build/config/analysislevellibrary_3_default.editorconfig",
  1780. "build/config/analysislevellibrary_3_minimum.editorconfig",
  1781. "build/config/analysislevellibrary_3_none.editorconfig",
  1782. "build/config/analysislevellibrary_3_recommended.editorconfig",
  1783. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig",
  1784. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig",
  1785. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig",
  1786. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig",
  1787. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig",
  1788. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig",
  1789. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig",
  1790. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig",
  1791. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig",
  1792. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig",
  1793. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig",
  1794. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig",
  1795. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig",
  1796. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig",
  1797. "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig",
  1798. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig",
  1799. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig",
  1800. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig",
  1801. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig",
  1802. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig",
  1803. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig",
  1804. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig",
  1805. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig",
  1806. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig",
  1807. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig",
  1808. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig",
  1809. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig",
  1810. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig",
  1811. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig",
  1812. "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig",
  1813. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig",
  1814. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig",
  1815. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig",
  1816. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig",
  1817. "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig",
  1818. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig",
  1819. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig",
  1820. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig",
  1821. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig",
  1822. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig",
  1823. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig",
  1824. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig",
  1825. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig",
  1826. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig",
  1827. "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig",
  1828. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig",
  1829. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig",
  1830. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig",
  1831. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig",
  1832. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig",
  1833. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig",
  1834. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig",
  1835. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig",
  1836. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig",
  1837. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig",
  1838. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig",
  1839. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig",
  1840. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig",
  1841. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig",
  1842. "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig",
  1843. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig",
  1844. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig",
  1845. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig",
  1846. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig",
  1847. "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig",
  1848. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig",
  1849. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig",
  1850. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig",
  1851. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig",
  1852. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig",
  1853. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig",
  1854. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig",
  1855. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig",
  1856. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig",
  1857. "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig",
  1858. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig",
  1859. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig",
  1860. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig",
  1861. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig",
  1862. "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig",
  1863. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig",
  1864. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig",
  1865. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig",
  1866. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig",
  1867. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig",
  1868. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig",
  1869. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig",
  1870. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig",
  1871. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig",
  1872. "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig",
  1873. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig",
  1874. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig",
  1875. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig",
  1876. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig",
  1877. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig",
  1878. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig",
  1879. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig",
  1880. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig",
  1881. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig",
  1882. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig",
  1883. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig",
  1884. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig",
  1885. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig",
  1886. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig",
  1887. "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig",
  1888. "documentation/Analyzer Configuration.md",
  1889. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  1890. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  1891. "editorconfig/AllRulesDefault/.editorconfig",
  1892. "editorconfig/AllRulesDisabled/.editorconfig",
  1893. "editorconfig/AllRulesEnabled/.editorconfig",
  1894. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  1895. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  1896. "editorconfig/DataflowRulesDefault/.editorconfig",
  1897. "editorconfig/DataflowRulesEnabled/.editorconfig",
  1898. "editorconfig/LibraryRulesDefault/.editorconfig",
  1899. "editorconfig/LibraryRulesEnabled/.editorconfig",
  1900. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  1901. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  1902. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  1903. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  1904. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  1905. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  1906. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  1907. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  1908. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  1909. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  1910. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  1911. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  1912. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  1913. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  1914. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  1915. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  1916. "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
  1917. "microsoft.codeanalysis.analyzers.nuspec",
  1918. "rulesets/AllRulesDefault.ruleset",
  1919. "rulesets/AllRulesDisabled.ruleset",
  1920. "rulesets/AllRulesEnabled.ruleset",
  1921. "rulesets/CorrectnessRulesDefault.ruleset",
  1922. "rulesets/CorrectnessRulesEnabled.ruleset",
  1923. "rulesets/DataflowRulesDefault.ruleset",
  1924. "rulesets/DataflowRulesEnabled.ruleset",
  1925. "rulesets/LibraryRulesDefault.ruleset",
  1926. "rulesets/LibraryRulesEnabled.ruleset",
  1927. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  1928. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  1929. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  1930. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  1931. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  1932. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  1933. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  1934. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  1935. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  1936. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  1937. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  1938. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  1939. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  1940. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  1941. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  1942. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  1943. "tools/install.ps1",
  1944. "tools/uninstall.ps1"
  1945. ]
  1946. },
  1947. "Microsoft.CodeAnalysis.Common/4.5.0": {
  1948. "sha512": "lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
  1949. "type": "package",
  1950. "path": "microsoft.codeanalysis.common/4.5.0",
  1951. "files": [
  1952. ".nupkg.metadata",
  1953. ".signature.p7s",
  1954. "Icon.png",
  1955. "ThirdPartyNotices.rtf",
  1956. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  1957. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  1958. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  1959. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  1960. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  1961. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  1962. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  1963. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  1964. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  1965. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  1966. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  1967. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  1968. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  1969. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  1970. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  1971. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  1972. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  1973. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  1974. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  1975. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  1976. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  1977. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  1978. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  1979. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  1980. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  1981. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  1982. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  1983. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  1984. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  1985. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  1986. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  1987. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  1988. "microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
  1989. "microsoft.codeanalysis.common.nuspec"
  1990. ]
  1991. },
  1992. "Microsoft.CodeAnalysis.CSharp/4.5.0": {
  1993. "sha512": "cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
  1994. "type": "package",
  1995. "path": "microsoft.codeanalysis.csharp/4.5.0",
  1996. "files": [
  1997. ".nupkg.metadata",
  1998. ".signature.p7s",
  1999. "Icon.png",
  2000. "ThirdPartyNotices.rtf",
  2001. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  2002. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  2003. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  2004. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2005. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2006. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2007. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2008. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2009. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2010. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2011. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2012. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2013. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2014. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2015. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2016. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2017. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  2018. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  2019. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  2020. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2021. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2022. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2023. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2024. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2025. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2026. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2027. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2028. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2029. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2030. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2031. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2032. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2033. "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
  2034. "microsoft.codeanalysis.csharp.nuspec"
  2035. ]
  2036. },
  2037. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
  2038. "sha512": "h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
  2039. "type": "package",
  2040. "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
  2041. "files": [
  2042. ".nupkg.metadata",
  2043. ".signature.p7s",
  2044. "Icon.png",
  2045. "ThirdPartyNotices.rtf",
  2046. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  2047. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  2048. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  2049. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2050. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2051. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2052. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2053. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2054. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2055. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2056. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2057. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2058. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2059. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2060. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2061. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2062. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  2063. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  2064. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  2065. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2066. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2067. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2068. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2069. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2070. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2071. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2072. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2073. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2074. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2075. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2076. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2077. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2078. "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
  2079. "microsoft.codeanalysis.csharp.workspaces.nuspec"
  2080. ]
  2081. },
  2082. "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
  2083. "sha512": "l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
  2084. "type": "package",
  2085. "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
  2086. "files": [
  2087. ".nupkg.metadata",
  2088. ".signature.p7s",
  2089. "Icon.png",
  2090. "ThirdPartyNotices.rtf",
  2091. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
  2092. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
  2093. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
  2094. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2095. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2096. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2097. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2098. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2099. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2100. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2101. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2102. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2103. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2104. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2105. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2106. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2107. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
  2108. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  2109. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
  2110. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2111. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2112. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2113. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2114. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2115. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2116. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2117. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2118. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2119. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2120. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2121. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2122. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2123. "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
  2124. "microsoft.codeanalysis.workspaces.common.nuspec"
  2125. ]
  2126. },
  2127. "Microsoft.CSharp/4.5.0": {
  2128. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  2129. "type": "package",
  2130. "path": "microsoft.csharp/4.5.0",
  2131. "files": [
  2132. ".nupkg.metadata",
  2133. ".signature.p7s",
  2134. "LICENSE.TXT",
  2135. "THIRD-PARTY-NOTICES.TXT",
  2136. "lib/MonoAndroid10/_._",
  2137. "lib/MonoTouch10/_._",
  2138. "lib/net45/_._",
  2139. "lib/netcore50/Microsoft.CSharp.dll",
  2140. "lib/netcoreapp2.0/_._",
  2141. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2142. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2143. "lib/portable-net45+win8+wp8+wpa81/_._",
  2144. "lib/uap10.0.16299/_._",
  2145. "lib/win8/_._",
  2146. "lib/wp80/_._",
  2147. "lib/wpa81/_._",
  2148. "lib/xamarinios10/_._",
  2149. "lib/xamarinmac20/_._",
  2150. "lib/xamarintvos10/_._",
  2151. "lib/xamarinwatchos10/_._",
  2152. "microsoft.csharp.4.5.0.nupkg.sha512",
  2153. "microsoft.csharp.nuspec",
  2154. "ref/MonoAndroid10/_._",
  2155. "ref/MonoTouch10/_._",
  2156. "ref/net45/_._",
  2157. "ref/netcore50/Microsoft.CSharp.dll",
  2158. "ref/netcore50/Microsoft.CSharp.xml",
  2159. "ref/netcore50/de/Microsoft.CSharp.xml",
  2160. "ref/netcore50/es/Microsoft.CSharp.xml",
  2161. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2162. "ref/netcore50/it/Microsoft.CSharp.xml",
  2163. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2164. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2165. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2166. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2167. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2168. "ref/netcoreapp2.0/_._",
  2169. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2170. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2171. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2172. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2173. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2174. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2175. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2176. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2177. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2178. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2179. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2180. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2181. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2182. "ref/portable-net45+win8+wp8+wpa81/_._",
  2183. "ref/uap10.0.16299/_._",
  2184. "ref/win8/_._",
  2185. "ref/wp80/_._",
  2186. "ref/wpa81/_._",
  2187. "ref/xamarinios10/_._",
  2188. "ref/xamarinmac20/_._",
  2189. "ref/xamarintvos10/_._",
  2190. "ref/xamarinwatchos10/_._",
  2191. "useSharedDesignerContext.txt",
  2192. "version.txt"
  2193. ]
  2194. },
  2195. "Microsoft.Data.SqlClient/5.1.1": {
  2196. "sha512": "MW5E9HFvCaV069o8b6YpuRDPBux8s96qDnOJ+4N9QNUCs7c5W3KxwQ+ftpAjbMUlImL+c9WR+l+f5hzjkqhu2g==",
  2197. "type": "package",
  2198. "path": "microsoft.data.sqlclient/5.1.1",
  2199. "files": [
  2200. ".nupkg.metadata",
  2201. ".signature.p7s",
  2202. "dotnet.png",
  2203. "lib/net462/Microsoft.Data.SqlClient.dll",
  2204. "lib/net462/Microsoft.Data.SqlClient.pdb",
  2205. "lib/net462/Microsoft.Data.SqlClient.xml",
  2206. "lib/net462/de/Microsoft.Data.SqlClient.resources.dll",
  2207. "lib/net462/es/Microsoft.Data.SqlClient.resources.dll",
  2208. "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll",
  2209. "lib/net462/it/Microsoft.Data.SqlClient.resources.dll",
  2210. "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll",
  2211. "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll",
  2212. "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2213. "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll",
  2214. "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2215. "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2216. "lib/net6.0/Microsoft.Data.SqlClient.dll",
  2217. "lib/net6.0/Microsoft.Data.SqlClient.pdb",
  2218. "lib/net6.0/Microsoft.Data.SqlClient.xml",
  2219. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2220. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2221. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2222. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2223. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2224. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2225. "microsoft.data.sqlclient.5.1.1.nupkg.sha512",
  2226. "microsoft.data.sqlclient.nuspec",
  2227. "ref/net462/Microsoft.Data.SqlClient.dll",
  2228. "ref/net462/Microsoft.Data.SqlClient.pdb",
  2229. "ref/net462/Microsoft.Data.SqlClient.xml",
  2230. "ref/net6.0/Microsoft.Data.SqlClient.dll",
  2231. "ref/net6.0/Microsoft.Data.SqlClient.pdb",
  2232. "ref/net6.0/Microsoft.Data.SqlClient.xml",
  2233. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2234. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2235. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2236. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2237. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2238. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2239. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll",
  2240. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  2241. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2242. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2243. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2244. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2245. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll",
  2246. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb",
  2247. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll",
  2248. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  2249. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2250. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2251. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2252. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  2253. ]
  2254. },
  2255. "Microsoft.Data.SqlClient.SNI.runtime/5.1.0": {
  2256. "sha512": "jVsElisM5sfBzaaV9kdq2NXZLwIbytetnsOIlJ0cQGgQP4zFNBmkfHBnpwtmKrtBJBEV9+9PVQPVrcCVhDgcIg==",
  2257. "type": "package",
  2258. "path": "microsoft.data.sqlclient.sni.runtime/5.1.0",
  2259. "files": [
  2260. ".nupkg.metadata",
  2261. ".signature.p7s",
  2262. "LICENSE.txt",
  2263. "dotnet.png",
  2264. "microsoft.data.sqlclient.sni.runtime.5.1.0.nupkg.sha512",
  2265. "microsoft.data.sqlclient.sni.runtime.nuspec",
  2266. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  2267. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  2268. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  2269. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  2270. ]
  2271. },
  2272. "Microsoft.EntityFrameworkCore/8.0.0": {
  2273. "sha512": "SoODat83pGQUpWB9xULdMX6tuKpq/RTXDuJ2WeC1ldUKcKzLkaFJD1n+I0nOLY58odez/e7z8b6zdp235G/kyg==",
  2274. "type": "package",
  2275. "path": "microsoft.entityframeworkcore/8.0.0",
  2276. "files": [
  2277. ".nupkg.metadata",
  2278. ".signature.p7s",
  2279. "Icon.png",
  2280. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
  2281. "lib/net8.0/Microsoft.EntityFrameworkCore.dll",
  2282. "lib/net8.0/Microsoft.EntityFrameworkCore.xml",
  2283. "microsoft.entityframeworkcore.8.0.0.nupkg.sha512",
  2284. "microsoft.entityframeworkcore.nuspec"
  2285. ]
  2286. },
  2287. "Microsoft.EntityFrameworkCore.Abstractions/8.0.0": {
  2288. "sha512": "VR22s3+zoqlVI7xauFKn1znSIFHO8xuILT+noSwS8bZCKcHz0ydkTDQMuaxSa5WBaQrZmwtTz9rmRvJ7X8mSPQ==",
  2289. "type": "package",
  2290. "path": "microsoft.entityframeworkcore.abstractions/8.0.0",
  2291. "files": [
  2292. ".nupkg.metadata",
  2293. ".signature.p7s",
  2294. "Icon.png",
  2295. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2296. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2297. "microsoft.entityframeworkcore.abstractions.8.0.0.nupkg.sha512",
  2298. "microsoft.entityframeworkcore.abstractions.nuspec"
  2299. ]
  2300. },
  2301. "Microsoft.EntityFrameworkCore.Analyzers/8.0.0": {
  2302. "sha512": "ZXxEeLs2zoZ1TA+QoMMcw4f3Tirf8PzgdDax8RoWo0dxI2KmqiEGWYjhm2B/XyWfglc6+mNRyB8rZiQSmxCpeg==",
  2303. "type": "package",
  2304. "path": "microsoft.entityframeworkcore.analyzers/8.0.0",
  2305. "files": [
  2306. ".nupkg.metadata",
  2307. ".signature.p7s",
  2308. "Icon.png",
  2309. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2310. "lib/netstandard2.0/_._",
  2311. "microsoft.entityframeworkcore.analyzers.8.0.0.nupkg.sha512",
  2312. "microsoft.entityframeworkcore.analyzers.nuspec"
  2313. ]
  2314. },
  2315. "Microsoft.EntityFrameworkCore.Design/8.0.0": {
  2316. "sha512": "94reKYu63jg4O75UI3LMJHwOSi8tQ6IfubiZhdnSsWcgtmAuF8OyLfjK/MIxuvaQRJZAF6E747FIuxjOtb8/og==",
  2317. "type": "package",
  2318. "path": "microsoft.entityframeworkcore.design/8.0.0",
  2319. "files": [
  2320. ".nupkg.metadata",
  2321. ".signature.p7s",
  2322. "Icon.png",
  2323. "build/net8.0/Microsoft.EntityFrameworkCore.Design.props",
  2324. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll",
  2325. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml",
  2326. "microsoft.entityframeworkcore.design.8.0.0.nupkg.sha512",
  2327. "microsoft.entityframeworkcore.design.nuspec"
  2328. ]
  2329. },
  2330. "Microsoft.EntityFrameworkCore.Relational/8.0.0": {
  2331. "sha512": "fFKkr24cYc7Zw5T6DC4tEyOEPgPbq23BBmym1r9kn4ET9F3HKaetpOeQtV2RryYyUxEeNkJuxgfiZHTisqZc+A==",
  2332. "type": "package",
  2333. "path": "microsoft.entityframeworkcore.relational/8.0.0",
  2334. "files": [
  2335. ".nupkg.metadata",
  2336. ".signature.p7s",
  2337. "Icon.png",
  2338. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
  2339. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
  2340. "microsoft.entityframeworkcore.relational.8.0.0.nupkg.sha512",
  2341. "microsoft.entityframeworkcore.relational.nuspec"
  2342. ]
  2343. },
  2344. "Microsoft.EntityFrameworkCore.SqlServer/8.0.0": {
  2345. "sha512": "GeOmafQn64HyQtYcI/Omv/D/YVHd1zEkWbP3zNQu4oC+usE9K0qOp0R8KgWWFEf8BU4tXuYbok40W0SjfbaK/A==",
  2346. "type": "package",
  2347. "path": "microsoft.entityframeworkcore.sqlserver/8.0.0",
  2348. "files": [
  2349. ".nupkg.metadata",
  2350. ".signature.p7s",
  2351. "Icon.png",
  2352. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  2353. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  2354. "microsoft.entityframeworkcore.sqlserver.8.0.0.nupkg.sha512",
  2355. "microsoft.entityframeworkcore.sqlserver.nuspec"
  2356. ]
  2357. },
  2358. "Microsoft.EntityFrameworkCore.Tools/8.0.0": {
  2359. "sha512": "zRdaXiiB1gEA0b+AJTd2+drh78gkEA4HyZ1vqNZrKq4xwW8WwavSiQsoeb1UsIMZkocLMBbhQYWClkZzuTKEgQ==",
  2360. "type": "package",
  2361. "path": "microsoft.entityframeworkcore.tools/8.0.0",
  2362. "hasTools": true,
  2363. "files": [
  2364. ".nupkg.metadata",
  2365. ".signature.p7s",
  2366. "Icon.png",
  2367. "lib/net8.0/_._",
  2368. "microsoft.entityframeworkcore.tools.8.0.0.nupkg.sha512",
  2369. "microsoft.entityframeworkcore.tools.nuspec",
  2370. "tools/EntityFrameworkCore.PS2.psd1",
  2371. "tools/EntityFrameworkCore.PS2.psm1",
  2372. "tools/EntityFrameworkCore.psd1",
  2373. "tools/EntityFrameworkCore.psm1",
  2374. "tools/about_EntityFrameworkCore.help.txt",
  2375. "tools/init.ps1",
  2376. "tools/net461/any/ef.exe",
  2377. "tools/net461/win-arm64/ef.exe",
  2378. "tools/net461/win-x86/ef.exe",
  2379. "tools/netcoreapp2.0/any/ef.dll",
  2380. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  2381. ]
  2382. },
  2383. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  2384. "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
  2385. "type": "package",
  2386. "path": "microsoft.extensions.caching.abstractions/8.0.0",
  2387. "files": [
  2388. ".nupkg.metadata",
  2389. ".signature.p7s",
  2390. "Icon.png",
  2391. "LICENSE.TXT",
  2392. "PACKAGE.md",
  2393. "THIRD-PARTY-NOTICES.TXT",
  2394. "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
  2395. "buildTransitive/net462/_._",
  2396. "buildTransitive/net6.0/_._",
  2397. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
  2398. "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
  2399. "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
  2400. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2401. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2402. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2403. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2404. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2405. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2406. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2407. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2408. "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
  2409. "microsoft.extensions.caching.abstractions.nuspec",
  2410. "useSharedDesignerContext.txt"
  2411. ]
  2412. },
  2413. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  2414. "sha512": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==",
  2415. "type": "package",
  2416. "path": "microsoft.extensions.caching.memory/8.0.0",
  2417. "files": [
  2418. ".nupkg.metadata",
  2419. ".signature.p7s",
  2420. "Icon.png",
  2421. "LICENSE.TXT",
  2422. "PACKAGE.md",
  2423. "THIRD-PARTY-NOTICES.TXT",
  2424. "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
  2425. "buildTransitive/net462/_._",
  2426. "buildTransitive/net6.0/_._",
  2427. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
  2428. "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
  2429. "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
  2430. "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
  2431. "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
  2432. "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
  2433. "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
  2434. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
  2435. "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml",
  2436. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2437. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2438. "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
  2439. "microsoft.extensions.caching.memory.nuspec",
  2440. "useSharedDesignerContext.txt"
  2441. ]
  2442. },
  2443. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  2444. "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  2445. "type": "package",
  2446. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  2447. "files": [
  2448. ".nupkg.metadata",
  2449. ".signature.p7s",
  2450. "Icon.png",
  2451. "LICENSE.TXT",
  2452. "PACKAGE.md",
  2453. "THIRD-PARTY-NOTICES.TXT",
  2454. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  2455. "buildTransitive/net462/_._",
  2456. "buildTransitive/net6.0/_._",
  2457. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  2458. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  2459. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  2460. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2461. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2462. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2463. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2464. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2465. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2466. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2467. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2468. "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
  2469. "microsoft.extensions.configuration.abstractions.nuspec",
  2470. "useSharedDesignerContext.txt"
  2471. ]
  2472. },
  2473. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  2474. "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  2475. "type": "package",
  2476. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  2477. "files": [
  2478. ".nupkg.metadata",
  2479. ".signature.p7s",
  2480. "Icon.png",
  2481. "LICENSE.TXT",
  2482. "PACKAGE.md",
  2483. "THIRD-PARTY-NOTICES.TXT",
  2484. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  2485. "buildTransitive/net462/_._",
  2486. "buildTransitive/net6.0/_._",
  2487. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  2488. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  2489. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  2490. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  2491. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  2492. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  2493. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  2494. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  2495. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  2496. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2497. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2498. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2499. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2500. "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  2501. "microsoft.extensions.dependencyinjection.nuspec",
  2502. "useSharedDesignerContext.txt"
  2503. ]
  2504. },
  2505. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  2506. "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
  2507. "type": "package",
  2508. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
  2509. "files": [
  2510. ".nupkg.metadata",
  2511. ".signature.p7s",
  2512. "Icon.png",
  2513. "LICENSE.TXT",
  2514. "PACKAGE.md",
  2515. "THIRD-PARTY-NOTICES.TXT",
  2516. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2517. "buildTransitive/net462/_._",
  2518. "buildTransitive/net6.0/_._",
  2519. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2520. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2521. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2522. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2523. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2524. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2525. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2526. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2527. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2528. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2529. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2530. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2531. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2532. "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
  2533. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2534. "useSharedDesignerContext.txt"
  2535. ]
  2536. },
  2537. "Microsoft.Extensions.DependencyModel/8.0.0": {
  2538. "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==",
  2539. "type": "package",
  2540. "path": "microsoft.extensions.dependencymodel/8.0.0",
  2541. "files": [
  2542. ".nupkg.metadata",
  2543. ".signature.p7s",
  2544. "Icon.png",
  2545. "LICENSE.TXT",
  2546. "PACKAGE.md",
  2547. "THIRD-PARTY-NOTICES.TXT",
  2548. "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
  2549. "buildTransitive/net462/_._",
  2550. "buildTransitive/net6.0/_._",
  2551. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
  2552. "lib/net462/Microsoft.Extensions.DependencyModel.dll",
  2553. "lib/net462/Microsoft.Extensions.DependencyModel.xml",
  2554. "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
  2555. "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
  2556. "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
  2557. "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
  2558. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
  2559. "lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
  2560. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  2561. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  2562. "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512",
  2563. "microsoft.extensions.dependencymodel.nuspec",
  2564. "useSharedDesignerContext.txt"
  2565. ]
  2566. },
  2567. "Microsoft.Extensions.Identity.Core/8.0.0": {
  2568. "sha512": "hnXHyIQc+uc2uNMcIbr43+oNBAPEhMpW6lE8ux3MOegRz50WBna4AItlZDY7Y+Id1LLBbf73osUqeTw7CQ371w==",
  2569. "type": "package",
  2570. "path": "microsoft.extensions.identity.core/8.0.0",
  2571. "files": [
  2572. ".nupkg.metadata",
  2573. ".signature.p7s",
  2574. "Icon.png",
  2575. "THIRD-PARTY-NOTICES.TXT",
  2576. "lib/net462/Microsoft.Extensions.Identity.Core.dll",
  2577. "lib/net462/Microsoft.Extensions.Identity.Core.xml",
  2578. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll",
  2579. "lib/net8.0/Microsoft.Extensions.Identity.Core.xml",
  2580. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  2581. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  2582. "microsoft.extensions.identity.core.8.0.0.nupkg.sha512",
  2583. "microsoft.extensions.identity.core.nuspec"
  2584. ]
  2585. },
  2586. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  2587. "sha512": "DmDCpSpngZDBm44wVmxCeYs4HGJr/m32jMItp6pfb7KKtqWYw2vybHRg880j18k/eSFyM4v9uONsnEPgDdi9lg==",
  2588. "type": "package",
  2589. "path": "microsoft.extensions.identity.stores/8.0.0",
  2590. "files": [
  2591. ".nupkg.metadata",
  2592. ".signature.p7s",
  2593. "Icon.png",
  2594. "THIRD-PARTY-NOTICES.TXT",
  2595. "lib/net462/Microsoft.Extensions.Identity.Stores.dll",
  2596. "lib/net462/Microsoft.Extensions.Identity.Stores.xml",
  2597. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll",
  2598. "lib/net8.0/Microsoft.Extensions.Identity.Stores.xml",
  2599. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  2600. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  2601. "microsoft.extensions.identity.stores.8.0.0.nupkg.sha512",
  2602. "microsoft.extensions.identity.stores.nuspec"
  2603. ]
  2604. },
  2605. "Microsoft.Extensions.Logging/8.0.0": {
  2606. "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  2607. "type": "package",
  2608. "path": "microsoft.extensions.logging/8.0.0",
  2609. "files": [
  2610. ".nupkg.metadata",
  2611. ".signature.p7s",
  2612. "Icon.png",
  2613. "LICENSE.TXT",
  2614. "PACKAGE.md",
  2615. "THIRD-PARTY-NOTICES.TXT",
  2616. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  2617. "buildTransitive/net462/_._",
  2618. "buildTransitive/net6.0/_._",
  2619. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  2620. "lib/net462/Microsoft.Extensions.Logging.dll",
  2621. "lib/net462/Microsoft.Extensions.Logging.xml",
  2622. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  2623. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  2624. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  2625. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  2626. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  2627. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  2628. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2629. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2630. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  2631. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  2632. "microsoft.extensions.logging.8.0.0.nupkg.sha512",
  2633. "microsoft.extensions.logging.nuspec",
  2634. "useSharedDesignerContext.txt"
  2635. ]
  2636. },
  2637. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  2638. "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  2639. "type": "package",
  2640. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  2641. "files": [
  2642. ".nupkg.metadata",
  2643. ".signature.p7s",
  2644. "Icon.png",
  2645. "LICENSE.TXT",
  2646. "PACKAGE.md",
  2647. "THIRD-PARTY-NOTICES.TXT",
  2648. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  2649. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  2650. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  2651. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  2652. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2653. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  2654. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  2655. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  2656. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  2657. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  2658. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  2659. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2660. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  2661. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  2662. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  2663. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  2664. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  2665. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  2666. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2667. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  2668. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  2669. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  2670. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  2671. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  2672. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  2673. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2674. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  2675. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  2676. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  2677. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  2678. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  2679. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  2680. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2681. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  2682. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  2683. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  2684. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  2685. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  2686. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  2687. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2688. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  2689. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  2690. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  2691. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  2692. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  2693. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  2694. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  2695. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  2696. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  2697. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2698. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2699. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2700. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2701. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2702. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2703. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2704. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2705. "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
  2706. "microsoft.extensions.logging.abstractions.nuspec",
  2707. "useSharedDesignerContext.txt"
  2708. ]
  2709. },
  2710. "Microsoft.Extensions.Options/8.0.0": {
  2711. "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  2712. "type": "package",
  2713. "path": "microsoft.extensions.options/8.0.0",
  2714. "files": [
  2715. ".nupkg.metadata",
  2716. ".signature.p7s",
  2717. "Icon.png",
  2718. "LICENSE.TXT",
  2719. "PACKAGE.md",
  2720. "THIRD-PARTY-NOTICES.TXT",
  2721. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  2722. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2723. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2724. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2725. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2726. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2727. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2728. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2729. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2730. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2731. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2732. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2733. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2734. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2735. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  2736. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  2737. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
  2738. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  2739. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  2740. "lib/net462/Microsoft.Extensions.Options.dll",
  2741. "lib/net462/Microsoft.Extensions.Options.xml",
  2742. "lib/net6.0/Microsoft.Extensions.Options.dll",
  2743. "lib/net6.0/Microsoft.Extensions.Options.xml",
  2744. "lib/net7.0/Microsoft.Extensions.Options.dll",
  2745. "lib/net7.0/Microsoft.Extensions.Options.xml",
  2746. "lib/net8.0/Microsoft.Extensions.Options.dll",
  2747. "lib/net8.0/Microsoft.Extensions.Options.xml",
  2748. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2749. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2750. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  2751. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  2752. "microsoft.extensions.options.8.0.0.nupkg.sha512",
  2753. "microsoft.extensions.options.nuspec",
  2754. "useSharedDesignerContext.txt"
  2755. ]
  2756. },
  2757. "Microsoft.Extensions.Primitives/8.0.0": {
  2758. "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  2759. "type": "package",
  2760. "path": "microsoft.extensions.primitives/8.0.0",
  2761. "files": [
  2762. ".nupkg.metadata",
  2763. ".signature.p7s",
  2764. "Icon.png",
  2765. "LICENSE.TXT",
  2766. "PACKAGE.md",
  2767. "THIRD-PARTY-NOTICES.TXT",
  2768. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  2769. "buildTransitive/net462/_._",
  2770. "buildTransitive/net6.0/_._",
  2771. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  2772. "lib/net462/Microsoft.Extensions.Primitives.dll",
  2773. "lib/net462/Microsoft.Extensions.Primitives.xml",
  2774. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  2775. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  2776. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  2777. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  2778. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  2779. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  2780. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2781. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2782. "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
  2783. "microsoft.extensions.primitives.nuspec",
  2784. "useSharedDesignerContext.txt"
  2785. ]
  2786. },
  2787. "Microsoft.Identity.Client/4.47.2": {
  2788. "sha512": "SPgesZRbXoDxg8Vv7k5Ou0ee7uupVw0E8ZCc4GKw25HANRLz1d5OSr0fvTVQRnEswo5Obk8qD4LOapYB+n5kzQ==",
  2789. "type": "package",
  2790. "path": "microsoft.identity.client/4.47.2",
  2791. "files": [
  2792. ".nupkg.metadata",
  2793. ".signature.p7s",
  2794. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  2795. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  2796. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  2797. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  2798. "lib/net45/Microsoft.Identity.Client.dll",
  2799. "lib/net45/Microsoft.Identity.Client.xml",
  2800. "lib/net461/Microsoft.Identity.Client.dll",
  2801. "lib/net461/Microsoft.Identity.Client.xml",
  2802. "lib/net5.0-windows10.0.17763/Microsoft.Identity.Client.dll",
  2803. "lib/net5.0-windows10.0.17763/Microsoft.Identity.Client.xml",
  2804. "lib/net6.0-android31.0/Microsoft.Identity.Client.dll",
  2805. "lib/net6.0-android31.0/Microsoft.Identity.Client.xml",
  2806. "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll",
  2807. "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml",
  2808. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  2809. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  2810. "lib/netstandard2.0/Microsoft.Identity.Client.dll",
  2811. "lib/netstandard2.0/Microsoft.Identity.Client.xml",
  2812. "lib/uap10.0.17763/Microsoft.Identity.Client.dll",
  2813. "lib/uap10.0.17763/Microsoft.Identity.Client.pri",
  2814. "lib/uap10.0.17763/Microsoft.Identity.Client.xml",
  2815. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  2816. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  2817. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  2818. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  2819. "microsoft.identity.client.4.47.2.nupkg.sha512",
  2820. "microsoft.identity.client.nuspec"
  2821. ]
  2822. },
  2823. "Microsoft.Identity.Client.Extensions.Msal/2.19.3": {
  2824. "sha512": "zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==",
  2825. "type": "package",
  2826. "path": "microsoft.identity.client.extensions.msal/2.19.3",
  2827. "files": [
  2828. ".nupkg.metadata",
  2829. ".signature.p7s",
  2830. "lib/net45/Microsoft.Identity.Client.Extensions.Msal.dll",
  2831. "lib/net45/Microsoft.Identity.Client.Extensions.Msal.xml",
  2832. "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll",
  2833. "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.xml",
  2834. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
  2835. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
  2836. "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512",
  2837. "microsoft.identity.client.extensions.msal.nuspec"
  2838. ]
  2839. },
  2840. "Microsoft.IdentityModel.Abstractions/6.24.0": {
  2841. "sha512": "X6aBK56Ot15qKyG7X37KsPnrwah+Ka55NJWPppWVTDi8xWq7CJgeNw2XyaeHgE1o/mW4THwoabZkBbeG2TPBiw==",
  2842. "type": "package",
  2843. "path": "microsoft.identitymodel.abstractions/6.24.0",
  2844. "files": [
  2845. ".nupkg.metadata",
  2846. ".signature.p7s",
  2847. "lib/net45/Microsoft.IdentityModel.Abstractions.dll",
  2848. "lib/net45/Microsoft.IdentityModel.Abstractions.xml",
  2849. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  2850. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  2851. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  2852. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  2853. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  2854. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  2855. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  2856. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  2857. "microsoft.identitymodel.abstractions.6.24.0.nupkg.sha512",
  2858. "microsoft.identitymodel.abstractions.nuspec"
  2859. ]
  2860. },
  2861. "Microsoft.IdentityModel.JsonWebTokens/6.24.0": {
  2862. "sha512": "XDWrkThcxfuWp79AvAtg5f+uRS1BxkIbJnsG/e8VPzOWkYYuDg33emLjp5EWcwXYYIDsHnVZD/00kM/PYFQc/g==",
  2863. "type": "package",
  2864. "path": "microsoft.identitymodel.jsonwebtokens/6.24.0",
  2865. "files": [
  2866. ".nupkg.metadata",
  2867. ".signature.p7s",
  2868. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  2869. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  2870. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  2871. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  2872. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  2873. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  2874. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  2875. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  2876. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  2877. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  2878. "microsoft.identitymodel.jsonwebtokens.6.24.0.nupkg.sha512",
  2879. "microsoft.identitymodel.jsonwebtokens.nuspec"
  2880. ]
  2881. },
  2882. "Microsoft.IdentityModel.Logging/6.24.0": {
  2883. "sha512": "qLYWDOowM/zghmYKXw1yfYKlHOdS41i8t4hVXr9bSI90zHqhyhQh9GwVy8pENzs5wHeytU23DymluC9NtgYv7w==",
  2884. "type": "package",
  2885. "path": "microsoft.identitymodel.logging/6.24.0",
  2886. "files": [
  2887. ".nupkg.metadata",
  2888. ".signature.p7s",
  2889. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  2890. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  2891. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  2892. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  2893. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  2894. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  2895. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  2896. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  2897. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  2898. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  2899. "microsoft.identitymodel.logging.6.24.0.nupkg.sha512",
  2900. "microsoft.identitymodel.logging.nuspec"
  2901. ]
  2902. },
  2903. "Microsoft.IdentityModel.Protocols/6.24.0": {
  2904. "sha512": "+NzKCkvsQ8X1r/Ff74V7CFr9OsdMRaB6DsV+qpH7NNLdYJ8O4qHbmTnNEsjFcDmk/gVNDwhoL2gN5pkPVq0lwQ==",
  2905. "type": "package",
  2906. "path": "microsoft.identitymodel.protocols/6.24.0",
  2907. "files": [
  2908. ".nupkg.metadata",
  2909. ".signature.p7s",
  2910. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  2911. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  2912. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  2913. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  2914. "lib/net472/Microsoft.IdentityModel.Protocols.dll",
  2915. "lib/net472/Microsoft.IdentityModel.Protocols.xml",
  2916. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll",
  2917. "lib/net6.0/Microsoft.IdentityModel.Protocols.xml",
  2918. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  2919. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  2920. "microsoft.identitymodel.protocols.6.24.0.nupkg.sha512",
  2921. "microsoft.identitymodel.protocols.nuspec"
  2922. ]
  2923. },
  2924. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.24.0": {
  2925. "sha512": "a/2RRrc8C9qaw8qdD9hv1ES9YKFgxaqr/SnwMSLbwQZJSUQDd4qx1K4EYgWaQWs73R+VXLyKSxN0f/uE9CsBiQ==",
  2926. "type": "package",
  2927. "path": "microsoft.identitymodel.protocols.openidconnect/6.24.0",
  2928. "files": [
  2929. ".nupkg.metadata",
  2930. ".signature.p7s",
  2931. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2932. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2933. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2934. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2935. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2936. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2937. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2938. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2939. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2940. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2941. "microsoft.identitymodel.protocols.openidconnect.6.24.0.nupkg.sha512",
  2942. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  2943. ]
  2944. },
  2945. "Microsoft.IdentityModel.Tokens/6.24.0": {
  2946. "sha512": "ZPqHi86UYuqJXJ7bLnlEctHKkPKT4lGUFbotoCNiXNCSL02emYlcxzGYsRGWWmbFEcYDMi2dcTLLYNzHqWOTsw==",
  2947. "type": "package",
  2948. "path": "microsoft.identitymodel.tokens/6.24.0",
  2949. "files": [
  2950. ".nupkg.metadata",
  2951. ".signature.p7s",
  2952. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  2953. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  2954. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  2955. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  2956. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  2957. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  2958. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  2959. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  2960. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  2961. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  2962. "microsoft.identitymodel.tokens.6.24.0.nupkg.sha512",
  2963. "microsoft.identitymodel.tokens.nuspec"
  2964. ]
  2965. },
  2966. "Microsoft.NETCore.Platforms/1.1.0": {
  2967. "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  2968. "type": "package",
  2969. "path": "microsoft.netcore.platforms/1.1.0",
  2970. "files": [
  2971. ".nupkg.metadata",
  2972. ".signature.p7s",
  2973. "ThirdPartyNotices.txt",
  2974. "dotnet_library_license.txt",
  2975. "lib/netstandard1.0/_._",
  2976. "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
  2977. "microsoft.netcore.platforms.nuspec",
  2978. "runtime.json"
  2979. ]
  2980. },
  2981. "Microsoft.NETCore.Targets/1.1.0": {
  2982. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2983. "type": "package",
  2984. "path": "microsoft.netcore.targets/1.1.0",
  2985. "files": [
  2986. ".nupkg.metadata",
  2987. ".signature.p7s",
  2988. "ThirdPartyNotices.txt",
  2989. "dotnet_library_license.txt",
  2990. "lib/netstandard1.0/_._",
  2991. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  2992. "microsoft.netcore.targets.nuspec",
  2993. "runtime.json"
  2994. ]
  2995. },
  2996. "Microsoft.SqlServer.Server/1.0.0": {
  2997. "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
  2998. "type": "package",
  2999. "path": "microsoft.sqlserver.server/1.0.0",
  3000. "files": [
  3001. ".nupkg.metadata",
  3002. ".signature.p7s",
  3003. "dotnet.png",
  3004. "lib/net46/Microsoft.SqlServer.Server.dll",
  3005. "lib/net46/Microsoft.SqlServer.Server.pdb",
  3006. "lib/net46/Microsoft.SqlServer.Server.xml",
  3007. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll",
  3008. "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb",
  3009. "lib/netstandard2.0/Microsoft.SqlServer.Server.xml",
  3010. "microsoft.sqlserver.server.1.0.0.nupkg.sha512",
  3011. "microsoft.sqlserver.server.nuspec"
  3012. ]
  3013. },
  3014. "Microsoft.Win32.SystemEvents/6.0.0": {
  3015. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  3016. "type": "package",
  3017. "path": "microsoft.win32.systemevents/6.0.0",
  3018. "files": [
  3019. ".nupkg.metadata",
  3020. ".signature.p7s",
  3021. "Icon.png",
  3022. "LICENSE.TXT",
  3023. "THIRD-PARTY-NOTICES.TXT",
  3024. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  3025. "buildTransitive/netcoreapp3.1/_._",
  3026. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3027. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3028. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3029. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3030. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  3031. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  3032. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3033. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3034. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  3035. "microsoft.win32.systemevents.nuspec",
  3036. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  3037. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  3038. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  3039. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  3040. "useSharedDesignerContext.txt"
  3041. ]
  3042. },
  3043. "Mono.TextTemplating/2.2.1": {
  3044. "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
  3045. "type": "package",
  3046. "path": "mono.texttemplating/2.2.1",
  3047. "files": [
  3048. ".nupkg.metadata",
  3049. ".signature.p7s",
  3050. "lib/net472/Mono.TextTemplating.dll",
  3051. "lib/netstandard2.0/Mono.TextTemplating.dll",
  3052. "mono.texttemplating.2.2.1.nupkg.sha512",
  3053. "mono.texttemplating.nuspec"
  3054. ]
  3055. },
  3056. "System.CodeDom/4.4.0": {
  3057. "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
  3058. "type": "package",
  3059. "path": "system.codedom/4.4.0",
  3060. "files": [
  3061. ".nupkg.metadata",
  3062. ".signature.p7s",
  3063. "LICENSE.TXT",
  3064. "THIRD-PARTY-NOTICES.TXT",
  3065. "lib/net461/System.CodeDom.dll",
  3066. "lib/netstandard2.0/System.CodeDom.dll",
  3067. "ref/net461/System.CodeDom.dll",
  3068. "ref/net461/System.CodeDom.xml",
  3069. "ref/netstandard2.0/System.CodeDom.dll",
  3070. "ref/netstandard2.0/System.CodeDom.xml",
  3071. "system.codedom.4.4.0.nupkg.sha512",
  3072. "system.codedom.nuspec",
  3073. "useSharedDesignerContext.txt",
  3074. "version.txt"
  3075. ]
  3076. },
  3077. "System.Collections.Immutable/6.0.0": {
  3078. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  3079. "type": "package",
  3080. "path": "system.collections.immutable/6.0.0",
  3081. "files": [
  3082. ".nupkg.metadata",
  3083. ".signature.p7s",
  3084. "Icon.png",
  3085. "LICENSE.TXT",
  3086. "THIRD-PARTY-NOTICES.TXT",
  3087. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  3088. "buildTransitive/netcoreapp3.1/_._",
  3089. "lib/net461/System.Collections.Immutable.dll",
  3090. "lib/net461/System.Collections.Immutable.xml",
  3091. "lib/net6.0/System.Collections.Immutable.dll",
  3092. "lib/net6.0/System.Collections.Immutable.xml",
  3093. "lib/netstandard2.0/System.Collections.Immutable.dll",
  3094. "lib/netstandard2.0/System.Collections.Immutable.xml",
  3095. "system.collections.immutable.6.0.0.nupkg.sha512",
  3096. "system.collections.immutable.nuspec",
  3097. "useSharedDesignerContext.txt"
  3098. ]
  3099. },
  3100. "System.Composition/6.0.0": {
  3101. "sha512": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
  3102. "type": "package",
  3103. "path": "system.composition/6.0.0",
  3104. "files": [
  3105. ".nupkg.metadata",
  3106. ".signature.p7s",
  3107. "Icon.png",
  3108. "LICENSE.TXT",
  3109. "THIRD-PARTY-NOTICES.TXT",
  3110. "buildTransitive/netcoreapp2.0/System.Composition.targets",
  3111. "buildTransitive/netcoreapp3.1/_._",
  3112. "system.composition.6.0.0.nupkg.sha512",
  3113. "system.composition.nuspec",
  3114. "useSharedDesignerContext.txt"
  3115. ]
  3116. },
  3117. "System.Composition.AttributedModel/6.0.0": {
  3118. "sha512": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
  3119. "type": "package",
  3120. "path": "system.composition.attributedmodel/6.0.0",
  3121. "files": [
  3122. ".nupkg.metadata",
  3123. ".signature.p7s",
  3124. "Icon.png",
  3125. "LICENSE.TXT",
  3126. "THIRD-PARTY-NOTICES.TXT",
  3127. "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
  3128. "buildTransitive/netcoreapp3.1/_._",
  3129. "lib/net461/System.Composition.AttributedModel.dll",
  3130. "lib/net461/System.Composition.AttributedModel.xml",
  3131. "lib/net6.0/System.Composition.AttributedModel.dll",
  3132. "lib/net6.0/System.Composition.AttributedModel.xml",
  3133. "lib/netstandard2.0/System.Composition.AttributedModel.dll",
  3134. "lib/netstandard2.0/System.Composition.AttributedModel.xml",
  3135. "system.composition.attributedmodel.6.0.0.nupkg.sha512",
  3136. "system.composition.attributedmodel.nuspec",
  3137. "useSharedDesignerContext.txt"
  3138. ]
  3139. },
  3140. "System.Composition.Convention/6.0.0": {
  3141. "sha512": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
  3142. "type": "package",
  3143. "path": "system.composition.convention/6.0.0",
  3144. "files": [
  3145. ".nupkg.metadata",
  3146. ".signature.p7s",
  3147. "Icon.png",
  3148. "LICENSE.TXT",
  3149. "THIRD-PARTY-NOTICES.TXT",
  3150. "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
  3151. "buildTransitive/netcoreapp3.1/_._",
  3152. "lib/net461/System.Composition.Convention.dll",
  3153. "lib/net461/System.Composition.Convention.xml",
  3154. "lib/net6.0/System.Composition.Convention.dll",
  3155. "lib/net6.0/System.Composition.Convention.xml",
  3156. "lib/netstandard2.0/System.Composition.Convention.dll",
  3157. "lib/netstandard2.0/System.Composition.Convention.xml",
  3158. "system.composition.convention.6.0.0.nupkg.sha512",
  3159. "system.composition.convention.nuspec",
  3160. "useSharedDesignerContext.txt"
  3161. ]
  3162. },
  3163. "System.Composition.Hosting/6.0.0": {
  3164. "sha512": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
  3165. "type": "package",
  3166. "path": "system.composition.hosting/6.0.0",
  3167. "files": [
  3168. ".nupkg.metadata",
  3169. ".signature.p7s",
  3170. "Icon.png",
  3171. "LICENSE.TXT",
  3172. "THIRD-PARTY-NOTICES.TXT",
  3173. "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
  3174. "buildTransitive/netcoreapp3.1/_._",
  3175. "lib/net461/System.Composition.Hosting.dll",
  3176. "lib/net461/System.Composition.Hosting.xml",
  3177. "lib/net6.0/System.Composition.Hosting.dll",
  3178. "lib/net6.0/System.Composition.Hosting.xml",
  3179. "lib/netstandard2.0/System.Composition.Hosting.dll",
  3180. "lib/netstandard2.0/System.Composition.Hosting.xml",
  3181. "system.composition.hosting.6.0.0.nupkg.sha512",
  3182. "system.composition.hosting.nuspec",
  3183. "useSharedDesignerContext.txt"
  3184. ]
  3185. },
  3186. "System.Composition.Runtime/6.0.0": {
  3187. "sha512": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
  3188. "type": "package",
  3189. "path": "system.composition.runtime/6.0.0",
  3190. "files": [
  3191. ".nupkg.metadata",
  3192. ".signature.p7s",
  3193. "Icon.png",
  3194. "LICENSE.TXT",
  3195. "THIRD-PARTY-NOTICES.TXT",
  3196. "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
  3197. "buildTransitive/netcoreapp3.1/_._",
  3198. "lib/net461/System.Composition.Runtime.dll",
  3199. "lib/net461/System.Composition.Runtime.xml",
  3200. "lib/net6.0/System.Composition.Runtime.dll",
  3201. "lib/net6.0/System.Composition.Runtime.xml",
  3202. "lib/netstandard2.0/System.Composition.Runtime.dll",
  3203. "lib/netstandard2.0/System.Composition.Runtime.xml",
  3204. "system.composition.runtime.6.0.0.nupkg.sha512",
  3205. "system.composition.runtime.nuspec",
  3206. "useSharedDesignerContext.txt"
  3207. ]
  3208. },
  3209. "System.Composition.TypedParts/6.0.0": {
  3210. "sha512": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
  3211. "type": "package",
  3212. "path": "system.composition.typedparts/6.0.0",
  3213. "files": [
  3214. ".nupkg.metadata",
  3215. ".signature.p7s",
  3216. "Icon.png",
  3217. "LICENSE.TXT",
  3218. "THIRD-PARTY-NOTICES.TXT",
  3219. "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
  3220. "buildTransitive/netcoreapp3.1/_._",
  3221. "lib/net461/System.Composition.TypedParts.dll",
  3222. "lib/net461/System.Composition.TypedParts.xml",
  3223. "lib/net6.0/System.Composition.TypedParts.dll",
  3224. "lib/net6.0/System.Composition.TypedParts.xml",
  3225. "lib/netstandard2.0/System.Composition.TypedParts.dll",
  3226. "lib/netstandard2.0/System.Composition.TypedParts.xml",
  3227. "system.composition.typedparts.6.0.0.nupkg.sha512",
  3228. "system.composition.typedparts.nuspec",
  3229. "useSharedDesignerContext.txt"
  3230. ]
  3231. },
  3232. "System.Configuration.ConfigurationManager/6.0.1": {
  3233. "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  3234. "type": "package",
  3235. "path": "system.configuration.configurationmanager/6.0.1",
  3236. "files": [
  3237. ".nupkg.metadata",
  3238. ".signature.p7s",
  3239. "Icon.png",
  3240. "LICENSE.TXT",
  3241. "THIRD-PARTY-NOTICES.TXT",
  3242. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  3243. "buildTransitive/netcoreapp3.1/_._",
  3244. "lib/net461/System.Configuration.ConfigurationManager.dll",
  3245. "lib/net461/System.Configuration.ConfigurationManager.xml",
  3246. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  3247. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  3248. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  3249. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  3250. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  3251. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  3252. "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
  3253. "system.configuration.configurationmanager.nuspec",
  3254. "useSharedDesignerContext.txt"
  3255. ]
  3256. },
  3257. "System.Diagnostics.DiagnosticSource/6.0.0": {
  3258. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  3259. "type": "package",
  3260. "path": "system.diagnostics.diagnosticsource/6.0.0",
  3261. "files": [
  3262. ".nupkg.metadata",
  3263. ".signature.p7s",
  3264. "Icon.png",
  3265. "LICENSE.TXT",
  3266. "THIRD-PARTY-NOTICES.TXT",
  3267. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  3268. "buildTransitive/netcoreapp3.1/_._",
  3269. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  3270. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  3271. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  3272. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  3273. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  3274. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  3275. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  3276. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  3277. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  3278. "system.diagnostics.diagnosticsource.nuspec",
  3279. "useSharedDesignerContext.txt"
  3280. ]
  3281. },
  3282. "System.Drawing.Common/6.0.0": {
  3283. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  3284. "type": "package",
  3285. "path": "system.drawing.common/6.0.0",
  3286. "files": [
  3287. ".nupkg.metadata",
  3288. ".signature.p7s",
  3289. "Icon.png",
  3290. "LICENSE.TXT",
  3291. "THIRD-PARTY-NOTICES.TXT",
  3292. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  3293. "buildTransitive/netcoreapp3.1/_._",
  3294. "lib/MonoAndroid10/_._",
  3295. "lib/MonoTouch10/_._",
  3296. "lib/net461/System.Drawing.Common.dll",
  3297. "lib/net461/System.Drawing.Common.xml",
  3298. "lib/net6.0/System.Drawing.Common.dll",
  3299. "lib/net6.0/System.Drawing.Common.xml",
  3300. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  3301. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  3302. "lib/netstandard2.0/System.Drawing.Common.dll",
  3303. "lib/netstandard2.0/System.Drawing.Common.xml",
  3304. "lib/xamarinios10/_._",
  3305. "lib/xamarinmac20/_._",
  3306. "lib/xamarintvos10/_._",
  3307. "lib/xamarinwatchos10/_._",
  3308. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  3309. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  3310. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  3311. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  3312. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  3313. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  3314. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  3315. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  3316. "system.drawing.common.6.0.0.nupkg.sha512",
  3317. "system.drawing.common.nuspec",
  3318. "useSharedDesignerContext.txt"
  3319. ]
  3320. },
  3321. "System.Formats.Asn1/5.0.0": {
  3322. "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  3323. "type": "package",
  3324. "path": "system.formats.asn1/5.0.0",
  3325. "files": [
  3326. ".nupkg.metadata",
  3327. ".signature.p7s",
  3328. "Icon.png",
  3329. "LICENSE.TXT",
  3330. "THIRD-PARTY-NOTICES.TXT",
  3331. "lib/net461/System.Formats.Asn1.dll",
  3332. "lib/net461/System.Formats.Asn1.xml",
  3333. "lib/netstandard2.0/System.Formats.Asn1.dll",
  3334. "lib/netstandard2.0/System.Formats.Asn1.xml",
  3335. "system.formats.asn1.5.0.0.nupkg.sha512",
  3336. "system.formats.asn1.nuspec",
  3337. "useSharedDesignerContext.txt",
  3338. "version.txt"
  3339. ]
  3340. },
  3341. "System.IdentityModel.Tokens.Jwt/6.24.0": {
  3342. "sha512": "Qibsj9MPWq8S/C0FgvmsLfIlHLE7ay0MJIaAmK94ivN3VyDdglqReed5qMvdQhSL0BzK6v0Z1wB/sD88zVu6Jw==",
  3343. "type": "package",
  3344. "path": "system.identitymodel.tokens.jwt/6.24.0",
  3345. "files": [
  3346. ".nupkg.metadata",
  3347. ".signature.p7s",
  3348. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  3349. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  3350. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  3351. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  3352. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  3353. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  3354. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  3355. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  3356. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  3357. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  3358. "system.identitymodel.tokens.jwt.6.24.0.nupkg.sha512",
  3359. "system.identitymodel.tokens.jwt.nuspec"
  3360. ]
  3361. },
  3362. "System.IO.Pipelines/6.0.3": {
  3363. "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
  3364. "type": "package",
  3365. "path": "system.io.pipelines/6.0.3",
  3366. "files": [
  3367. ".nupkg.metadata",
  3368. ".signature.p7s",
  3369. "Icon.png",
  3370. "LICENSE.TXT",
  3371. "THIRD-PARTY-NOTICES.TXT",
  3372. "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
  3373. "buildTransitive/netcoreapp3.1/_._",
  3374. "lib/net461/System.IO.Pipelines.dll",
  3375. "lib/net461/System.IO.Pipelines.xml",
  3376. "lib/net6.0/System.IO.Pipelines.dll",
  3377. "lib/net6.0/System.IO.Pipelines.xml",
  3378. "lib/netcoreapp3.1/System.IO.Pipelines.dll",
  3379. "lib/netcoreapp3.1/System.IO.Pipelines.xml",
  3380. "lib/netstandard2.0/System.IO.Pipelines.dll",
  3381. "lib/netstandard2.0/System.IO.Pipelines.xml",
  3382. "system.io.pipelines.6.0.3.nupkg.sha512",
  3383. "system.io.pipelines.nuspec",
  3384. "useSharedDesignerContext.txt"
  3385. ]
  3386. },
  3387. "System.Memory/4.5.4": {
  3388. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  3389. "type": "package",
  3390. "path": "system.memory/4.5.4",
  3391. "files": [
  3392. ".nupkg.metadata",
  3393. ".signature.p7s",
  3394. "LICENSE.TXT",
  3395. "THIRD-PARTY-NOTICES.TXT",
  3396. "lib/net461/System.Memory.dll",
  3397. "lib/net461/System.Memory.xml",
  3398. "lib/netcoreapp2.1/_._",
  3399. "lib/netstandard1.1/System.Memory.dll",
  3400. "lib/netstandard1.1/System.Memory.xml",
  3401. "lib/netstandard2.0/System.Memory.dll",
  3402. "lib/netstandard2.0/System.Memory.xml",
  3403. "ref/netcoreapp2.1/_._",
  3404. "system.memory.4.5.4.nupkg.sha512",
  3405. "system.memory.nuspec",
  3406. "useSharedDesignerContext.txt",
  3407. "version.txt"
  3408. ]
  3409. },
  3410. "System.Memory.Data/1.0.2": {
  3411. "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
  3412. "type": "package",
  3413. "path": "system.memory.data/1.0.2",
  3414. "files": [
  3415. ".nupkg.metadata",
  3416. ".signature.p7s",
  3417. "CHANGELOG.md",
  3418. "DotNetPackageIcon.png",
  3419. "README.md",
  3420. "lib/net461/System.Memory.Data.dll",
  3421. "lib/net461/System.Memory.Data.xml",
  3422. "lib/netstandard2.0/System.Memory.Data.dll",
  3423. "lib/netstandard2.0/System.Memory.Data.xml",
  3424. "system.memory.data.1.0.2.nupkg.sha512",
  3425. "system.memory.data.nuspec"
  3426. ]
  3427. },
  3428. "System.Numerics.Vectors/4.5.0": {
  3429. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  3430. "type": "package",
  3431. "path": "system.numerics.vectors/4.5.0",
  3432. "files": [
  3433. ".nupkg.metadata",
  3434. ".signature.p7s",
  3435. "LICENSE.TXT",
  3436. "THIRD-PARTY-NOTICES.TXT",
  3437. "lib/MonoAndroid10/_._",
  3438. "lib/MonoTouch10/_._",
  3439. "lib/net46/System.Numerics.Vectors.dll",
  3440. "lib/net46/System.Numerics.Vectors.xml",
  3441. "lib/netcoreapp2.0/_._",
  3442. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  3443. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  3444. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  3445. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  3446. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  3447. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  3448. "lib/uap10.0.16299/_._",
  3449. "lib/xamarinios10/_._",
  3450. "lib/xamarinmac20/_._",
  3451. "lib/xamarintvos10/_._",
  3452. "lib/xamarinwatchos10/_._",
  3453. "ref/MonoAndroid10/_._",
  3454. "ref/MonoTouch10/_._",
  3455. "ref/net45/System.Numerics.Vectors.dll",
  3456. "ref/net45/System.Numerics.Vectors.xml",
  3457. "ref/net46/System.Numerics.Vectors.dll",
  3458. "ref/net46/System.Numerics.Vectors.xml",
  3459. "ref/netcoreapp2.0/_._",
  3460. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  3461. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  3462. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  3463. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  3464. "ref/uap10.0.16299/_._",
  3465. "ref/xamarinios10/_._",
  3466. "ref/xamarinmac20/_._",
  3467. "ref/xamarintvos10/_._",
  3468. "ref/xamarinwatchos10/_._",
  3469. "system.numerics.vectors.4.5.0.nupkg.sha512",
  3470. "system.numerics.vectors.nuspec",
  3471. "useSharedDesignerContext.txt",
  3472. "version.txt"
  3473. ]
  3474. },
  3475. "System.Reflection.Metadata/6.0.1": {
  3476. "sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
  3477. "type": "package",
  3478. "path": "system.reflection.metadata/6.0.1",
  3479. "files": [
  3480. ".nupkg.metadata",
  3481. ".signature.p7s",
  3482. "Icon.png",
  3483. "LICENSE.TXT",
  3484. "THIRD-PARTY-NOTICES.TXT",
  3485. "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
  3486. "buildTransitive/netcoreapp3.1/_._",
  3487. "lib/net461/System.Reflection.Metadata.dll",
  3488. "lib/net461/System.Reflection.Metadata.xml",
  3489. "lib/net6.0/System.Reflection.Metadata.dll",
  3490. "lib/net6.0/System.Reflection.Metadata.xml",
  3491. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  3492. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  3493. "system.reflection.metadata.6.0.1.nupkg.sha512",
  3494. "system.reflection.metadata.nuspec",
  3495. "useSharedDesignerContext.txt"
  3496. ]
  3497. },
  3498. "System.Runtime/4.3.0": {
  3499. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  3500. "type": "package",
  3501. "path": "system.runtime/4.3.0",
  3502. "files": [
  3503. ".nupkg.metadata",
  3504. ".signature.p7s",
  3505. "ThirdPartyNotices.txt",
  3506. "dotnet_library_license.txt",
  3507. "lib/MonoAndroid10/_._",
  3508. "lib/MonoTouch10/_._",
  3509. "lib/net45/_._",
  3510. "lib/net462/System.Runtime.dll",
  3511. "lib/portable-net45+win8+wp80+wpa81/_._",
  3512. "lib/win8/_._",
  3513. "lib/wp80/_._",
  3514. "lib/wpa81/_._",
  3515. "lib/xamarinios10/_._",
  3516. "lib/xamarinmac20/_._",
  3517. "lib/xamarintvos10/_._",
  3518. "lib/xamarinwatchos10/_._",
  3519. "ref/MonoAndroid10/_._",
  3520. "ref/MonoTouch10/_._",
  3521. "ref/net45/_._",
  3522. "ref/net462/System.Runtime.dll",
  3523. "ref/netcore50/System.Runtime.dll",
  3524. "ref/netcore50/System.Runtime.xml",
  3525. "ref/netcore50/de/System.Runtime.xml",
  3526. "ref/netcore50/es/System.Runtime.xml",
  3527. "ref/netcore50/fr/System.Runtime.xml",
  3528. "ref/netcore50/it/System.Runtime.xml",
  3529. "ref/netcore50/ja/System.Runtime.xml",
  3530. "ref/netcore50/ko/System.Runtime.xml",
  3531. "ref/netcore50/ru/System.Runtime.xml",
  3532. "ref/netcore50/zh-hans/System.Runtime.xml",
  3533. "ref/netcore50/zh-hant/System.Runtime.xml",
  3534. "ref/netstandard1.0/System.Runtime.dll",
  3535. "ref/netstandard1.0/System.Runtime.xml",
  3536. "ref/netstandard1.0/de/System.Runtime.xml",
  3537. "ref/netstandard1.0/es/System.Runtime.xml",
  3538. "ref/netstandard1.0/fr/System.Runtime.xml",
  3539. "ref/netstandard1.0/it/System.Runtime.xml",
  3540. "ref/netstandard1.0/ja/System.Runtime.xml",
  3541. "ref/netstandard1.0/ko/System.Runtime.xml",
  3542. "ref/netstandard1.0/ru/System.Runtime.xml",
  3543. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  3544. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  3545. "ref/netstandard1.2/System.Runtime.dll",
  3546. "ref/netstandard1.2/System.Runtime.xml",
  3547. "ref/netstandard1.2/de/System.Runtime.xml",
  3548. "ref/netstandard1.2/es/System.Runtime.xml",
  3549. "ref/netstandard1.2/fr/System.Runtime.xml",
  3550. "ref/netstandard1.2/it/System.Runtime.xml",
  3551. "ref/netstandard1.2/ja/System.Runtime.xml",
  3552. "ref/netstandard1.2/ko/System.Runtime.xml",
  3553. "ref/netstandard1.2/ru/System.Runtime.xml",
  3554. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  3555. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  3556. "ref/netstandard1.3/System.Runtime.dll",
  3557. "ref/netstandard1.3/System.Runtime.xml",
  3558. "ref/netstandard1.3/de/System.Runtime.xml",
  3559. "ref/netstandard1.3/es/System.Runtime.xml",
  3560. "ref/netstandard1.3/fr/System.Runtime.xml",
  3561. "ref/netstandard1.3/it/System.Runtime.xml",
  3562. "ref/netstandard1.3/ja/System.Runtime.xml",
  3563. "ref/netstandard1.3/ko/System.Runtime.xml",
  3564. "ref/netstandard1.3/ru/System.Runtime.xml",
  3565. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  3566. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  3567. "ref/netstandard1.5/System.Runtime.dll",
  3568. "ref/netstandard1.5/System.Runtime.xml",
  3569. "ref/netstandard1.5/de/System.Runtime.xml",
  3570. "ref/netstandard1.5/es/System.Runtime.xml",
  3571. "ref/netstandard1.5/fr/System.Runtime.xml",
  3572. "ref/netstandard1.5/it/System.Runtime.xml",
  3573. "ref/netstandard1.5/ja/System.Runtime.xml",
  3574. "ref/netstandard1.5/ko/System.Runtime.xml",
  3575. "ref/netstandard1.5/ru/System.Runtime.xml",
  3576. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  3577. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  3578. "ref/portable-net45+win8+wp80+wpa81/_._",
  3579. "ref/win8/_._",
  3580. "ref/wp80/_._",
  3581. "ref/wpa81/_._",
  3582. "ref/xamarinios10/_._",
  3583. "ref/xamarinmac20/_._",
  3584. "ref/xamarintvos10/_._",
  3585. "ref/xamarinwatchos10/_._",
  3586. "system.runtime.4.3.0.nupkg.sha512",
  3587. "system.runtime.nuspec"
  3588. ]
  3589. },
  3590. "System.Runtime.Caching/6.0.0": {
  3591. "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
  3592. "type": "package",
  3593. "path": "system.runtime.caching/6.0.0",
  3594. "files": [
  3595. ".nupkg.metadata",
  3596. ".signature.p7s",
  3597. "Icon.png",
  3598. "LICENSE.TXT",
  3599. "THIRD-PARTY-NOTICES.TXT",
  3600. "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets",
  3601. "buildTransitive/netcoreapp3.1/_._",
  3602. "lib/MonoAndroid10/_._",
  3603. "lib/MonoTouch10/_._",
  3604. "lib/net461/_._",
  3605. "lib/net6.0/System.Runtime.Caching.dll",
  3606. "lib/net6.0/System.Runtime.Caching.xml",
  3607. "lib/netcoreapp3.1/System.Runtime.Caching.dll",
  3608. "lib/netcoreapp3.1/System.Runtime.Caching.xml",
  3609. "lib/netstandard2.0/System.Runtime.Caching.dll",
  3610. "lib/netstandard2.0/System.Runtime.Caching.xml",
  3611. "lib/xamarinios10/_._",
  3612. "lib/xamarinmac20/_._",
  3613. "lib/xamarintvos10/_._",
  3614. "lib/xamarinwatchos10/_._",
  3615. "runtimes/win/lib/net461/_._",
  3616. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll",
  3617. "runtimes/win/lib/net6.0/System.Runtime.Caching.xml",
  3618. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll",
  3619. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml",
  3620. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  3621. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  3622. "system.runtime.caching.6.0.0.nupkg.sha512",
  3623. "system.runtime.caching.nuspec",
  3624. "useSharedDesignerContext.txt"
  3625. ]
  3626. },
  3627. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  3628. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  3629. "type": "package",
  3630. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  3631. "files": [
  3632. ".nupkg.metadata",
  3633. ".signature.p7s",
  3634. "Icon.png",
  3635. "LICENSE.TXT",
  3636. "THIRD-PARTY-NOTICES.TXT",
  3637. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  3638. "buildTransitive/netcoreapp3.1/_._",
  3639. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3640. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  3641. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  3642. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  3643. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  3644. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  3645. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  3646. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  3647. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  3648. "system.runtime.compilerservices.unsafe.nuspec",
  3649. "useSharedDesignerContext.txt"
  3650. ]
  3651. },
  3652. "System.Security.AccessControl/6.0.0": {
  3653. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  3654. "type": "package",
  3655. "path": "system.security.accesscontrol/6.0.0",
  3656. "files": [
  3657. ".nupkg.metadata",
  3658. ".signature.p7s",
  3659. "Icon.png",
  3660. "LICENSE.TXT",
  3661. "THIRD-PARTY-NOTICES.TXT",
  3662. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  3663. "buildTransitive/netcoreapp3.1/_._",
  3664. "lib/net461/System.Security.AccessControl.dll",
  3665. "lib/net461/System.Security.AccessControl.xml",
  3666. "lib/net6.0/System.Security.AccessControl.dll",
  3667. "lib/net6.0/System.Security.AccessControl.xml",
  3668. "lib/netstandard2.0/System.Security.AccessControl.dll",
  3669. "lib/netstandard2.0/System.Security.AccessControl.xml",
  3670. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  3671. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  3672. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  3673. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  3674. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  3675. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  3676. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  3677. "system.security.accesscontrol.nuspec",
  3678. "useSharedDesignerContext.txt"
  3679. ]
  3680. },
  3681. "System.Security.Cryptography.Cng/5.0.0": {
  3682. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  3683. "type": "package",
  3684. "path": "system.security.cryptography.cng/5.0.0",
  3685. "files": [
  3686. ".nupkg.metadata",
  3687. ".signature.p7s",
  3688. "Icon.png",
  3689. "LICENSE.TXT",
  3690. "THIRD-PARTY-NOTICES.TXT",
  3691. "lib/MonoAndroid10/_._",
  3692. "lib/MonoTouch10/_._",
  3693. "lib/net46/System.Security.Cryptography.Cng.dll",
  3694. "lib/net461/System.Security.Cryptography.Cng.dll",
  3695. "lib/net461/System.Security.Cryptography.Cng.xml",
  3696. "lib/net462/System.Security.Cryptography.Cng.dll",
  3697. "lib/net462/System.Security.Cryptography.Cng.xml",
  3698. "lib/net47/System.Security.Cryptography.Cng.dll",
  3699. "lib/net47/System.Security.Cryptography.Cng.xml",
  3700. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  3701. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  3702. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  3703. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  3704. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  3705. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  3706. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  3707. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  3708. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  3709. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  3710. "lib/uap10.0.16299/_._",
  3711. "lib/xamarinios10/_._",
  3712. "lib/xamarinmac20/_._",
  3713. "lib/xamarintvos10/_._",
  3714. "lib/xamarinwatchos10/_._",
  3715. "ref/MonoAndroid10/_._",
  3716. "ref/MonoTouch10/_._",
  3717. "ref/net46/System.Security.Cryptography.Cng.dll",
  3718. "ref/net461/System.Security.Cryptography.Cng.dll",
  3719. "ref/net461/System.Security.Cryptography.Cng.xml",
  3720. "ref/net462/System.Security.Cryptography.Cng.dll",
  3721. "ref/net462/System.Security.Cryptography.Cng.xml",
  3722. "ref/net47/System.Security.Cryptography.Cng.dll",
  3723. "ref/net47/System.Security.Cryptography.Cng.xml",
  3724. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  3725. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  3726. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  3727. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  3728. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  3729. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  3730. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  3731. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  3732. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  3733. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  3734. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  3735. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  3736. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  3737. "ref/uap10.0.16299/_._",
  3738. "ref/xamarinios10/_._",
  3739. "ref/xamarinmac20/_._",
  3740. "ref/xamarintvos10/_._",
  3741. "ref/xamarinwatchos10/_._",
  3742. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  3743. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  3744. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  3745. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  3746. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  3747. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  3748. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  3749. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  3750. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  3751. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  3752. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  3753. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  3754. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  3755. "runtimes/win/lib/uap10.0.16299/_._",
  3756. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  3757. "system.security.cryptography.cng.nuspec",
  3758. "useSharedDesignerContext.txt",
  3759. "version.txt"
  3760. ]
  3761. },
  3762. "System.Security.Cryptography.ProtectedData/6.0.0": {
  3763. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  3764. "type": "package",
  3765. "path": "system.security.cryptography.protecteddata/6.0.0",
  3766. "files": [
  3767. ".nupkg.metadata",
  3768. ".signature.p7s",
  3769. "Icon.png",
  3770. "LICENSE.TXT",
  3771. "THIRD-PARTY-NOTICES.TXT",
  3772. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  3773. "buildTransitive/netcoreapp3.1/_._",
  3774. "lib/MonoAndroid10/_._",
  3775. "lib/MonoTouch10/_._",
  3776. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  3777. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  3778. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  3779. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  3780. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  3781. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  3782. "lib/xamarinios10/_._",
  3783. "lib/xamarinmac20/_._",
  3784. "lib/xamarintvos10/_._",
  3785. "lib/xamarinwatchos10/_._",
  3786. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  3787. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  3788. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  3789. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  3790. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  3791. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  3792. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  3793. "system.security.cryptography.protecteddata.nuspec",
  3794. "useSharedDesignerContext.txt"
  3795. ]
  3796. },
  3797. "System.Security.Permissions/6.0.0": {
  3798. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  3799. "type": "package",
  3800. "path": "system.security.permissions/6.0.0",
  3801. "files": [
  3802. ".nupkg.metadata",
  3803. ".signature.p7s",
  3804. "Icon.png",
  3805. "LICENSE.TXT",
  3806. "THIRD-PARTY-NOTICES.TXT",
  3807. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  3808. "buildTransitive/netcoreapp3.1/_._",
  3809. "lib/net461/System.Security.Permissions.dll",
  3810. "lib/net461/System.Security.Permissions.xml",
  3811. "lib/net5.0/System.Security.Permissions.dll",
  3812. "lib/net5.0/System.Security.Permissions.xml",
  3813. "lib/net6.0/System.Security.Permissions.dll",
  3814. "lib/net6.0/System.Security.Permissions.xml",
  3815. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  3816. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  3817. "lib/netstandard2.0/System.Security.Permissions.dll",
  3818. "lib/netstandard2.0/System.Security.Permissions.xml",
  3819. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  3820. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  3821. "system.security.permissions.6.0.0.nupkg.sha512",
  3822. "system.security.permissions.nuspec",
  3823. "useSharedDesignerContext.txt"
  3824. ]
  3825. },
  3826. "System.Security.Principal.Windows/5.0.0": {
  3827. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  3828. "type": "package",
  3829. "path": "system.security.principal.windows/5.0.0",
  3830. "files": [
  3831. ".nupkg.metadata",
  3832. ".signature.p7s",
  3833. "Icon.png",
  3834. "LICENSE.TXT",
  3835. "THIRD-PARTY-NOTICES.TXT",
  3836. "lib/net46/System.Security.Principal.Windows.dll",
  3837. "lib/net461/System.Security.Principal.Windows.dll",
  3838. "lib/net461/System.Security.Principal.Windows.xml",
  3839. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  3840. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  3841. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  3842. "lib/uap10.0.16299/_._",
  3843. "ref/net46/System.Security.Principal.Windows.dll",
  3844. "ref/net461/System.Security.Principal.Windows.dll",
  3845. "ref/net461/System.Security.Principal.Windows.xml",
  3846. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  3847. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  3848. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  3849. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  3850. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  3851. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  3852. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  3853. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  3854. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  3855. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  3856. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  3857. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  3858. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  3859. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  3860. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  3861. "ref/uap10.0.16299/_._",
  3862. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  3863. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  3864. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  3865. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  3866. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  3867. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  3868. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  3869. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  3870. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  3871. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  3872. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  3873. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  3874. "runtimes/win/lib/uap10.0.16299/_._",
  3875. "system.security.principal.windows.5.0.0.nupkg.sha512",
  3876. "system.security.principal.windows.nuspec",
  3877. "useSharedDesignerContext.txt",
  3878. "version.txt"
  3879. ]
  3880. },
  3881. "System.Text.Encoding/4.3.0": {
  3882. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  3883. "type": "package",
  3884. "path": "system.text.encoding/4.3.0",
  3885. "files": [
  3886. ".nupkg.metadata",
  3887. ".signature.p7s",
  3888. "ThirdPartyNotices.txt",
  3889. "dotnet_library_license.txt",
  3890. "lib/MonoAndroid10/_._",
  3891. "lib/MonoTouch10/_._",
  3892. "lib/net45/_._",
  3893. "lib/portable-net45+win8+wp8+wpa81/_._",
  3894. "lib/win8/_._",
  3895. "lib/wp80/_._",
  3896. "lib/wpa81/_._",
  3897. "lib/xamarinios10/_._",
  3898. "lib/xamarinmac20/_._",
  3899. "lib/xamarintvos10/_._",
  3900. "lib/xamarinwatchos10/_._",
  3901. "ref/MonoAndroid10/_._",
  3902. "ref/MonoTouch10/_._",
  3903. "ref/net45/_._",
  3904. "ref/netcore50/System.Text.Encoding.dll",
  3905. "ref/netcore50/System.Text.Encoding.xml",
  3906. "ref/netcore50/de/System.Text.Encoding.xml",
  3907. "ref/netcore50/es/System.Text.Encoding.xml",
  3908. "ref/netcore50/fr/System.Text.Encoding.xml",
  3909. "ref/netcore50/it/System.Text.Encoding.xml",
  3910. "ref/netcore50/ja/System.Text.Encoding.xml",
  3911. "ref/netcore50/ko/System.Text.Encoding.xml",
  3912. "ref/netcore50/ru/System.Text.Encoding.xml",
  3913. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  3914. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  3915. "ref/netstandard1.0/System.Text.Encoding.dll",
  3916. "ref/netstandard1.0/System.Text.Encoding.xml",
  3917. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  3918. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  3919. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  3920. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  3921. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  3922. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  3923. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  3924. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  3925. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  3926. "ref/netstandard1.3/System.Text.Encoding.dll",
  3927. "ref/netstandard1.3/System.Text.Encoding.xml",
  3928. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  3929. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  3930. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  3931. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  3932. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  3933. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  3934. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  3935. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  3936. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  3937. "ref/portable-net45+win8+wp8+wpa81/_._",
  3938. "ref/win8/_._",
  3939. "ref/wp80/_._",
  3940. "ref/wpa81/_._",
  3941. "ref/xamarinios10/_._",
  3942. "ref/xamarinmac20/_._",
  3943. "ref/xamarintvos10/_._",
  3944. "ref/xamarinwatchos10/_._",
  3945. "system.text.encoding.4.3.0.nupkg.sha512",
  3946. "system.text.encoding.nuspec"
  3947. ]
  3948. },
  3949. "System.Text.Encoding.CodePages/6.0.0": {
  3950. "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
  3951. "type": "package",
  3952. "path": "system.text.encoding.codepages/6.0.0",
  3953. "files": [
  3954. ".nupkg.metadata",
  3955. ".signature.p7s",
  3956. "Icon.png",
  3957. "LICENSE.TXT",
  3958. "THIRD-PARTY-NOTICES.TXT",
  3959. "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
  3960. "buildTransitive/netcoreapp3.1/_._",
  3961. "lib/MonoAndroid10/_._",
  3962. "lib/MonoTouch10/_._",
  3963. "lib/net461/System.Text.Encoding.CodePages.dll",
  3964. "lib/net461/System.Text.Encoding.CodePages.xml",
  3965. "lib/net6.0/System.Text.Encoding.CodePages.dll",
  3966. "lib/net6.0/System.Text.Encoding.CodePages.xml",
  3967. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  3968. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  3969. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  3970. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  3971. "lib/xamarinios10/_._",
  3972. "lib/xamarinmac20/_._",
  3973. "lib/xamarintvos10/_._",
  3974. "lib/xamarinwatchos10/_._",
  3975. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  3976. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  3977. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
  3978. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
  3979. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  3980. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  3981. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  3982. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  3983. "system.text.encoding.codepages.6.0.0.nupkg.sha512",
  3984. "system.text.encoding.codepages.nuspec",
  3985. "useSharedDesignerContext.txt"
  3986. ]
  3987. },
  3988. "System.Text.Encodings.Web/8.0.0": {
  3989. "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  3990. "type": "package",
  3991. "path": "system.text.encodings.web/8.0.0",
  3992. "files": [
  3993. ".nupkg.metadata",
  3994. ".signature.p7s",
  3995. "Icon.png",
  3996. "LICENSE.TXT",
  3997. "THIRD-PARTY-NOTICES.TXT",
  3998. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  3999. "buildTransitive/net462/_._",
  4000. "buildTransitive/net6.0/_._",
  4001. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  4002. "lib/net462/System.Text.Encodings.Web.dll",
  4003. "lib/net462/System.Text.Encodings.Web.xml",
  4004. "lib/net6.0/System.Text.Encodings.Web.dll",
  4005. "lib/net6.0/System.Text.Encodings.Web.xml",
  4006. "lib/net7.0/System.Text.Encodings.Web.dll",
  4007. "lib/net7.0/System.Text.Encodings.Web.xml",
  4008. "lib/net8.0/System.Text.Encodings.Web.dll",
  4009. "lib/net8.0/System.Text.Encodings.Web.xml",
  4010. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  4011. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  4012. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  4013. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  4014. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  4015. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  4016. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  4017. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  4018. "system.text.encodings.web.8.0.0.nupkg.sha512",
  4019. "system.text.encodings.web.nuspec",
  4020. "useSharedDesignerContext.txt"
  4021. ]
  4022. },
  4023. "System.Text.Json/8.0.0": {
  4024. "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
  4025. "type": "package",
  4026. "path": "system.text.json/8.0.0",
  4027. "files": [
  4028. ".nupkg.metadata",
  4029. ".signature.p7s",
  4030. "Icon.png",
  4031. "LICENSE.TXT",
  4032. "PACKAGE.md",
  4033. "THIRD-PARTY-NOTICES.TXT",
  4034. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  4035. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  4036. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  4037. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  4038. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  4039. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  4040. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  4041. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  4042. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  4043. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  4044. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  4045. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  4046. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  4047. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  4048. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  4049. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  4050. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  4051. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  4052. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  4053. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  4054. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  4055. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  4056. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  4057. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  4058. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  4059. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  4060. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  4061. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  4062. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  4063. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  4064. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  4065. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  4066. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  4067. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  4068. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  4069. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  4070. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  4071. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  4072. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  4073. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  4074. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  4075. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  4076. "buildTransitive/net461/System.Text.Json.targets",
  4077. "buildTransitive/net462/System.Text.Json.targets",
  4078. "buildTransitive/net6.0/System.Text.Json.targets",
  4079. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  4080. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  4081. "lib/net462/System.Text.Json.dll",
  4082. "lib/net462/System.Text.Json.xml",
  4083. "lib/net6.0/System.Text.Json.dll",
  4084. "lib/net6.0/System.Text.Json.xml",
  4085. "lib/net7.0/System.Text.Json.dll",
  4086. "lib/net7.0/System.Text.Json.xml",
  4087. "lib/net8.0/System.Text.Json.dll",
  4088. "lib/net8.0/System.Text.Json.xml",
  4089. "lib/netstandard2.0/System.Text.Json.dll",
  4090. "lib/netstandard2.0/System.Text.Json.xml",
  4091. "system.text.json.8.0.0.nupkg.sha512",
  4092. "system.text.json.nuspec",
  4093. "useSharedDesignerContext.txt"
  4094. ]
  4095. },
  4096. "System.Threading.Channels/6.0.0": {
  4097. "sha512": "TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==",
  4098. "type": "package",
  4099. "path": "system.threading.channels/6.0.0",
  4100. "files": [
  4101. ".nupkg.metadata",
  4102. ".signature.p7s",
  4103. "Icon.png",
  4104. "LICENSE.TXT",
  4105. "THIRD-PARTY-NOTICES.TXT",
  4106. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  4107. "buildTransitive/netcoreapp3.1/_._",
  4108. "lib/net461/System.Threading.Channels.dll",
  4109. "lib/net461/System.Threading.Channels.xml",
  4110. "lib/net6.0/System.Threading.Channels.dll",
  4111. "lib/net6.0/System.Threading.Channels.xml",
  4112. "lib/netcoreapp3.1/System.Threading.Channels.dll",
  4113. "lib/netcoreapp3.1/System.Threading.Channels.xml",
  4114. "lib/netstandard2.0/System.Threading.Channels.dll",
  4115. "lib/netstandard2.0/System.Threading.Channels.xml",
  4116. "lib/netstandard2.1/System.Threading.Channels.dll",
  4117. "lib/netstandard2.1/System.Threading.Channels.xml",
  4118. "system.threading.channels.6.0.0.nupkg.sha512",
  4119. "system.threading.channels.nuspec",
  4120. "useSharedDesignerContext.txt"
  4121. ]
  4122. },
  4123. "System.Threading.Tasks.Extensions/4.5.4": {
  4124. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  4125. "type": "package",
  4126. "path": "system.threading.tasks.extensions/4.5.4",
  4127. "files": [
  4128. ".nupkg.metadata",
  4129. ".signature.p7s",
  4130. "LICENSE.TXT",
  4131. "THIRD-PARTY-NOTICES.TXT",
  4132. "lib/MonoAndroid10/_._",
  4133. "lib/MonoTouch10/_._",
  4134. "lib/net461/System.Threading.Tasks.Extensions.dll",
  4135. "lib/net461/System.Threading.Tasks.Extensions.xml",
  4136. "lib/netcoreapp2.1/_._",
  4137. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  4138. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  4139. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  4140. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  4141. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  4142. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  4143. "lib/xamarinios10/_._",
  4144. "lib/xamarinmac20/_._",
  4145. "lib/xamarintvos10/_._",
  4146. "lib/xamarinwatchos10/_._",
  4147. "ref/MonoAndroid10/_._",
  4148. "ref/MonoTouch10/_._",
  4149. "ref/netcoreapp2.1/_._",
  4150. "ref/xamarinios10/_._",
  4151. "ref/xamarinmac20/_._",
  4152. "ref/xamarintvos10/_._",
  4153. "ref/xamarinwatchos10/_._",
  4154. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  4155. "system.threading.tasks.extensions.nuspec",
  4156. "useSharedDesignerContext.txt",
  4157. "version.txt"
  4158. ]
  4159. },
  4160. "System.Windows.Extensions/6.0.0": {
  4161. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  4162. "type": "package",
  4163. "path": "system.windows.extensions/6.0.0",
  4164. "files": [
  4165. ".nupkg.metadata",
  4166. ".signature.p7s",
  4167. "Icon.png",
  4168. "LICENSE.TXT",
  4169. "THIRD-PARTY-NOTICES.TXT",
  4170. "lib/net6.0/System.Windows.Extensions.dll",
  4171. "lib/net6.0/System.Windows.Extensions.xml",
  4172. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  4173. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  4174. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  4175. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  4176. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  4177. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  4178. "system.windows.extensions.6.0.0.nupkg.sha512",
  4179. "system.windows.extensions.nuspec",
  4180. "useSharedDesignerContext.txt"
  4181. ]
  4182. }
  4183. },
  4184. "projectFileDependencyGroups": {
  4185. "net8.0": [
  4186. "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 8.0.0",
  4187. "Microsoft.EntityFrameworkCore >= 8.0.0",
  4188. "Microsoft.EntityFrameworkCore.Design >= 8.0.0",
  4189. "Microsoft.EntityFrameworkCore.SqlServer >= 8.0.0",
  4190. "Microsoft.EntityFrameworkCore.Tools >= 8.0.0",
  4191. "Microsoft.Extensions.Identity.Stores >= 8.0.0"
  4192. ]
  4193. },
  4194. "packageFolders": {
  4195. "C:\\Users\\OpenValue\\.nuget\\packages\\": {},
  4196. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  4197. },
  4198. "project": {
  4199. "version": "1.0.0",
  4200. "restore": {
  4201. "projectUniqueName": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Data\\AipGateway.Data.csproj",
  4202. "projectName": "AipGateway.Data",
  4203. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Data\\AipGateway.Data.csproj",
  4204. "packagesPath": "C:\\Users\\OpenValue\\.nuget\\packages\\",
  4205. "outputPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Data\\obj\\",
  4206. "projectStyle": "PackageReference",
  4207. "fallbackFolders": [
  4208. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  4209. ],
  4210. "configFilePaths": [
  4211. "C:\\Users\\OpenValue\\AppData\\Roaming\\NuGet\\NuGet.Config",
  4212. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  4213. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  4214. ],
  4215. "originalTargetFrameworks": [
  4216. "net8.0"
  4217. ],
  4218. "sources": {
  4219. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  4220. "C:\\Program Files\\dotnet\\library-packs": {},
  4221. "https://api.nuget.org/v3/index.json": {}
  4222. },
  4223. "frameworks": {
  4224. "net8.0": {
  4225. "targetAlias": "net8.0",
  4226. "projectReferences": {}
  4227. }
  4228. },
  4229. "warningProperties": {
  4230. "warnAsError": [
  4231. "NU1605"
  4232. ]
  4233. },
  4234. "restoreAuditProperties": {
  4235. "enableAudit": "true",
  4236. "auditLevel": "low",
  4237. "auditMode": "direct"
  4238. }
  4239. },
  4240. "frameworks": {
  4241. "net8.0": {
  4242. "targetAlias": "net8.0",
  4243. "dependencies": {
  4244. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
  4245. "target": "Package",
  4246. "version": "[8.0.0, )"
  4247. },
  4248. "Microsoft.EntityFrameworkCore": {
  4249. "target": "Package",
  4250. "version": "[8.0.0, )"
  4251. },
  4252. "Microsoft.EntityFrameworkCore.Design": {
  4253. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  4254. "suppressParent": "All",
  4255. "target": "Package",
  4256. "version": "[8.0.0, )"
  4257. },
  4258. "Microsoft.EntityFrameworkCore.SqlServer": {
  4259. "target": "Package",
  4260. "version": "[8.0.0, )"
  4261. },
  4262. "Microsoft.EntityFrameworkCore.Tools": {
  4263. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  4264. "suppressParent": "All",
  4265. "target": "Package",
  4266. "version": "[8.0.0, )"
  4267. },
  4268. "Microsoft.Extensions.Identity.Stores": {
  4269. "target": "Package",
  4270. "version": "[8.0.0, )"
  4271. }
  4272. },
  4273. "imports": [
  4274. "net461",
  4275. "net462",
  4276. "net47",
  4277. "net471",
  4278. "net472",
  4279. "net48",
  4280. "net481"
  4281. ],
  4282. "assetTargetFallback": true,
  4283. "warn": true,
  4284. "frameworkReferences": {
  4285. "Microsoft.NETCore.App": {
  4286. "privateAssets": "all"
  4287. }
  4288. },
  4289. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
  4290. }
  4291. }
  4292. }
  4293. }