project.assets.json 194 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  5. "Humanizer.Core/2.8.26": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/_._": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/Humanizer.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "JetBrains.Annotations/2022.1.0": {
  19. "type": "package",
  20. "compile": {
  21. "lib/netstandard2.0/JetBrains.Annotations.dll": {
  22. "related": ".deps.json;.xml"
  23. }
  24. },
  25. "runtime": {
  26. "lib/netstandard2.0/JetBrains.Annotations.dll": {
  27. "related": ".deps.json;.xml"
  28. }
  29. }
  30. },
  31. "Microsoft.AspNetCore.Authorization/6.0.5": {
  32. "type": "package",
  33. "dependencies": {
  34. "Microsoft.AspNetCore.Metadata": "6.0.5",
  35. "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
  36. "Microsoft.Extensions.Options": "6.0.0"
  37. },
  38. "compile": {
  39. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
  40. "related": ".xml"
  41. }
  42. },
  43. "runtime": {
  44. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
  45. "related": ".xml"
  46. }
  47. }
  48. },
  49. "Microsoft.AspNetCore.Metadata/6.0.5": {
  50. "type": "package",
  51. "compile": {
  52. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
  53. "related": ".xml"
  54. }
  55. },
  56. "runtime": {
  57. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
  58. "related": ".xml"
  59. }
  60. }
  61. },
  62. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  63. "type": "package",
  64. "compile": {
  65. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  66. "related": ".xml"
  67. }
  68. },
  69. "runtime": {
  70. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  71. "related": ".xml"
  72. }
  73. }
  74. },
  75. "Microsoft.EntityFrameworkCore/6.0.5": {
  76. "type": "package",
  77. "dependencies": {
  78. "Microsoft.EntityFrameworkCore.Abstractions": "6.0.5",
  79. "Microsoft.EntityFrameworkCore.Analyzers": "6.0.5",
  80. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  81. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  82. "Microsoft.Extensions.Logging": "6.0.0",
  83. "System.Collections.Immutable": "6.0.0",
  84. "System.Diagnostics.DiagnosticSource": "6.0.0"
  85. },
  86. "compile": {
  87. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  88. "related": ".xml"
  89. }
  90. },
  91. "runtime": {
  92. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  93. "related": ".xml"
  94. }
  95. }
  96. },
  97. "Microsoft.EntityFrameworkCore.Abstractions/6.0.5": {
  98. "type": "package",
  99. "compile": {
  100. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  101. "related": ".xml"
  102. }
  103. },
  104. "runtime": {
  105. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  106. "related": ".xml"
  107. }
  108. }
  109. },
  110. "Microsoft.EntityFrameworkCore.Analyzers/6.0.5": {
  111. "type": "package",
  112. "compile": {
  113. "lib/netstandard2.0/_._": {}
  114. },
  115. "runtime": {
  116. "lib/netstandard2.0/_._": {}
  117. }
  118. },
  119. "Microsoft.EntityFrameworkCore.Design/6.0.3": {
  120. "type": "package",
  121. "dependencies": {
  122. "Humanizer.Core": "2.8.26",
  123. "Microsoft.EntityFrameworkCore.Relational": "6.0.3"
  124. },
  125. "compile": {
  126. "lib/net6.0/_._": {
  127. "related": ".xml"
  128. }
  129. },
  130. "runtime": {
  131. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
  132. "related": ".xml"
  133. }
  134. },
  135. "build": {
  136. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
  137. }
  138. },
  139. "Microsoft.EntityFrameworkCore.Relational/6.0.5": {
  140. "type": "package",
  141. "dependencies": {
  142. "Microsoft.EntityFrameworkCore": "6.0.5",
  143. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  144. },
  145. "compile": {
  146. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  147. "related": ".xml"
  148. }
  149. },
  150. "runtime": {
  151. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  152. "related": ".xml"
  153. }
  154. }
  155. },
  156. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  157. "type": "package",
  158. "dependencies": {
  159. "Microsoft.Extensions.Primitives": "6.0.0"
  160. },
  161. "compile": {
  162. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  163. "related": ".xml"
  164. }
  165. },
  166. "runtime": {
  167. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  168. "related": ".xml"
  169. }
  170. }
  171. },
  172. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  173. "type": "package",
  174. "dependencies": {
  175. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  176. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  177. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  178. "Microsoft.Extensions.Options": "6.0.0",
  179. "Microsoft.Extensions.Primitives": "6.0.0"
  180. },
  181. "compile": {
  182. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  183. "related": ".xml"
  184. }
  185. },
  186. "runtime": {
  187. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  188. "related": ".xml"
  189. }
  190. }
  191. },
  192. "Microsoft.Extensions.Configuration/6.0.0": {
  193. "type": "package",
  194. "dependencies": {
  195. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  196. "Microsoft.Extensions.Primitives": "6.0.0"
  197. },
  198. "compile": {
  199. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  200. "related": ".xml"
  201. }
  202. },
  203. "runtime": {
  204. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  205. "related": ".xml"
  206. }
  207. }
  208. },
  209. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  210. "type": "package",
  211. "dependencies": {
  212. "Microsoft.Extensions.Primitives": "6.0.0"
  213. },
  214. "compile": {
  215. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  216. "related": ".xml"
  217. }
  218. },
  219. "runtime": {
  220. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  221. "related": ".xml"
  222. }
  223. }
  224. },
  225. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  226. "type": "package",
  227. "dependencies": {
  228. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  229. },
  230. "compile": {
  231. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  232. "related": ".xml"
  233. }
  234. },
  235. "runtime": {
  236. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  237. "related": ".xml"
  238. }
  239. }
  240. },
  241. "Microsoft.Extensions.Configuration.CommandLine/6.0.0": {
  242. "type": "package",
  243. "dependencies": {
  244. "Microsoft.Extensions.Configuration": "6.0.0",
  245. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  246. },
  247. "compile": {
  248. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  249. "related": ".xml"
  250. }
  251. },
  252. "runtime": {
  253. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  254. "related": ".xml"
  255. }
  256. }
  257. },
  258. "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.1": {
  259. "type": "package",
  260. "dependencies": {
  261. "Microsoft.Extensions.Configuration": "6.0.0",
  262. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  263. },
  264. "compile": {
  265. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  266. "related": ".xml"
  267. }
  268. },
  269. "runtime": {
  270. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  271. "related": ".xml"
  272. }
  273. }
  274. },
  275. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  276. "type": "package",
  277. "dependencies": {
  278. "Microsoft.Extensions.Configuration": "6.0.0",
  279. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  280. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  281. "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
  282. "Microsoft.Extensions.Primitives": "6.0.0"
  283. },
  284. "compile": {
  285. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  286. "related": ".xml"
  287. }
  288. },
  289. "runtime": {
  290. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  291. "related": ".xml"
  292. }
  293. }
  294. },
  295. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  296. "type": "package",
  297. "dependencies": {
  298. "Microsoft.Extensions.Configuration": "6.0.0",
  299. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  300. "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0",
  301. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  302. "System.Text.Json": "6.0.0"
  303. },
  304. "compile": {
  305. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  306. "related": ".xml"
  307. }
  308. },
  309. "runtime": {
  310. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  311. "related": ".xml"
  312. }
  313. }
  314. },
  315. "Microsoft.Extensions.Configuration.UserSecrets/6.0.1": {
  316. "type": "package",
  317. "dependencies": {
  318. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  319. "Microsoft.Extensions.Configuration.Json": "6.0.0",
  320. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  321. "Microsoft.Extensions.FileProviders.Physical": "6.0.0"
  322. },
  323. "compile": {
  324. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  325. "related": ".xml"
  326. }
  327. },
  328. "runtime": {
  329. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  330. "related": ".xml"
  331. }
  332. },
  333. "build": {
  334. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
  335. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  336. }
  337. },
  338. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  339. "type": "package",
  340. "dependencies": {
  341. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  342. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  343. },
  344. "compile": {
  345. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  346. "related": ".xml"
  347. }
  348. },
  349. "runtime": {
  350. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  351. "related": ".xml"
  352. }
  353. },
  354. "build": {
  355. "buildTransitive/netcoreapp3.1/_._": {}
  356. }
  357. },
  358. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  359. "type": "package",
  360. "compile": {
  361. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  362. "related": ".xml"
  363. }
  364. },
  365. "runtime": {
  366. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  367. "related": ".xml"
  368. }
  369. },
  370. "build": {
  371. "buildTransitive/netcoreapp3.1/_._": {}
  372. }
  373. },
  374. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  375. "type": "package",
  376. "dependencies": {
  377. "Microsoft.Extensions.Primitives": "6.0.0"
  378. },
  379. "compile": {
  380. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  381. "related": ".xml"
  382. }
  383. },
  384. "runtime": {
  385. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  386. "related": ".xml"
  387. }
  388. },
  389. "build": {
  390. "buildTransitive/netcoreapp3.1/_._": {}
  391. }
  392. },
  393. "Microsoft.Extensions.FileProviders.Composite/6.0.0": {
  394. "type": "package",
  395. "dependencies": {
  396. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  397. "Microsoft.Extensions.Primitives": "6.0.0"
  398. },
  399. "compile": {
  400. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  401. "related": ".xml"
  402. }
  403. },
  404. "runtime": {
  405. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  406. "related": ".xml"
  407. }
  408. }
  409. },
  410. "Microsoft.Extensions.FileProviders.Embedded/6.0.5": {
  411. "type": "package",
  412. "dependencies": {
  413. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0"
  414. },
  415. "compile": {
  416. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  417. "related": ".xml"
  418. }
  419. },
  420. "runtime": {
  421. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  422. "related": ".xml"
  423. }
  424. },
  425. "build": {
  426. "build/netstandard2.0/_._": {}
  427. },
  428. "buildMultiTargeting": {
  429. "buildMultiTargeting/_._": {}
  430. }
  431. },
  432. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  433. "type": "package",
  434. "dependencies": {
  435. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  436. "Microsoft.Extensions.FileSystemGlobbing": "6.0.0",
  437. "Microsoft.Extensions.Primitives": "6.0.0"
  438. },
  439. "compile": {
  440. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  441. "related": ".xml"
  442. }
  443. },
  444. "runtime": {
  445. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  446. "related": ".xml"
  447. }
  448. },
  449. "build": {
  450. "buildTransitive/netcoreapp3.1/_._": {}
  451. }
  452. },
  453. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  454. "type": "package",
  455. "compile": {
  456. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  457. "related": ".xml"
  458. }
  459. },
  460. "runtime": {
  461. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  462. "related": ".xml"
  463. }
  464. },
  465. "build": {
  466. "buildTransitive/netcoreapp3.1/_._": {}
  467. }
  468. },
  469. "Microsoft.Extensions.Hosting.Abstractions/6.0.0": {
  470. "type": "package",
  471. "dependencies": {
  472. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  473. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  474. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0"
  475. },
  476. "compile": {
  477. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  478. "related": ".xml"
  479. }
  480. },
  481. "runtime": {
  482. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  483. "related": ".xml"
  484. }
  485. }
  486. },
  487. "Microsoft.Extensions.Localization/6.0.5": {
  488. "type": "package",
  489. "dependencies": {
  490. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  491. "Microsoft.Extensions.Localization.Abstractions": "6.0.5",
  492. "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
  493. "Microsoft.Extensions.Options": "6.0.0"
  494. },
  495. "compile": {
  496. "lib/net6.0/Microsoft.Extensions.Localization.dll": {
  497. "related": ".xml"
  498. }
  499. },
  500. "runtime": {
  501. "lib/net6.0/Microsoft.Extensions.Localization.dll": {
  502. "related": ".xml"
  503. }
  504. }
  505. },
  506. "Microsoft.Extensions.Localization.Abstractions/6.0.5": {
  507. "type": "package",
  508. "compile": {
  509. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  510. "related": ".xml"
  511. }
  512. },
  513. "runtime": {
  514. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  515. "related": ".xml"
  516. }
  517. }
  518. },
  519. "Microsoft.Extensions.Logging/6.0.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  523. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  524. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  525. "Microsoft.Extensions.Options": "6.0.0",
  526. "System.Diagnostics.DiagnosticSource": "6.0.0"
  527. },
  528. "compile": {
  529. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  530. "related": ".xml"
  531. }
  532. },
  533. "runtime": {
  534. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  535. "related": ".xml"
  536. }
  537. }
  538. },
  539. "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
  540. "type": "package",
  541. "compile": {
  542. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  543. "related": ".xml"
  544. }
  545. },
  546. "runtime": {
  547. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  548. "related": ".xml"
  549. }
  550. },
  551. "build": {
  552. "buildTransitive/netcoreapp3.1/_._": {}
  553. }
  554. },
  555. "Microsoft.Extensions.Options/6.0.0": {
  556. "type": "package",
  557. "dependencies": {
  558. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  559. "Microsoft.Extensions.Primitives": "6.0.0"
  560. },
  561. "compile": {
  562. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  563. "related": ".xml"
  564. }
  565. },
  566. "runtime": {
  567. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  568. "related": ".xml"
  569. }
  570. }
  571. },
  572. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  573. "type": "package",
  574. "dependencies": {
  575. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  576. "Microsoft.Extensions.Configuration.Binder": "6.0.0",
  577. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  578. "Microsoft.Extensions.Options": "6.0.0",
  579. "Microsoft.Extensions.Primitives": "6.0.0"
  580. },
  581. "compile": {
  582. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  583. "related": ".xml"
  584. }
  585. },
  586. "runtime": {
  587. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  588. "related": ".xml"
  589. }
  590. }
  591. },
  592. "Microsoft.Extensions.Primitives/6.0.0": {
  593. "type": "package",
  594. "dependencies": {
  595. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  596. },
  597. "compile": {
  598. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  599. "related": ".xml"
  600. }
  601. },
  602. "runtime": {
  603. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  604. "related": ".xml"
  605. }
  606. },
  607. "build": {
  608. "buildTransitive/netcoreapp3.1/_._": {}
  609. }
  610. },
  611. "Microsoft.NETCore.Platforms/1.1.0": {
  612. "type": "package",
  613. "compile": {
  614. "lib/netstandard1.0/_._": {}
  615. },
  616. "runtime": {
  617. "lib/netstandard1.0/_._": {}
  618. }
  619. },
  620. "Microsoft.NETCore.Targets/1.1.0": {
  621. "type": "package",
  622. "compile": {
  623. "lib/netstandard1.0/_._": {}
  624. },
  625. "runtime": {
  626. "lib/netstandard1.0/_._": {}
  627. }
  628. },
  629. "MySqlConnector/2.0.0": {
  630. "type": "package",
  631. "compile": {
  632. "lib/net6.0/MySqlConnector.dll": {
  633. "related": ".xml"
  634. }
  635. },
  636. "runtime": {
  637. "lib/net6.0/MySqlConnector.dll": {
  638. "related": ".xml"
  639. }
  640. }
  641. },
  642. "Newtonsoft.Json/13.0.1": {
  643. "type": "package",
  644. "compile": {
  645. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  646. "related": ".xml"
  647. }
  648. },
  649. "runtime": {
  650. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  651. "related": ".xml"
  652. }
  653. }
  654. },
  655. "Nito.AsyncEx.Context/5.1.2": {
  656. "type": "package",
  657. "dependencies": {
  658. "Nito.AsyncEx.Tasks": "5.1.2"
  659. },
  660. "compile": {
  661. "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
  662. "related": ".xml"
  663. }
  664. },
  665. "runtime": {
  666. "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
  667. "related": ".xml"
  668. }
  669. }
  670. },
  671. "Nito.AsyncEx.Coordination/5.1.2": {
  672. "type": "package",
  673. "dependencies": {
  674. "Nito.AsyncEx.Tasks": "5.1.2",
  675. "Nito.Collections.Deque": "1.1.1"
  676. },
  677. "compile": {
  678. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  679. "related": ".xml"
  680. }
  681. },
  682. "runtime": {
  683. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  684. "related": ".xml"
  685. }
  686. }
  687. },
  688. "Nito.AsyncEx.Tasks/5.1.2": {
  689. "type": "package",
  690. "dependencies": {
  691. "Nito.Disposables": "2.2.1"
  692. },
  693. "compile": {
  694. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  695. "related": ".xml"
  696. }
  697. },
  698. "runtime": {
  699. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  700. "related": ".xml"
  701. }
  702. }
  703. },
  704. "Nito.Collections.Deque/1.1.1": {
  705. "type": "package",
  706. "compile": {
  707. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  708. "related": ".xml"
  709. }
  710. },
  711. "runtime": {
  712. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  713. "related": ".xml"
  714. }
  715. }
  716. },
  717. "Nito.Disposables/2.2.1": {
  718. "type": "package",
  719. "dependencies": {
  720. "System.Collections.Immutable": "1.7.1"
  721. },
  722. "compile": {
  723. "lib/netstandard2.1/Nito.Disposables.dll": {
  724. "related": ".xml"
  725. }
  726. },
  727. "runtime": {
  728. "lib/netstandard2.1/Nito.Disposables.dll": {
  729. "related": ".xml"
  730. }
  731. }
  732. },
  733. "Pomelo.EntityFrameworkCore.MySql/6.0.0": {
  734. "type": "package",
  735. "dependencies": {
  736. "Microsoft.EntityFrameworkCore.Relational": "[6.0.0, 7.0.0)",
  737. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  738. "MySqlConnector": "2.0.0"
  739. },
  740. "compile": {
  741. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {
  742. "related": ".xml"
  743. }
  744. },
  745. "runtime": {
  746. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {
  747. "related": ".xml"
  748. }
  749. }
  750. },
  751. "System.Collections/4.3.0": {
  752. "type": "package",
  753. "dependencies": {
  754. "Microsoft.NETCore.Platforms": "1.1.0",
  755. "Microsoft.NETCore.Targets": "1.1.0",
  756. "System.Runtime": "4.3.0"
  757. },
  758. "compile": {
  759. "ref/netstandard1.3/System.Collections.dll": {
  760. "related": ".xml"
  761. }
  762. }
  763. },
  764. "System.Collections.Immutable/6.0.0": {
  765. "type": "package",
  766. "dependencies": {
  767. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  768. },
  769. "compile": {
  770. "lib/net6.0/System.Collections.Immutable.dll": {
  771. "related": ".xml"
  772. }
  773. },
  774. "runtime": {
  775. "lib/net6.0/System.Collections.Immutable.dll": {
  776. "related": ".xml"
  777. }
  778. },
  779. "build": {
  780. "buildTransitive/netcoreapp3.1/_._": {}
  781. }
  782. },
  783. "System.Diagnostics.Debug/4.3.0": {
  784. "type": "package",
  785. "dependencies": {
  786. "Microsoft.NETCore.Platforms": "1.1.0",
  787. "Microsoft.NETCore.Targets": "1.1.0",
  788. "System.Runtime": "4.3.0"
  789. },
  790. "compile": {
  791. "ref/netstandard1.3/_._": {
  792. "related": ".xml"
  793. }
  794. }
  795. },
  796. "System.Diagnostics.DiagnosticSource/6.0.0": {
  797. "type": "package",
  798. "dependencies": {
  799. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  800. },
  801. "compile": {
  802. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  803. "related": ".xml"
  804. }
  805. },
  806. "runtime": {
  807. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  808. "related": ".xml"
  809. }
  810. },
  811. "build": {
  812. "buildTransitive/netcoreapp3.1/_._": {}
  813. }
  814. },
  815. "System.Globalization/4.3.0": {
  816. "type": "package",
  817. "dependencies": {
  818. "Microsoft.NETCore.Platforms": "1.1.0",
  819. "Microsoft.NETCore.Targets": "1.1.0",
  820. "System.Runtime": "4.3.0"
  821. },
  822. "compile": {
  823. "ref/netstandard1.3/_._": {
  824. "related": ".xml"
  825. }
  826. }
  827. },
  828. "System.IO/4.3.0": {
  829. "type": "package",
  830. "dependencies": {
  831. "Microsoft.NETCore.Platforms": "1.1.0",
  832. "Microsoft.NETCore.Targets": "1.1.0",
  833. "System.Runtime": "4.3.0",
  834. "System.Text.Encoding": "4.3.0",
  835. "System.Threading.Tasks": "4.3.0"
  836. },
  837. "compile": {
  838. "ref/netstandard1.5/System.IO.dll": {
  839. "related": ".xml"
  840. }
  841. }
  842. },
  843. "System.Linq/4.3.0": {
  844. "type": "package",
  845. "dependencies": {
  846. "System.Collections": "4.3.0",
  847. "System.Diagnostics.Debug": "4.3.0",
  848. "System.Resources.ResourceManager": "4.3.0",
  849. "System.Runtime": "4.3.0",
  850. "System.Runtime.Extensions": "4.3.0"
  851. },
  852. "compile": {
  853. "ref/netstandard1.6/System.Linq.dll": {
  854. "related": ".xml"
  855. }
  856. },
  857. "runtime": {
  858. "lib/netstandard1.6/System.Linq.dll": {}
  859. }
  860. },
  861. "System.Linq.Dynamic.Core/1.2.18": {
  862. "type": "package",
  863. "compile": {
  864. "lib/net6.0/System.Linq.Dynamic.Core.dll": {
  865. "related": ".pdb;.xml"
  866. }
  867. },
  868. "runtime": {
  869. "lib/net6.0/System.Linq.Dynamic.Core.dll": {
  870. "related": ".pdb;.xml"
  871. }
  872. }
  873. },
  874. "System.Linq.Expressions/4.3.0": {
  875. "type": "package",
  876. "dependencies": {
  877. "System.Collections": "4.3.0",
  878. "System.Diagnostics.Debug": "4.3.0",
  879. "System.Globalization": "4.3.0",
  880. "System.IO": "4.3.0",
  881. "System.Linq": "4.3.0",
  882. "System.ObjectModel": "4.3.0",
  883. "System.Reflection": "4.3.0",
  884. "System.Reflection.Emit": "4.3.0",
  885. "System.Reflection.Emit.ILGeneration": "4.3.0",
  886. "System.Reflection.Emit.Lightweight": "4.3.0",
  887. "System.Reflection.Extensions": "4.3.0",
  888. "System.Reflection.Primitives": "4.3.0",
  889. "System.Reflection.TypeExtensions": "4.3.0",
  890. "System.Resources.ResourceManager": "4.3.0",
  891. "System.Runtime": "4.3.0",
  892. "System.Runtime.Extensions": "4.3.0",
  893. "System.Threading": "4.3.0"
  894. },
  895. "compile": {
  896. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  897. "related": ".xml"
  898. }
  899. },
  900. "runtime": {
  901. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  902. }
  903. },
  904. "System.Linq.Queryable/4.3.0": {
  905. "type": "package",
  906. "dependencies": {
  907. "System.Collections": "4.3.0",
  908. "System.Diagnostics.Debug": "4.3.0",
  909. "System.Linq": "4.3.0",
  910. "System.Linq.Expressions": "4.3.0",
  911. "System.Reflection": "4.3.0",
  912. "System.Reflection.Extensions": "4.3.0",
  913. "System.Resources.ResourceManager": "4.3.0",
  914. "System.Runtime": "4.3.0"
  915. },
  916. "compile": {
  917. "ref/netstandard1.0/System.Linq.Queryable.dll": {
  918. "related": ".xml"
  919. }
  920. },
  921. "runtime": {
  922. "lib/netstandard1.3/System.Linq.Queryable.dll": {}
  923. }
  924. },
  925. "System.ObjectModel/4.3.0": {
  926. "type": "package",
  927. "dependencies": {
  928. "System.Collections": "4.3.0",
  929. "System.Diagnostics.Debug": "4.3.0",
  930. "System.Resources.ResourceManager": "4.3.0",
  931. "System.Runtime": "4.3.0",
  932. "System.Threading": "4.3.0"
  933. },
  934. "compile": {
  935. "ref/netstandard1.3/_._": {
  936. "related": ".xml"
  937. }
  938. },
  939. "runtime": {
  940. "lib/netstandard1.3/System.ObjectModel.dll": {}
  941. }
  942. },
  943. "System.Reflection/4.3.0": {
  944. "type": "package",
  945. "dependencies": {
  946. "Microsoft.NETCore.Platforms": "1.1.0",
  947. "Microsoft.NETCore.Targets": "1.1.0",
  948. "System.IO": "4.3.0",
  949. "System.Reflection.Primitives": "4.3.0",
  950. "System.Runtime": "4.3.0"
  951. },
  952. "compile": {
  953. "ref/netstandard1.5/System.Reflection.dll": {
  954. "related": ".xml"
  955. }
  956. }
  957. },
  958. "System.Reflection.Emit/4.3.0": {
  959. "type": "package",
  960. "dependencies": {
  961. "System.IO": "4.3.0",
  962. "System.Reflection": "4.3.0",
  963. "System.Reflection.Emit.ILGeneration": "4.3.0",
  964. "System.Reflection.Primitives": "4.3.0",
  965. "System.Runtime": "4.3.0"
  966. },
  967. "compile": {
  968. "ref/netstandard1.1/_._": {
  969. "related": ".xml"
  970. }
  971. },
  972. "runtime": {
  973. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  974. }
  975. },
  976. "System.Reflection.Emit.ILGeneration/4.3.0": {
  977. "type": "package",
  978. "dependencies": {
  979. "System.Reflection": "4.3.0",
  980. "System.Reflection.Primitives": "4.3.0",
  981. "System.Runtime": "4.3.0"
  982. },
  983. "compile": {
  984. "ref/netstandard1.0/_._": {
  985. "related": ".xml"
  986. }
  987. },
  988. "runtime": {
  989. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  990. }
  991. },
  992. "System.Reflection.Emit.Lightweight/4.3.0": {
  993. "type": "package",
  994. "dependencies": {
  995. "System.Reflection": "4.3.0",
  996. "System.Reflection.Emit.ILGeneration": "4.3.0",
  997. "System.Reflection.Primitives": "4.3.0",
  998. "System.Runtime": "4.3.0"
  999. },
  1000. "compile": {
  1001. "ref/netstandard1.0/_._": {
  1002. "related": ".xml"
  1003. }
  1004. },
  1005. "runtime": {
  1006. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1007. }
  1008. },
  1009. "System.Reflection.Extensions/4.3.0": {
  1010. "type": "package",
  1011. "dependencies": {
  1012. "Microsoft.NETCore.Platforms": "1.1.0",
  1013. "Microsoft.NETCore.Targets": "1.1.0",
  1014. "System.Reflection": "4.3.0",
  1015. "System.Runtime": "4.3.0"
  1016. },
  1017. "compile": {
  1018. "ref/netstandard1.0/_._": {
  1019. "related": ".xml"
  1020. }
  1021. }
  1022. },
  1023. "System.Reflection.Primitives/4.3.0": {
  1024. "type": "package",
  1025. "dependencies": {
  1026. "Microsoft.NETCore.Platforms": "1.1.0",
  1027. "Microsoft.NETCore.Targets": "1.1.0",
  1028. "System.Runtime": "4.3.0"
  1029. },
  1030. "compile": {
  1031. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  1032. "related": ".xml"
  1033. }
  1034. }
  1035. },
  1036. "System.Reflection.TypeExtensions/4.3.0": {
  1037. "type": "package",
  1038. "dependencies": {
  1039. "System.Reflection": "4.3.0",
  1040. "System.Runtime": "4.3.0"
  1041. },
  1042. "compile": {
  1043. "ref/netstandard1.5/_._": {
  1044. "related": ".xml"
  1045. }
  1046. },
  1047. "runtime": {
  1048. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1049. }
  1050. },
  1051. "System.Resources.ResourceManager/4.3.0": {
  1052. "type": "package",
  1053. "dependencies": {
  1054. "Microsoft.NETCore.Platforms": "1.1.0",
  1055. "Microsoft.NETCore.Targets": "1.1.0",
  1056. "System.Globalization": "4.3.0",
  1057. "System.Reflection": "4.3.0",
  1058. "System.Runtime": "4.3.0"
  1059. },
  1060. "compile": {
  1061. "ref/netstandard1.0/_._": {
  1062. "related": ".xml"
  1063. }
  1064. }
  1065. },
  1066. "System.Runtime/4.3.0": {
  1067. "type": "package",
  1068. "dependencies": {
  1069. "Microsoft.NETCore.Platforms": "1.1.0",
  1070. "Microsoft.NETCore.Targets": "1.1.0"
  1071. },
  1072. "compile": {
  1073. "ref/netstandard1.5/System.Runtime.dll": {
  1074. "related": ".xml"
  1075. }
  1076. }
  1077. },
  1078. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1079. "type": "package",
  1080. "compile": {
  1081. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1082. "related": ".xml"
  1083. }
  1084. },
  1085. "runtime": {
  1086. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1087. "related": ".xml"
  1088. }
  1089. },
  1090. "build": {
  1091. "buildTransitive/netcoreapp3.1/_._": {}
  1092. }
  1093. },
  1094. "System.Runtime.Extensions/4.3.0": {
  1095. "type": "package",
  1096. "dependencies": {
  1097. "Microsoft.NETCore.Platforms": "1.1.0",
  1098. "Microsoft.NETCore.Targets": "1.1.0",
  1099. "System.Runtime": "4.3.0"
  1100. },
  1101. "compile": {
  1102. "ref/netstandard1.5/_._": {
  1103. "related": ".xml"
  1104. }
  1105. }
  1106. },
  1107. "System.Runtime.Loader/4.3.0": {
  1108. "type": "package",
  1109. "dependencies": {
  1110. "System.IO": "4.3.0",
  1111. "System.Reflection": "4.3.0",
  1112. "System.Runtime": "4.3.0"
  1113. },
  1114. "compile": {
  1115. "ref/netstandard1.5/System.Runtime.Loader.dll": {
  1116. "related": ".xml"
  1117. }
  1118. },
  1119. "runtime": {
  1120. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  1121. }
  1122. },
  1123. "System.Text.Encoding/4.3.0": {
  1124. "type": "package",
  1125. "dependencies": {
  1126. "Microsoft.NETCore.Platforms": "1.1.0",
  1127. "Microsoft.NETCore.Targets": "1.1.0",
  1128. "System.Runtime": "4.3.0"
  1129. },
  1130. "compile": {
  1131. "ref/netstandard1.3/System.Text.Encoding.dll": {
  1132. "related": ".xml"
  1133. }
  1134. }
  1135. },
  1136. "System.Text.Encodings.Web/6.0.0": {
  1137. "type": "package",
  1138. "dependencies": {
  1139. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1140. },
  1141. "compile": {
  1142. "lib/net6.0/System.Text.Encodings.Web.dll": {
  1143. "related": ".xml"
  1144. }
  1145. },
  1146. "runtime": {
  1147. "lib/net6.0/System.Text.Encodings.Web.dll": {
  1148. "related": ".xml"
  1149. }
  1150. },
  1151. "build": {
  1152. "buildTransitive/netcoreapp3.1/_._": {}
  1153. },
  1154. "runtimeTargets": {
  1155. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {
  1156. "assetType": "runtime",
  1157. "rid": "browser"
  1158. }
  1159. }
  1160. },
  1161. "System.Text.Json/6.0.0": {
  1162. "type": "package",
  1163. "dependencies": {
  1164. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  1165. "System.Text.Encodings.Web": "6.0.0"
  1166. },
  1167. "compile": {
  1168. "lib/net6.0/System.Text.Json.dll": {
  1169. "related": ".xml"
  1170. }
  1171. },
  1172. "runtime": {
  1173. "lib/net6.0/System.Text.Json.dll": {
  1174. "related": ".xml"
  1175. }
  1176. },
  1177. "build": {
  1178. "buildTransitive/netcoreapp3.1/_._": {}
  1179. }
  1180. },
  1181. "System.Threading/4.3.0": {
  1182. "type": "package",
  1183. "dependencies": {
  1184. "System.Runtime": "4.3.0",
  1185. "System.Threading.Tasks": "4.3.0"
  1186. },
  1187. "compile": {
  1188. "ref/netstandard1.3/_._": {
  1189. "related": ".xml"
  1190. }
  1191. },
  1192. "runtime": {
  1193. "lib/netstandard1.3/System.Threading.dll": {}
  1194. }
  1195. },
  1196. "System.Threading.Tasks/4.3.0": {
  1197. "type": "package",
  1198. "dependencies": {
  1199. "Microsoft.NETCore.Platforms": "1.1.0",
  1200. "Microsoft.NETCore.Targets": "1.1.0",
  1201. "System.Runtime": "4.3.0"
  1202. },
  1203. "compile": {
  1204. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  1205. "related": ".xml"
  1206. }
  1207. }
  1208. },
  1209. "TimeZoneConverter/5.0.0": {
  1210. "type": "package",
  1211. "compile": {
  1212. "lib/netstandard2.0/TimeZoneConverter.dll": {
  1213. "related": ".xml"
  1214. }
  1215. },
  1216. "runtime": {
  1217. "lib/netstandard2.0/TimeZoneConverter.dll": {
  1218. "related": ".xml"
  1219. }
  1220. }
  1221. },
  1222. "Volo.Abp.Auditing/6.0.0": {
  1223. "type": "package",
  1224. "dependencies": {
  1225. "Volo.Abp.Auditing.Contracts": "6.0.0",
  1226. "Volo.Abp.Data": "6.0.0",
  1227. "Volo.Abp.Json": "6.0.0",
  1228. "Volo.Abp.MultiTenancy": "6.0.0",
  1229. "Volo.Abp.Security": "6.0.0",
  1230. "Volo.Abp.Threading": "6.0.0",
  1231. "Volo.Abp.Timing": "6.0.0"
  1232. },
  1233. "compile": {
  1234. "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
  1235. "related": ".pdb;.xml"
  1236. }
  1237. },
  1238. "runtime": {
  1239. "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
  1240. "related": ".pdb;.xml"
  1241. }
  1242. }
  1243. },
  1244. "Volo.Abp.Auditing.Contracts/6.0.0": {
  1245. "type": "package",
  1246. "dependencies": {
  1247. "Volo.Abp.Core": "6.0.0"
  1248. },
  1249. "compile": {
  1250. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": {
  1251. "related": ".pdb;.xml"
  1252. }
  1253. },
  1254. "runtime": {
  1255. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": {
  1256. "related": ".pdb;.xml"
  1257. }
  1258. }
  1259. },
  1260. "Volo.Abp.Authorization/6.0.0": {
  1261. "type": "package",
  1262. "dependencies": {
  1263. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  1264. "Volo.Abp.Localization": "6.0.0",
  1265. "Volo.Abp.Security": "6.0.0"
  1266. },
  1267. "compile": {
  1268. "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
  1269. "related": ".pdb;.xml"
  1270. }
  1271. },
  1272. "runtime": {
  1273. "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
  1274. "related": ".pdb;.xml"
  1275. }
  1276. }
  1277. },
  1278. "Volo.Abp.Authorization.Abstractions/6.0.0": {
  1279. "type": "package",
  1280. "dependencies": {
  1281. "Microsoft.AspNetCore.Authorization": "6.0.5",
  1282. "Volo.Abp.MultiTenancy": "6.0.0"
  1283. },
  1284. "compile": {
  1285. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": {
  1286. "related": ".pdb;.xml"
  1287. }
  1288. },
  1289. "runtime": {
  1290. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": {
  1291. "related": ".pdb;.xml"
  1292. }
  1293. }
  1294. },
  1295. "Volo.Abp.BackgroundWorkers/6.0.0": {
  1296. "type": "package",
  1297. "dependencies": {
  1298. "Volo.Abp.Threading": "6.0.0"
  1299. },
  1300. "compile": {
  1301. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll": {
  1302. "related": ".pdb;.xml"
  1303. }
  1304. },
  1305. "runtime": {
  1306. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll": {
  1307. "related": ".pdb;.xml"
  1308. }
  1309. }
  1310. },
  1311. "Volo.Abp.Caching/6.0.0": {
  1312. "type": "package",
  1313. "dependencies": {
  1314. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  1315. "Volo.Abp.Json": "6.0.0",
  1316. "Volo.Abp.MultiTenancy": "6.0.0",
  1317. "Volo.Abp.Serialization": "6.0.0",
  1318. "Volo.Abp.Threading": "6.0.0"
  1319. },
  1320. "compile": {
  1321. "lib/netstandard2.0/Volo.Abp.Caching.dll": {
  1322. "related": ".pdb;.xml"
  1323. }
  1324. },
  1325. "runtime": {
  1326. "lib/netstandard2.0/Volo.Abp.Caching.dll": {
  1327. "related": ".pdb;.xml"
  1328. }
  1329. }
  1330. },
  1331. "Volo.Abp.Core/6.0.0": {
  1332. "type": "package",
  1333. "dependencies": {
  1334. "JetBrains.Annotations": "2022.1.0",
  1335. "Microsoft.Extensions.Configuration.CommandLine": "6.0.0",
  1336. "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.1",
  1337. "Microsoft.Extensions.Configuration.UserSecrets": "6.0.1",
  1338. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1339. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  1340. "Microsoft.Extensions.Localization": "6.0.5",
  1341. "Microsoft.Extensions.Logging": "6.0.0",
  1342. "Microsoft.Extensions.Options": "6.0.0",
  1343. "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0",
  1344. "Nito.AsyncEx.Context": "5.1.2",
  1345. "Nito.AsyncEx.Coordination": "5.1.2",
  1346. "System.Collections.Immutable": "6.0.0",
  1347. "System.Linq.Dynamic.Core": "1.2.18",
  1348. "System.Linq.Queryable": "4.3.0",
  1349. "System.Runtime.Loader": "4.3.0",
  1350. "System.Text.Encodings.Web": "6.0.0"
  1351. },
  1352. "compile": {
  1353. "lib/netstandard2.0/Volo.Abp.Core.dll": {
  1354. "related": ".pdb;.xml"
  1355. }
  1356. },
  1357. "runtime": {
  1358. "lib/netstandard2.0/Volo.Abp.Core.dll": {
  1359. "related": ".pdb;.xml"
  1360. }
  1361. }
  1362. },
  1363. "Volo.Abp.Data/6.0.0": {
  1364. "type": "package",
  1365. "dependencies": {
  1366. "Volo.Abp.EventBus.Abstractions": "6.0.0",
  1367. "Volo.Abp.ObjectExtending": "6.0.0",
  1368. "Volo.Abp.Uow": "6.0.0"
  1369. },
  1370. "compile": {
  1371. "lib/netstandard2.0/Volo.Abp.Data.dll": {
  1372. "related": ".pdb;.xml"
  1373. }
  1374. },
  1375. "runtime": {
  1376. "lib/netstandard2.0/Volo.Abp.Data.dll": {
  1377. "related": ".pdb;.xml"
  1378. }
  1379. }
  1380. },
  1381. "Volo.Abp.Ddd.Domain/6.0.0": {
  1382. "type": "package",
  1383. "dependencies": {
  1384. "Volo.Abp.Auditing": "6.0.0",
  1385. "Volo.Abp.Data": "6.0.0",
  1386. "Volo.Abp.EventBus": "6.0.0",
  1387. "Volo.Abp.ExceptionHandling": "6.0.0",
  1388. "Volo.Abp.Guids": "6.0.0",
  1389. "Volo.Abp.MultiTenancy": "6.0.0",
  1390. "Volo.Abp.ObjectMapping": "6.0.0",
  1391. "Volo.Abp.Specifications": "6.0.0",
  1392. "Volo.Abp.Threading": "6.0.0",
  1393. "Volo.Abp.Timing": "6.0.0",
  1394. "Volo.Abp.Uow": "6.0.0"
  1395. },
  1396. "compile": {
  1397. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
  1398. "related": ".pdb;.xml"
  1399. }
  1400. },
  1401. "runtime": {
  1402. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
  1403. "related": ".pdb;.xml"
  1404. }
  1405. }
  1406. },
  1407. "Volo.Abp.DistributedLocking.Abstractions/6.0.0": {
  1408. "type": "package",
  1409. "dependencies": {
  1410. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  1411. "Volo.Abp.Core": "6.0.0"
  1412. },
  1413. "compile": {
  1414. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll": {
  1415. "related": ".pdb;.xml"
  1416. }
  1417. },
  1418. "runtime": {
  1419. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll": {
  1420. "related": ".pdb;.xml"
  1421. }
  1422. }
  1423. },
  1424. "Volo.Abp.EntityFrameworkCore/6.0.0": {
  1425. "type": "package",
  1426. "dependencies": {
  1427. "Microsoft.EntityFrameworkCore": "6.0.5",
  1428. "Microsoft.EntityFrameworkCore.Relational": "6.0.5",
  1429. "Volo.Abp.Ddd.Domain": "6.0.0",
  1430. "Volo.Abp.Json": "6.0.0"
  1431. },
  1432. "compile": {
  1433. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll": {
  1434. "related": ".pdb;.xml"
  1435. }
  1436. },
  1437. "runtime": {
  1438. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll": {
  1439. "related": ".pdb;.xml"
  1440. }
  1441. }
  1442. },
  1443. "Volo.Abp.EntityFrameworkCore.MySQL/6.0.0": {
  1444. "type": "package",
  1445. "dependencies": {
  1446. "Pomelo.EntityFrameworkCore.MySql": "6.0.0",
  1447. "Volo.Abp.EntityFrameworkCore": "6.0.0"
  1448. },
  1449. "compile": {
  1450. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll": {
  1451. "related": ".pdb;.xml"
  1452. }
  1453. },
  1454. "runtime": {
  1455. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll": {
  1456. "related": ".pdb;.xml"
  1457. }
  1458. }
  1459. },
  1460. "Volo.Abp.EventBus/6.0.0": {
  1461. "type": "package",
  1462. "dependencies": {
  1463. "Volo.Abp.BackgroundWorkers": "6.0.0",
  1464. "Volo.Abp.DistributedLocking.Abstractions": "6.0.0",
  1465. "Volo.Abp.EventBus.Abstractions": "6.0.0",
  1466. "Volo.Abp.Guids": "6.0.0",
  1467. "Volo.Abp.Json": "6.0.0",
  1468. "Volo.Abp.MultiTenancy": "6.0.0"
  1469. },
  1470. "compile": {
  1471. "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
  1472. "related": ".pdb;.xml"
  1473. }
  1474. },
  1475. "runtime": {
  1476. "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
  1477. "related": ".pdb;.xml"
  1478. }
  1479. }
  1480. },
  1481. "Volo.Abp.EventBus.Abstractions/6.0.0": {
  1482. "type": "package",
  1483. "dependencies": {
  1484. "Volo.Abp.Core": "6.0.0"
  1485. },
  1486. "compile": {
  1487. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": {
  1488. "related": ".pdb;.xml"
  1489. }
  1490. },
  1491. "runtime": {
  1492. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": {
  1493. "related": ".pdb;.xml"
  1494. }
  1495. }
  1496. },
  1497. "Volo.Abp.ExceptionHandling/6.0.0": {
  1498. "type": "package",
  1499. "dependencies": {
  1500. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  1501. "Volo.Abp.Localization": "6.0.0"
  1502. },
  1503. "compile": {
  1504. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": {
  1505. "related": ".pdb;.xml"
  1506. }
  1507. },
  1508. "runtime": {
  1509. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": {
  1510. "related": ".pdb;.xml"
  1511. }
  1512. }
  1513. },
  1514. "Volo.Abp.Guids/6.0.0": {
  1515. "type": "package",
  1516. "dependencies": {
  1517. "Volo.Abp.Core": "6.0.0"
  1518. },
  1519. "compile": {
  1520. "lib/netstandard2.0/Volo.Abp.Guids.dll": {
  1521. "related": ".pdb;.xml"
  1522. }
  1523. },
  1524. "runtime": {
  1525. "lib/netstandard2.0/Volo.Abp.Guids.dll": {
  1526. "related": ".pdb;.xml"
  1527. }
  1528. }
  1529. },
  1530. "Volo.Abp.Json/6.0.0": {
  1531. "type": "package",
  1532. "dependencies": {
  1533. "Newtonsoft.Json": "13.0.1",
  1534. "Volo.Abp.ObjectExtending": "6.0.0",
  1535. "Volo.Abp.Timing": "6.0.0"
  1536. },
  1537. "compile": {
  1538. "lib/netstandard2.0/Volo.Abp.Json.dll": {
  1539. "related": ".pdb;.xml"
  1540. }
  1541. },
  1542. "runtime": {
  1543. "lib/netstandard2.0/Volo.Abp.Json.dll": {
  1544. "related": ".pdb;.xml"
  1545. }
  1546. }
  1547. },
  1548. "Volo.Abp.Localization/6.0.0": {
  1549. "type": "package",
  1550. "dependencies": {
  1551. "Volo.Abp.Localization.Abstractions": "6.0.0",
  1552. "Volo.Abp.Settings": "6.0.0",
  1553. "Volo.Abp.VirtualFileSystem": "6.0.0"
  1554. },
  1555. "compile": {
  1556. "lib/netstandard2.0/Volo.Abp.Localization.dll": {
  1557. "related": ".pdb;.xml"
  1558. }
  1559. },
  1560. "runtime": {
  1561. "lib/netstandard2.0/Volo.Abp.Localization.dll": {
  1562. "related": ".pdb;.xml"
  1563. }
  1564. }
  1565. },
  1566. "Volo.Abp.Localization.Abstractions/6.0.0": {
  1567. "type": "package",
  1568. "dependencies": {
  1569. "Volo.Abp.Core": "6.0.0"
  1570. },
  1571. "compile": {
  1572. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
  1573. "related": ".pdb;.xml"
  1574. }
  1575. },
  1576. "runtime": {
  1577. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
  1578. "related": ".pdb;.xml"
  1579. }
  1580. }
  1581. },
  1582. "Volo.Abp.MultiTenancy/6.0.0": {
  1583. "type": "package",
  1584. "dependencies": {
  1585. "Volo.Abp.Data": "6.0.0",
  1586. "Volo.Abp.EventBus.Abstractions": "6.0.0",
  1587. "Volo.Abp.Security": "6.0.0"
  1588. },
  1589. "compile": {
  1590. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
  1591. "related": ".pdb;.xml"
  1592. }
  1593. },
  1594. "runtime": {
  1595. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
  1596. "related": ".pdb;.xml"
  1597. }
  1598. }
  1599. },
  1600. "Volo.Abp.ObjectExtending/6.0.0": {
  1601. "type": "package",
  1602. "dependencies": {
  1603. "Volo.Abp.Localization.Abstractions": "6.0.0",
  1604. "Volo.Abp.Validation.Abstractions": "6.0.0"
  1605. },
  1606. "compile": {
  1607. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
  1608. "related": ".pdb;.xml"
  1609. }
  1610. },
  1611. "runtime": {
  1612. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
  1613. "related": ".pdb;.xml"
  1614. }
  1615. }
  1616. },
  1617. "Volo.Abp.ObjectMapping/6.0.0": {
  1618. "type": "package",
  1619. "dependencies": {
  1620. "Volo.Abp.Core": "6.0.0"
  1621. },
  1622. "compile": {
  1623. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
  1624. "related": ".pdb;.xml"
  1625. }
  1626. },
  1627. "runtime": {
  1628. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
  1629. "related": ".pdb;.xml"
  1630. }
  1631. }
  1632. },
  1633. "Volo.Abp.PermissionManagement.Domain/6.0.0": {
  1634. "type": "package",
  1635. "dependencies": {
  1636. "Volo.Abp.Authorization": "6.0.0",
  1637. "Volo.Abp.Caching": "6.0.0",
  1638. "Volo.Abp.Ddd.Domain": "6.0.0",
  1639. "Volo.Abp.Json": "6.0.0",
  1640. "Volo.Abp.PermissionManagement.Domain.Shared": "6.0.0"
  1641. },
  1642. "compile": {
  1643. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {
  1644. "related": ".pdb;.xml"
  1645. }
  1646. },
  1647. "runtime": {
  1648. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {
  1649. "related": ".pdb;.xml"
  1650. }
  1651. }
  1652. },
  1653. "Volo.Abp.PermissionManagement.Domain.Shared/6.0.0": {
  1654. "type": "package",
  1655. "dependencies": {
  1656. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  1657. "Volo.Abp.Validation": "6.0.0"
  1658. },
  1659. "compile": {
  1660. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {
  1661. "related": ".pdb;.xml"
  1662. }
  1663. },
  1664. "runtime": {
  1665. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {
  1666. "related": ".pdb;.xml"
  1667. }
  1668. }
  1669. },
  1670. "Volo.Abp.PermissionManagement.EntityFrameworkCore/6.0.0": {
  1671. "type": "package",
  1672. "dependencies": {
  1673. "Volo.Abp.EntityFrameworkCore": "6.0.0",
  1674. "Volo.Abp.PermissionManagement.Domain": "6.0.0"
  1675. },
  1676. "compile": {
  1677. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll": {
  1678. "related": ".pdb;.xml"
  1679. }
  1680. },
  1681. "runtime": {
  1682. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll": {
  1683. "related": ".pdb;.xml"
  1684. }
  1685. }
  1686. },
  1687. "Volo.Abp.Security/6.0.0": {
  1688. "type": "package",
  1689. "dependencies": {
  1690. "Volo.Abp.Core": "6.0.0"
  1691. },
  1692. "compile": {
  1693. "lib/netstandard2.0/Volo.Abp.Security.dll": {
  1694. "related": ".pdb;.xml"
  1695. }
  1696. },
  1697. "runtime": {
  1698. "lib/netstandard2.0/Volo.Abp.Security.dll": {
  1699. "related": ".pdb;.xml"
  1700. }
  1701. }
  1702. },
  1703. "Volo.Abp.Serialization/6.0.0": {
  1704. "type": "package",
  1705. "dependencies": {
  1706. "Volo.Abp.Core": "6.0.0"
  1707. },
  1708. "compile": {
  1709. "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
  1710. "related": ".pdb;.xml"
  1711. }
  1712. },
  1713. "runtime": {
  1714. "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
  1715. "related": ".pdb;.xml"
  1716. }
  1717. }
  1718. },
  1719. "Volo.Abp.Settings/6.0.0": {
  1720. "type": "package",
  1721. "dependencies": {
  1722. "Volo.Abp.Localization.Abstractions": "6.0.0",
  1723. "Volo.Abp.MultiTenancy": "6.0.0",
  1724. "Volo.Abp.Security": "6.0.0"
  1725. },
  1726. "compile": {
  1727. "lib/netstandard2.0/Volo.Abp.Settings.dll": {
  1728. "related": ".pdb;.xml"
  1729. }
  1730. },
  1731. "runtime": {
  1732. "lib/netstandard2.0/Volo.Abp.Settings.dll": {
  1733. "related": ".pdb;.xml"
  1734. }
  1735. }
  1736. },
  1737. "Volo.Abp.Specifications/6.0.0": {
  1738. "type": "package",
  1739. "dependencies": {
  1740. "Volo.Abp.Core": "6.0.0"
  1741. },
  1742. "compile": {
  1743. "lib/netstandard2.0/Volo.Abp.Specifications.dll": {
  1744. "related": ".pdb;.xml"
  1745. }
  1746. },
  1747. "runtime": {
  1748. "lib/netstandard2.0/Volo.Abp.Specifications.dll": {
  1749. "related": ".pdb;.xml"
  1750. }
  1751. }
  1752. },
  1753. "Volo.Abp.Threading/6.0.0": {
  1754. "type": "package",
  1755. "dependencies": {
  1756. "Volo.Abp.Core": "6.0.0"
  1757. },
  1758. "compile": {
  1759. "lib/netstandard2.0/Volo.Abp.Threading.dll": {
  1760. "related": ".pdb;.xml"
  1761. }
  1762. },
  1763. "runtime": {
  1764. "lib/netstandard2.0/Volo.Abp.Threading.dll": {
  1765. "related": ".pdb;.xml"
  1766. }
  1767. }
  1768. },
  1769. "Volo.Abp.Timing/6.0.0": {
  1770. "type": "package",
  1771. "dependencies": {
  1772. "TimeZoneConverter": "5.0.0",
  1773. "Volo.Abp.Localization": "6.0.0",
  1774. "Volo.Abp.Settings": "6.0.0"
  1775. },
  1776. "compile": {
  1777. "lib/netstandard2.0/Volo.Abp.Timing.dll": {
  1778. "related": ".pdb;.xml"
  1779. }
  1780. },
  1781. "runtime": {
  1782. "lib/netstandard2.0/Volo.Abp.Timing.dll": {
  1783. "related": ".pdb;.xml"
  1784. }
  1785. }
  1786. },
  1787. "Volo.Abp.Uow/6.0.0": {
  1788. "type": "package",
  1789. "dependencies": {
  1790. "Volo.Abp.Core": "6.0.0"
  1791. },
  1792. "compile": {
  1793. "lib/netstandard2.0/Volo.Abp.Uow.dll": {
  1794. "related": ".pdb;.xml"
  1795. }
  1796. },
  1797. "runtime": {
  1798. "lib/netstandard2.0/Volo.Abp.Uow.dll": {
  1799. "related": ".pdb;.xml"
  1800. }
  1801. }
  1802. },
  1803. "Volo.Abp.Validation/6.0.0": {
  1804. "type": "package",
  1805. "dependencies": {
  1806. "Volo.Abp.Localization": "6.0.0",
  1807. "Volo.Abp.Validation.Abstractions": "6.0.0"
  1808. },
  1809. "compile": {
  1810. "lib/netstandard2.0/Volo.Abp.Validation.dll": {
  1811. "related": ".pdb;.xml"
  1812. }
  1813. },
  1814. "runtime": {
  1815. "lib/netstandard2.0/Volo.Abp.Validation.dll": {
  1816. "related": ".pdb;.xml"
  1817. }
  1818. }
  1819. },
  1820. "Volo.Abp.Validation.Abstractions/6.0.0": {
  1821. "type": "package",
  1822. "dependencies": {
  1823. "Volo.Abp.Core": "6.0.0"
  1824. },
  1825. "compile": {
  1826. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
  1827. "related": ".pdb;.xml"
  1828. }
  1829. },
  1830. "runtime": {
  1831. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
  1832. "related": ".pdb;.xml"
  1833. }
  1834. }
  1835. },
  1836. "Volo.Abp.VirtualFileSystem/6.0.0": {
  1837. "type": "package",
  1838. "dependencies": {
  1839. "Microsoft.Extensions.FileProviders.Composite": "6.0.0",
  1840. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  1841. "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
  1842. "Volo.Abp.Core": "6.0.0"
  1843. },
  1844. "compile": {
  1845. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
  1846. "related": ".pdb;.xml"
  1847. }
  1848. },
  1849. "runtime": {
  1850. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
  1851. "related": ".pdb;.xml"
  1852. }
  1853. }
  1854. },
  1855. "Procurement.Domain/1.0.0": {
  1856. "type": "project",
  1857. "framework": ".NETCoreApp,Version=v6.0",
  1858. "dependencies": {
  1859. "Volo.Abp.Ddd.Domain": "6.0.0",
  1860. "Volo.Abp.EntityFrameworkCore": "6.0.0",
  1861. "Volo.Abp.Localization": "6.0.0",
  1862. "Volo.Abp.Validation": "6.0.0"
  1863. },
  1864. "compile": {
  1865. "bin/placeholder/Procurement.Domain.dll": {}
  1866. },
  1867. "runtime": {
  1868. "bin/placeholder/Procurement.Domain.dll": {}
  1869. }
  1870. }
  1871. }
  1872. },
  1873. "libraries": {
  1874. "Humanizer.Core/2.8.26": {
  1875. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  1876. "type": "package",
  1877. "path": "humanizer.core/2.8.26",
  1878. "files": [
  1879. ".nupkg.metadata",
  1880. ".signature.p7s",
  1881. "humanizer.core.2.8.26.nupkg.sha512",
  1882. "humanizer.core.nuspec",
  1883. "lib/netstandard1.0/Humanizer.dll",
  1884. "lib/netstandard1.0/Humanizer.xml",
  1885. "lib/netstandard2.0/Humanizer.dll",
  1886. "lib/netstandard2.0/Humanizer.xml",
  1887. "logo.png"
  1888. ]
  1889. },
  1890. "JetBrains.Annotations/2022.1.0": {
  1891. "sha512": "ASfpoFJxiRsC9Xc4TWuPM41Zb/gl64xwfMOhnOZ3RnVWGYIZchjpWQV5zshJgoc/ZxVtgjaF7b577lURj7E6ig==",
  1892. "type": "package",
  1893. "path": "jetbrains.annotations/2022.1.0",
  1894. "files": [
  1895. ".nupkg.metadata",
  1896. ".signature.p7s",
  1897. "icon.png",
  1898. "jetbrains.annotations.2022.1.0.nupkg.sha512",
  1899. "jetbrains.annotations.nuspec",
  1900. "lib/net20/JetBrains.Annotations.dll",
  1901. "lib/net20/JetBrains.Annotations.xml",
  1902. "lib/netstandard1.0/JetBrains.Annotations.deps.json",
  1903. "lib/netstandard1.0/JetBrains.Annotations.dll",
  1904. "lib/netstandard1.0/JetBrains.Annotations.xml",
  1905. "lib/netstandard2.0/JetBrains.Annotations.deps.json",
  1906. "lib/netstandard2.0/JetBrains.Annotations.dll",
  1907. "lib/netstandard2.0/JetBrains.Annotations.xml",
  1908. "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
  1909. "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
  1910. ]
  1911. },
  1912. "Microsoft.AspNetCore.Authorization/6.0.5": {
  1913. "sha512": "T3J4Z4xK/mmJlMv/j7Cs1PZjRLh1fGsvHay3RNBNooP0qhHCk3UnU+WgBvcGApZFnEfeyOEGZBHZv5gb1RrDLA==",
  1914. "type": "package",
  1915. "path": "microsoft.aspnetcore.authorization/6.0.5",
  1916. "files": [
  1917. ".nupkg.metadata",
  1918. ".signature.p7s",
  1919. "Icon.png",
  1920. "THIRD-PARTY-NOTICES.TXT",
  1921. "lib/net461/Microsoft.AspNetCore.Authorization.dll",
  1922. "lib/net461/Microsoft.AspNetCore.Authorization.xml",
  1923. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll",
  1924. "lib/net6.0/Microsoft.AspNetCore.Authorization.xml",
  1925. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  1926. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  1927. "microsoft.aspnetcore.authorization.6.0.5.nupkg.sha512",
  1928. "microsoft.aspnetcore.authorization.nuspec"
  1929. ]
  1930. },
  1931. "Microsoft.AspNetCore.Metadata/6.0.5": {
  1932. "sha512": "4VRJoJa/EbncxQTAzM6abqQUUbNrohg5MC1glZ1R1lzzXJM2CdXiRKvcpAfn3luAwPzkwJtHejuLgI6Osn0aDA==",
  1933. "type": "package",
  1934. "path": "microsoft.aspnetcore.metadata/6.0.5",
  1935. "files": [
  1936. ".nupkg.metadata",
  1937. ".signature.p7s",
  1938. "Icon.png",
  1939. "THIRD-PARTY-NOTICES.TXT",
  1940. "lib/net461/Microsoft.AspNetCore.Metadata.dll",
  1941. "lib/net461/Microsoft.AspNetCore.Metadata.xml",
  1942. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll",
  1943. "lib/net6.0/Microsoft.AspNetCore.Metadata.xml",
  1944. "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll",
  1945. "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml",
  1946. "microsoft.aspnetcore.metadata.6.0.5.nupkg.sha512",
  1947. "microsoft.aspnetcore.metadata.nuspec"
  1948. ]
  1949. },
  1950. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  1951. "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
  1952. "type": "package",
  1953. "path": "microsoft.bcl.asyncinterfaces/6.0.0",
  1954. "files": [
  1955. ".nupkg.metadata",
  1956. ".signature.p7s",
  1957. "Icon.png",
  1958. "LICENSE.TXT",
  1959. "THIRD-PARTY-NOTICES.TXT",
  1960. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  1961. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  1962. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  1963. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  1964. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  1965. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  1966. "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
  1967. "microsoft.bcl.asyncinterfaces.nuspec",
  1968. "useSharedDesignerContext.txt"
  1969. ]
  1970. },
  1971. "Microsoft.EntityFrameworkCore/6.0.5": {
  1972. "sha512": "hP5J3EvpVdZmCn1D3ovedphvZrIn3OXZaBZfEnCkSCqqbqAu6xzwbNqwRkik0y4R6zOOf4eLh1riwjy4eAUlZA==",
  1973. "type": "package",
  1974. "path": "microsoft.entityframeworkcore/6.0.5",
  1975. "files": [
  1976. ".nupkg.metadata",
  1977. ".signature.p7s",
  1978. "Icon.png",
  1979. "lib/net6.0/Microsoft.EntityFrameworkCore.dll",
  1980. "lib/net6.0/Microsoft.EntityFrameworkCore.xml",
  1981. "microsoft.entityframeworkcore.6.0.5.nupkg.sha512",
  1982. "microsoft.entityframeworkcore.nuspec"
  1983. ]
  1984. },
  1985. "Microsoft.EntityFrameworkCore.Abstractions/6.0.5": {
  1986. "sha512": "Q3/fKW6XCTfnDk4fYP2BJZi84cD2SuCPkP3A3QqxvCQcXbX90bfSLzVIsoMXzigHGJgZUJ+Un7QodT5Nvk0+Eg==",
  1987. "type": "package",
  1988. "path": "microsoft.entityframeworkcore.abstractions/6.0.5",
  1989. "files": [
  1990. ".nupkg.metadata",
  1991. ".signature.p7s",
  1992. "Icon.png",
  1993. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  1994. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  1995. "microsoft.entityframeworkcore.abstractions.6.0.5.nupkg.sha512",
  1996. "microsoft.entityframeworkcore.abstractions.nuspec"
  1997. ]
  1998. },
  1999. "Microsoft.EntityFrameworkCore.Analyzers/6.0.5": {
  2000. "sha512": "QUeDIhs+O+MoDEc3k60mNyVDbwyDURCqZQlZoKShuZUcSfXSrDMbHKuFSxBIDNQBt092qSjfnwf7w0Ua/IB3Zw==",
  2001. "type": "package",
  2002. "path": "microsoft.entityframeworkcore.analyzers/6.0.5",
  2003. "files": [
  2004. ".nupkg.metadata",
  2005. ".signature.p7s",
  2006. "Icon.png",
  2007. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2008. "lib/netstandard2.0/_._",
  2009. "microsoft.entityframeworkcore.analyzers.6.0.5.nupkg.sha512",
  2010. "microsoft.entityframeworkcore.analyzers.nuspec"
  2011. ]
  2012. },
  2013. "Microsoft.EntityFrameworkCore.Design/6.0.3": {
  2014. "sha512": "Gc3XhQ4vLK4rlGpZi8zaa4bl0t894QxqMXHSbDSsx8d7ghRaLbGIH1tQawpo2hriU/q918eepbCyoISD89Xx1w==",
  2015. "type": "package",
  2016. "path": "microsoft.entityframeworkcore.design/6.0.3",
  2017. "files": [
  2018. ".nupkg.metadata",
  2019. ".signature.p7s",
  2020. "Icon.png",
  2021. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props",
  2022. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll",
  2023. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml",
  2024. "microsoft.entityframeworkcore.design.6.0.3.nupkg.sha512",
  2025. "microsoft.entityframeworkcore.design.nuspec"
  2026. ]
  2027. },
  2028. "Microsoft.EntityFrameworkCore.Relational/6.0.5": {
  2029. "sha512": "vhAQizlAgvPfurkh9XysNaFc/g3WPXtSka3Y1rXuQdnT//p16CDKt9lO9h+rYmooD+cA7TijSxwqck4GApDT/Q==",
  2030. "type": "package",
  2031. "path": "microsoft.entityframeworkcore.relational/6.0.5",
  2032. "files": [
  2033. ".nupkg.metadata",
  2034. ".signature.p7s",
  2035. "Icon.png",
  2036. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
  2037. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
  2038. "microsoft.entityframeworkcore.relational.6.0.5.nupkg.sha512",
  2039. "microsoft.entityframeworkcore.relational.nuspec"
  2040. ]
  2041. },
  2042. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  2043. "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  2044. "type": "package",
  2045. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  2046. "files": [
  2047. ".nupkg.metadata",
  2048. ".signature.p7s",
  2049. "Icon.png",
  2050. "LICENSE.TXT",
  2051. "THIRD-PARTY-NOTICES.TXT",
  2052. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  2053. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  2054. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2055. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2056. "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
  2057. "microsoft.extensions.caching.abstractions.nuspec",
  2058. "useSharedDesignerContext.txt"
  2059. ]
  2060. },
  2061. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  2062. "sha512": "B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==",
  2063. "type": "package",
  2064. "path": "microsoft.extensions.caching.memory/6.0.1",
  2065. "files": [
  2066. ".nupkg.metadata",
  2067. ".signature.p7s",
  2068. "Icon.png",
  2069. "LICENSE.TXT",
  2070. "THIRD-PARTY-NOTICES.TXT",
  2071. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  2072. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  2073. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2074. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2075. "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512",
  2076. "microsoft.extensions.caching.memory.nuspec",
  2077. "useSharedDesignerContext.txt"
  2078. ]
  2079. },
  2080. "Microsoft.Extensions.Configuration/6.0.0": {
  2081. "sha512": "tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==",
  2082. "type": "package",
  2083. "path": "microsoft.extensions.configuration/6.0.0",
  2084. "files": [
  2085. ".nupkg.metadata",
  2086. ".signature.p7s",
  2087. "Icon.png",
  2088. "LICENSE.TXT",
  2089. "THIRD-PARTY-NOTICES.TXT",
  2090. "lib/net461/Microsoft.Extensions.Configuration.dll",
  2091. "lib/net461/Microsoft.Extensions.Configuration.xml",
  2092. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  2093. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  2094. "microsoft.extensions.configuration.6.0.0.nupkg.sha512",
  2095. "microsoft.extensions.configuration.nuspec",
  2096. "useSharedDesignerContext.txt"
  2097. ]
  2098. },
  2099. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  2100. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  2101. "type": "package",
  2102. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  2103. "files": [
  2104. ".nupkg.metadata",
  2105. ".signature.p7s",
  2106. "Icon.png",
  2107. "LICENSE.TXT",
  2108. "THIRD-PARTY-NOTICES.TXT",
  2109. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  2110. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  2111. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2112. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2113. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  2114. "microsoft.extensions.configuration.abstractions.nuspec",
  2115. "useSharedDesignerContext.txt"
  2116. ]
  2117. },
  2118. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  2119. "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==",
  2120. "type": "package",
  2121. "path": "microsoft.extensions.configuration.binder/6.0.0",
  2122. "files": [
  2123. ".nupkg.metadata",
  2124. ".signature.p7s",
  2125. "Icon.png",
  2126. "LICENSE.TXT",
  2127. "THIRD-PARTY-NOTICES.TXT",
  2128. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  2129. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  2130. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  2131. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  2132. "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512",
  2133. "microsoft.extensions.configuration.binder.nuspec",
  2134. "useSharedDesignerContext.txt"
  2135. ]
  2136. },
  2137. "Microsoft.Extensions.Configuration.CommandLine/6.0.0": {
  2138. "sha512": "3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==",
  2139. "type": "package",
  2140. "path": "microsoft.extensions.configuration.commandline/6.0.0",
  2141. "files": [
  2142. ".nupkg.metadata",
  2143. ".signature.p7s",
  2144. "Icon.png",
  2145. "LICENSE.TXT",
  2146. "THIRD-PARTY-NOTICES.TXT",
  2147. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  2148. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  2149. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  2150. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  2151. "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512",
  2152. "microsoft.extensions.configuration.commandline.nuspec",
  2153. "useSharedDesignerContext.txt"
  2154. ]
  2155. },
  2156. "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.1": {
  2157. "sha512": "pnyXV1LFOsYjGveuC07xp0YHIyGq7jRq5Ncb5zrrIieMLWVwgMyYxcOH0jTnBedDT4Gh1QinSqsjqzcieHk1og==",
  2158. "type": "package",
  2159. "path": "microsoft.extensions.configuration.environmentvariables/6.0.1",
  2160. "files": [
  2161. ".nupkg.metadata",
  2162. ".signature.p7s",
  2163. "Icon.png",
  2164. "LICENSE.TXT",
  2165. "THIRD-PARTY-NOTICES.TXT",
  2166. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  2167. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  2168. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  2169. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  2170. "microsoft.extensions.configuration.environmentvariables.6.0.1.nupkg.sha512",
  2171. "microsoft.extensions.configuration.environmentvariables.nuspec",
  2172. "useSharedDesignerContext.txt"
  2173. ]
  2174. },
  2175. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  2176. "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==",
  2177. "type": "package",
  2178. "path": "microsoft.extensions.configuration.fileextensions/6.0.0",
  2179. "files": [
  2180. ".nupkg.metadata",
  2181. ".signature.p7s",
  2182. "Icon.png",
  2183. "LICENSE.TXT",
  2184. "THIRD-PARTY-NOTICES.TXT",
  2185. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  2186. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  2187. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  2188. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  2189. "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512",
  2190. "microsoft.extensions.configuration.fileextensions.nuspec",
  2191. "useSharedDesignerContext.txt"
  2192. ]
  2193. },
  2194. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  2195. "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==",
  2196. "type": "package",
  2197. "path": "microsoft.extensions.configuration.json/6.0.0",
  2198. "files": [
  2199. ".nupkg.metadata",
  2200. ".signature.p7s",
  2201. "Icon.png",
  2202. "LICENSE.TXT",
  2203. "THIRD-PARTY-NOTICES.TXT",
  2204. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  2205. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  2206. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  2207. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  2208. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  2209. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  2210. "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512",
  2211. "microsoft.extensions.configuration.json.nuspec",
  2212. "useSharedDesignerContext.txt"
  2213. ]
  2214. },
  2215. "Microsoft.Extensions.Configuration.UserSecrets/6.0.1": {
  2216. "sha512": "Fy8yr4V6obi7ZxvKYI1i85jqtwMq8tqyxQVZpRSkgeA8enqy/KvBIMdcuNdznlxQMZa72mvbHqb7vbg4Pyx95w==",
  2217. "type": "package",
  2218. "path": "microsoft.extensions.configuration.usersecrets/6.0.1",
  2219. "files": [
  2220. ".nupkg.metadata",
  2221. ".signature.p7s",
  2222. "Icon.png",
  2223. "LICENSE.TXT",
  2224. "THIRD-PARTY-NOTICES.TXT",
  2225. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  2226. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  2227. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  2228. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  2229. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  2230. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  2231. "microsoft.extensions.configuration.usersecrets.6.0.1.nupkg.sha512",
  2232. "microsoft.extensions.configuration.usersecrets.nuspec",
  2233. "useSharedDesignerContext.txt"
  2234. ]
  2235. },
  2236. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  2237. "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  2238. "type": "package",
  2239. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  2240. "files": [
  2241. ".nupkg.metadata",
  2242. ".signature.p7s",
  2243. "Icon.png",
  2244. "LICENSE.TXT",
  2245. "THIRD-PARTY-NOTICES.TXT",
  2246. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  2247. "buildTransitive/netcoreapp3.1/_._",
  2248. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  2249. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  2250. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  2251. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  2252. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2253. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2254. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2255. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2256. "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
  2257. "microsoft.extensions.dependencyinjection.nuspec",
  2258. "useSharedDesignerContext.txt"
  2259. ]
  2260. },
  2261. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  2262. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  2263. "type": "package",
  2264. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  2265. "files": [
  2266. ".nupkg.metadata",
  2267. ".signature.p7s",
  2268. "Icon.png",
  2269. "LICENSE.TXT",
  2270. "THIRD-PARTY-NOTICES.TXT",
  2271. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2272. "buildTransitive/netcoreapp3.1/_._",
  2273. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2274. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2275. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2276. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2277. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2278. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2279. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2280. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2281. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  2282. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2283. "useSharedDesignerContext.txt"
  2284. ]
  2285. },
  2286. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  2287. "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==",
  2288. "type": "package",
  2289. "path": "microsoft.extensions.fileproviders.abstractions/6.0.0",
  2290. "files": [
  2291. ".nupkg.metadata",
  2292. ".signature.p7s",
  2293. "Icon.png",
  2294. "LICENSE.TXT",
  2295. "THIRD-PARTY-NOTICES.TXT",
  2296. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  2297. "buildTransitive/netcoreapp3.1/_._",
  2298. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2299. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2300. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2301. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2302. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  2303. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  2304. "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512",
  2305. "microsoft.extensions.fileproviders.abstractions.nuspec",
  2306. "useSharedDesignerContext.txt"
  2307. ]
  2308. },
  2309. "Microsoft.Extensions.FileProviders.Composite/6.0.0": {
  2310. "sha512": "Cx8K9xnN95wbvKa/KTyDBVBaNUsS9L8IkKt2dKMkcyj0wOBe+xVMwyNR4ySmpxBK3b0PuP7tW6UtroXIlRC3uQ==",
  2311. "type": "package",
  2312. "path": "microsoft.extensions.fileproviders.composite/6.0.0",
  2313. "files": [
  2314. ".nupkg.metadata",
  2315. ".signature.p7s",
  2316. "Icon.png",
  2317. "LICENSE.TXT",
  2318. "THIRD-PARTY-NOTICES.TXT",
  2319. "lib/net461/Microsoft.Extensions.FileProviders.Composite.dll",
  2320. "lib/net461/Microsoft.Extensions.FileProviders.Composite.xml",
  2321. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
  2322. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
  2323. "microsoft.extensions.fileproviders.composite.6.0.0.nupkg.sha512",
  2324. "microsoft.extensions.fileproviders.composite.nuspec",
  2325. "useSharedDesignerContext.txt"
  2326. ]
  2327. },
  2328. "Microsoft.Extensions.FileProviders.Embedded/6.0.5": {
  2329. "sha512": "z7M3GpcYfKw1FYUGcurTbv/v0ZZ95LSMOZOjOtYLUztzUIUZZ61H5NFjLXjeQ8G72zxrVrt+jubb4MZGvm0EQw==",
  2330. "type": "package",
  2331. "path": "microsoft.extensions.fileproviders.embedded/6.0.5",
  2332. "files": [
  2333. ".nupkg.metadata",
  2334. ".signature.p7s",
  2335. "Icon.png",
  2336. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props",
  2337. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets",
  2338. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props",
  2339. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets",
  2340. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.dll",
  2341. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.xml",
  2342. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  2343. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  2344. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  2345. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  2346. "microsoft.extensions.fileproviders.embedded.6.0.5.nupkg.sha512",
  2347. "microsoft.extensions.fileproviders.embedded.nuspec",
  2348. "tasks/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll"
  2349. ]
  2350. },
  2351. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  2352. "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==",
  2353. "type": "package",
  2354. "path": "microsoft.extensions.fileproviders.physical/6.0.0",
  2355. "files": [
  2356. ".nupkg.metadata",
  2357. ".signature.p7s",
  2358. "Icon.png",
  2359. "LICENSE.TXT",
  2360. "THIRD-PARTY-NOTICES.TXT",
  2361. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
  2362. "buildTransitive/netcoreapp3.1/_._",
  2363. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  2364. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  2365. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
  2366. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
  2367. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  2368. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  2369. "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512",
  2370. "microsoft.extensions.fileproviders.physical.nuspec",
  2371. "useSharedDesignerContext.txt"
  2372. ]
  2373. },
  2374. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  2375. "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==",
  2376. "type": "package",
  2377. "path": "microsoft.extensions.filesystemglobbing/6.0.0",
  2378. "files": [
  2379. ".nupkg.metadata",
  2380. ".signature.p7s",
  2381. "Icon.png",
  2382. "LICENSE.TXT",
  2383. "THIRD-PARTY-NOTICES.TXT",
  2384. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
  2385. "buildTransitive/netcoreapp3.1/_._",
  2386. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  2387. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  2388. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  2389. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  2390. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  2391. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  2392. "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512",
  2393. "microsoft.extensions.filesystemglobbing.nuspec",
  2394. "useSharedDesignerContext.txt"
  2395. ]
  2396. },
  2397. "Microsoft.Extensions.Hosting.Abstractions/6.0.0": {
  2398. "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==",
  2399. "type": "package",
  2400. "path": "microsoft.extensions.hosting.abstractions/6.0.0",
  2401. "files": [
  2402. ".nupkg.metadata",
  2403. ".signature.p7s",
  2404. "Icon.png",
  2405. "LICENSE.TXT",
  2406. "THIRD-PARTY-NOTICES.TXT",
  2407. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  2408. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  2409. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  2410. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  2411. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  2412. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  2413. "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512",
  2414. "microsoft.extensions.hosting.abstractions.nuspec",
  2415. "useSharedDesignerContext.txt"
  2416. ]
  2417. },
  2418. "Microsoft.Extensions.Localization/6.0.5": {
  2419. "sha512": "mbNGvpCgCYD6o+2IFNT3EZ+AQE8W0yI9GXmXDYWtCXclhvjKn3RJ37QrMRXqzNqOBkWzdiJ/HINVuccrJEenNA==",
  2420. "type": "package",
  2421. "path": "microsoft.extensions.localization/6.0.5",
  2422. "files": [
  2423. ".nupkg.metadata",
  2424. ".signature.p7s",
  2425. "Icon.png",
  2426. "THIRD-PARTY-NOTICES.TXT",
  2427. "lib/net461/Microsoft.Extensions.Localization.dll",
  2428. "lib/net461/Microsoft.Extensions.Localization.xml",
  2429. "lib/net6.0/Microsoft.Extensions.Localization.dll",
  2430. "lib/net6.0/Microsoft.Extensions.Localization.xml",
  2431. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
  2432. "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
  2433. "microsoft.extensions.localization.6.0.5.nupkg.sha512",
  2434. "microsoft.extensions.localization.nuspec"
  2435. ]
  2436. },
  2437. "Microsoft.Extensions.Localization.Abstractions/6.0.5": {
  2438. "sha512": "PzYBMoQk4i1dOC2szAy90hPLBIe6YWdiaGxqoRdWesiJbZwiGCd2syC7kkePp2/ef3f8o202YRMt0tzbLP50rw==",
  2439. "type": "package",
  2440. "path": "microsoft.extensions.localization.abstractions/6.0.5",
  2441. "files": [
  2442. ".nupkg.metadata",
  2443. ".signature.p7s",
  2444. "Icon.png",
  2445. "THIRD-PARTY-NOTICES.TXT",
  2446. "lib/net461/Microsoft.Extensions.Localization.Abstractions.dll",
  2447. "lib/net461/Microsoft.Extensions.Localization.Abstractions.xml",
  2448. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll",
  2449. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.xml",
  2450. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
  2451. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
  2452. "microsoft.extensions.localization.abstractions.6.0.5.nupkg.sha512",
  2453. "microsoft.extensions.localization.abstractions.nuspec"
  2454. ]
  2455. },
  2456. "Microsoft.Extensions.Logging/6.0.0": {
  2457. "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  2458. "type": "package",
  2459. "path": "microsoft.extensions.logging/6.0.0",
  2460. "files": [
  2461. ".nupkg.metadata",
  2462. ".signature.p7s",
  2463. "Icon.png",
  2464. "LICENSE.TXT",
  2465. "THIRD-PARTY-NOTICES.TXT",
  2466. "lib/net461/Microsoft.Extensions.Logging.dll",
  2467. "lib/net461/Microsoft.Extensions.Logging.xml",
  2468. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2469. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2470. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  2471. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  2472. "microsoft.extensions.logging.6.0.0.nupkg.sha512",
  2473. "microsoft.extensions.logging.nuspec",
  2474. "useSharedDesignerContext.txt"
  2475. ]
  2476. },
  2477. "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
  2478. "sha512": "dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==",
  2479. "type": "package",
  2480. "path": "microsoft.extensions.logging.abstractions/6.0.1",
  2481. "files": [
  2482. ".nupkg.metadata",
  2483. ".signature.p7s",
  2484. "Icon.png",
  2485. "LICENSE.TXT",
  2486. "THIRD-PARTY-NOTICES.TXT",
  2487. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  2488. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  2489. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  2490. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  2491. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2492. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  2493. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  2494. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  2495. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  2496. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  2497. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  2498. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2499. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  2500. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  2501. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  2502. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  2503. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  2504. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  2505. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2506. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  2507. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  2508. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  2509. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  2510. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  2511. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  2512. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2513. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  2514. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  2515. "build/Microsoft.Extensions.Logging.Abstractions.targets",
  2516. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  2517. "buildTransitive/netcoreapp3.1/_._",
  2518. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  2519. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  2520. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2521. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2522. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2523. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2524. "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512",
  2525. "microsoft.extensions.logging.abstractions.nuspec",
  2526. "useSharedDesignerContext.txt"
  2527. ]
  2528. },
  2529. "Microsoft.Extensions.Options/6.0.0": {
  2530. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  2531. "type": "package",
  2532. "path": "microsoft.extensions.options/6.0.0",
  2533. "files": [
  2534. ".nupkg.metadata",
  2535. ".signature.p7s",
  2536. "Icon.png",
  2537. "LICENSE.TXT",
  2538. "THIRD-PARTY-NOTICES.TXT",
  2539. "lib/net461/Microsoft.Extensions.Options.dll",
  2540. "lib/net461/Microsoft.Extensions.Options.xml",
  2541. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2542. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2543. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  2544. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  2545. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  2546. "microsoft.extensions.options.nuspec",
  2547. "useSharedDesignerContext.txt"
  2548. ]
  2549. },
  2550. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  2551. "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==",
  2552. "type": "package",
  2553. "path": "microsoft.extensions.options.configurationextensions/6.0.0",
  2554. "files": [
  2555. ".nupkg.metadata",
  2556. ".signature.p7s",
  2557. "Icon.png",
  2558. "LICENSE.TXT",
  2559. "THIRD-PARTY-NOTICES.TXT",
  2560. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  2561. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  2562. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  2563. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  2564. "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512",
  2565. "microsoft.extensions.options.configurationextensions.nuspec",
  2566. "useSharedDesignerContext.txt"
  2567. ]
  2568. },
  2569. "Microsoft.Extensions.Primitives/6.0.0": {
  2570. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  2571. "type": "package",
  2572. "path": "microsoft.extensions.primitives/6.0.0",
  2573. "files": [
  2574. ".nupkg.metadata",
  2575. ".signature.p7s",
  2576. "Icon.png",
  2577. "LICENSE.TXT",
  2578. "THIRD-PARTY-NOTICES.TXT",
  2579. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  2580. "buildTransitive/netcoreapp3.1/_._",
  2581. "lib/net461/Microsoft.Extensions.Primitives.dll",
  2582. "lib/net461/Microsoft.Extensions.Primitives.xml",
  2583. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  2584. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  2585. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  2586. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  2587. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2588. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2589. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  2590. "microsoft.extensions.primitives.nuspec",
  2591. "useSharedDesignerContext.txt"
  2592. ]
  2593. },
  2594. "Microsoft.NETCore.Platforms/1.1.0": {
  2595. "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  2596. "type": "package",
  2597. "path": "microsoft.netcore.platforms/1.1.0",
  2598. "files": [
  2599. ".nupkg.metadata",
  2600. ".signature.p7s",
  2601. "ThirdPartyNotices.txt",
  2602. "dotnet_library_license.txt",
  2603. "lib/netstandard1.0/_._",
  2604. "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
  2605. "microsoft.netcore.platforms.nuspec",
  2606. "runtime.json"
  2607. ]
  2608. },
  2609. "Microsoft.NETCore.Targets/1.1.0": {
  2610. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2611. "type": "package",
  2612. "path": "microsoft.netcore.targets/1.1.0",
  2613. "files": [
  2614. ".nupkg.metadata",
  2615. "ThirdPartyNotices.txt",
  2616. "dotnet_library_license.txt",
  2617. "lib/netstandard1.0/_._",
  2618. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  2619. "microsoft.netcore.targets.nuspec",
  2620. "runtime.json"
  2621. ]
  2622. },
  2623. "MySqlConnector/2.0.0": {
  2624. "sha512": "EY0KXqQas+QvdZQU0NPkqBSfJitWAl8IUCg0v/Qn0P7f/KApJTFJFm8czYWoDPyewUjPHrAnE/cSYzzSFGc8Ng==",
  2625. "type": "package",
  2626. "path": "mysqlconnector/2.0.0",
  2627. "files": [
  2628. ".nupkg.metadata",
  2629. ".signature.p7s",
  2630. "README.md",
  2631. "lib/net45/MySqlConnector.dll",
  2632. "lib/net45/MySqlConnector.xml",
  2633. "lib/net461/MySqlConnector.dll",
  2634. "lib/net461/MySqlConnector.xml",
  2635. "lib/net471/MySqlConnector.dll",
  2636. "lib/net471/MySqlConnector.xml",
  2637. "lib/net5.0/MySqlConnector.dll",
  2638. "lib/net5.0/MySqlConnector.xml",
  2639. "lib/net6.0/MySqlConnector.dll",
  2640. "lib/net6.0/MySqlConnector.xml",
  2641. "lib/netcoreapp3.1/MySqlConnector.dll",
  2642. "lib/netcoreapp3.1/MySqlConnector.xml",
  2643. "lib/netstandard2.0/MySqlConnector.dll",
  2644. "lib/netstandard2.0/MySqlConnector.xml",
  2645. "lib/netstandard2.1/MySqlConnector.dll",
  2646. "lib/netstandard2.1/MySqlConnector.xml",
  2647. "logo.png",
  2648. "mysqlconnector.2.0.0.nupkg.sha512",
  2649. "mysqlconnector.nuspec"
  2650. ]
  2651. },
  2652. "Newtonsoft.Json/13.0.1": {
  2653. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  2654. "type": "package",
  2655. "path": "newtonsoft.json/13.0.1",
  2656. "files": [
  2657. ".nupkg.metadata",
  2658. ".signature.p7s",
  2659. "LICENSE.md",
  2660. "lib/net20/Newtonsoft.Json.dll",
  2661. "lib/net20/Newtonsoft.Json.xml",
  2662. "lib/net35/Newtonsoft.Json.dll",
  2663. "lib/net35/Newtonsoft.Json.xml",
  2664. "lib/net40/Newtonsoft.Json.dll",
  2665. "lib/net40/Newtonsoft.Json.xml",
  2666. "lib/net45/Newtonsoft.Json.dll",
  2667. "lib/net45/Newtonsoft.Json.xml",
  2668. "lib/netstandard1.0/Newtonsoft.Json.dll",
  2669. "lib/netstandard1.0/Newtonsoft.Json.xml",
  2670. "lib/netstandard1.3/Newtonsoft.Json.dll",
  2671. "lib/netstandard1.3/Newtonsoft.Json.xml",
  2672. "lib/netstandard2.0/Newtonsoft.Json.dll",
  2673. "lib/netstandard2.0/Newtonsoft.Json.xml",
  2674. "newtonsoft.json.13.0.1.nupkg.sha512",
  2675. "newtonsoft.json.nuspec",
  2676. "packageIcon.png"
  2677. ]
  2678. },
  2679. "Nito.AsyncEx.Context/5.1.2": {
  2680. "sha512": "rMwL7Nj3oNyvFu/jxUzQ/YBobEkM2RQHe+5mpCDRyq6mfD7vCj7Z3rjB6XgpM6Mqcx1CA2xGv0ascU/2Xk8IIg==",
  2681. "type": "package",
  2682. "path": "nito.asyncex.context/5.1.2",
  2683. "files": [
  2684. ".nupkg.metadata",
  2685. ".signature.p7s",
  2686. "icon.png",
  2687. "lib/net461/Nito.AsyncEx.Context.dll",
  2688. "lib/net461/Nito.AsyncEx.Context.xml",
  2689. "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
  2690. "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
  2691. "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
  2692. "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
  2693. "nito.asyncex.context.5.1.2.nupkg.sha512",
  2694. "nito.asyncex.context.nuspec"
  2695. ]
  2696. },
  2697. "Nito.AsyncEx.Coordination/5.1.2": {
  2698. "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==",
  2699. "type": "package",
  2700. "path": "nito.asyncex.coordination/5.1.2",
  2701. "files": [
  2702. ".nupkg.metadata",
  2703. ".signature.p7s",
  2704. "icon.png",
  2705. "lib/net461/Nito.AsyncEx.Coordination.dll",
  2706. "lib/net461/Nito.AsyncEx.Coordination.xml",
  2707. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  2708. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  2709. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  2710. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  2711. "nito.asyncex.coordination.5.1.2.nupkg.sha512",
  2712. "nito.asyncex.coordination.nuspec"
  2713. ]
  2714. },
  2715. "Nito.AsyncEx.Tasks/5.1.2": {
  2716. "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==",
  2717. "type": "package",
  2718. "path": "nito.asyncex.tasks/5.1.2",
  2719. "files": [
  2720. ".nupkg.metadata",
  2721. ".signature.p7s",
  2722. "icon.png",
  2723. "lib/net461/Nito.AsyncEx.Tasks.dll",
  2724. "lib/net461/Nito.AsyncEx.Tasks.xml",
  2725. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  2726. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  2727. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  2728. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  2729. "nito.asyncex.tasks.5.1.2.nupkg.sha512",
  2730. "nito.asyncex.tasks.nuspec"
  2731. ]
  2732. },
  2733. "Nito.Collections.Deque/1.1.1": {
  2734. "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==",
  2735. "type": "package",
  2736. "path": "nito.collections.deque/1.1.1",
  2737. "files": [
  2738. ".nupkg.metadata",
  2739. ".signature.p7s",
  2740. "icon.png",
  2741. "lib/net461/Nito.Collections.Deque.dll",
  2742. "lib/net461/Nito.Collections.Deque.xml",
  2743. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  2744. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  2745. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  2746. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  2747. "nito.collections.deque.1.1.1.nupkg.sha512",
  2748. "nito.collections.deque.nuspec"
  2749. ]
  2750. },
  2751. "Nito.Disposables/2.2.1": {
  2752. "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==",
  2753. "type": "package",
  2754. "path": "nito.disposables/2.2.1",
  2755. "files": [
  2756. ".nupkg.metadata",
  2757. ".signature.p7s",
  2758. "icon.png",
  2759. "lib/net461/Nito.Disposables.dll",
  2760. "lib/net461/Nito.Disposables.xml",
  2761. "lib/netstandard1.0/Nito.Disposables.dll",
  2762. "lib/netstandard1.0/Nito.Disposables.xml",
  2763. "lib/netstandard2.0/Nito.Disposables.dll",
  2764. "lib/netstandard2.0/Nito.Disposables.xml",
  2765. "lib/netstandard2.1/Nito.Disposables.dll",
  2766. "lib/netstandard2.1/Nito.Disposables.xml",
  2767. "nito.disposables.2.2.1.nupkg.sha512",
  2768. "nito.disposables.nuspec"
  2769. ]
  2770. },
  2771. "Pomelo.EntityFrameworkCore.MySql/6.0.0": {
  2772. "sha512": "iWloXFjpN6BllZA9oPqZTW9mNtFV5Q6DFv0WwFyh1IuOJ71btS3ifTwpLmaFXSlXzuEU9o7Rul0dU0WiwkOq0Q==",
  2773. "type": "package",
  2774. "path": "pomelo.entityframeworkcore.mysql/6.0.0",
  2775. "files": [
  2776. ".nupkg.metadata",
  2777. ".signature.p7s",
  2778. "icon.png",
  2779. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll",
  2780. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.xml",
  2781. "pomelo.entityframeworkcore.mysql.6.0.0.nupkg.sha512",
  2782. "pomelo.entityframeworkcore.mysql.nuspec"
  2783. ]
  2784. },
  2785. "System.Collections/4.3.0": {
  2786. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  2787. "type": "package",
  2788. "path": "system.collections/4.3.0",
  2789. "files": [
  2790. ".nupkg.metadata",
  2791. ".signature.p7s",
  2792. "ThirdPartyNotices.txt",
  2793. "dotnet_library_license.txt",
  2794. "lib/MonoAndroid10/_._",
  2795. "lib/MonoTouch10/_._",
  2796. "lib/net45/_._",
  2797. "lib/portable-net45+win8+wp8+wpa81/_._",
  2798. "lib/win8/_._",
  2799. "lib/wp80/_._",
  2800. "lib/wpa81/_._",
  2801. "lib/xamarinios10/_._",
  2802. "lib/xamarinmac20/_._",
  2803. "lib/xamarintvos10/_._",
  2804. "lib/xamarinwatchos10/_._",
  2805. "ref/MonoAndroid10/_._",
  2806. "ref/MonoTouch10/_._",
  2807. "ref/net45/_._",
  2808. "ref/netcore50/System.Collections.dll",
  2809. "ref/netcore50/System.Collections.xml",
  2810. "ref/netcore50/de/System.Collections.xml",
  2811. "ref/netcore50/es/System.Collections.xml",
  2812. "ref/netcore50/fr/System.Collections.xml",
  2813. "ref/netcore50/it/System.Collections.xml",
  2814. "ref/netcore50/ja/System.Collections.xml",
  2815. "ref/netcore50/ko/System.Collections.xml",
  2816. "ref/netcore50/ru/System.Collections.xml",
  2817. "ref/netcore50/zh-hans/System.Collections.xml",
  2818. "ref/netcore50/zh-hant/System.Collections.xml",
  2819. "ref/netstandard1.0/System.Collections.dll",
  2820. "ref/netstandard1.0/System.Collections.xml",
  2821. "ref/netstandard1.0/de/System.Collections.xml",
  2822. "ref/netstandard1.0/es/System.Collections.xml",
  2823. "ref/netstandard1.0/fr/System.Collections.xml",
  2824. "ref/netstandard1.0/it/System.Collections.xml",
  2825. "ref/netstandard1.0/ja/System.Collections.xml",
  2826. "ref/netstandard1.0/ko/System.Collections.xml",
  2827. "ref/netstandard1.0/ru/System.Collections.xml",
  2828. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  2829. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  2830. "ref/netstandard1.3/System.Collections.dll",
  2831. "ref/netstandard1.3/System.Collections.xml",
  2832. "ref/netstandard1.3/de/System.Collections.xml",
  2833. "ref/netstandard1.3/es/System.Collections.xml",
  2834. "ref/netstandard1.3/fr/System.Collections.xml",
  2835. "ref/netstandard1.3/it/System.Collections.xml",
  2836. "ref/netstandard1.3/ja/System.Collections.xml",
  2837. "ref/netstandard1.3/ko/System.Collections.xml",
  2838. "ref/netstandard1.3/ru/System.Collections.xml",
  2839. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  2840. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  2841. "ref/portable-net45+win8+wp8+wpa81/_._",
  2842. "ref/win8/_._",
  2843. "ref/wp80/_._",
  2844. "ref/wpa81/_._",
  2845. "ref/xamarinios10/_._",
  2846. "ref/xamarinmac20/_._",
  2847. "ref/xamarintvos10/_._",
  2848. "ref/xamarinwatchos10/_._",
  2849. "system.collections.4.3.0.nupkg.sha512",
  2850. "system.collections.nuspec"
  2851. ]
  2852. },
  2853. "System.Collections.Immutable/6.0.0": {
  2854. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  2855. "type": "package",
  2856. "path": "system.collections.immutable/6.0.0",
  2857. "files": [
  2858. ".nupkg.metadata",
  2859. ".signature.p7s",
  2860. "Icon.png",
  2861. "LICENSE.TXT",
  2862. "THIRD-PARTY-NOTICES.TXT",
  2863. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  2864. "buildTransitive/netcoreapp3.1/_._",
  2865. "lib/net461/System.Collections.Immutable.dll",
  2866. "lib/net461/System.Collections.Immutable.xml",
  2867. "lib/net6.0/System.Collections.Immutable.dll",
  2868. "lib/net6.0/System.Collections.Immutable.xml",
  2869. "lib/netstandard2.0/System.Collections.Immutable.dll",
  2870. "lib/netstandard2.0/System.Collections.Immutable.xml",
  2871. "system.collections.immutable.6.0.0.nupkg.sha512",
  2872. "system.collections.immutable.nuspec",
  2873. "useSharedDesignerContext.txt"
  2874. ]
  2875. },
  2876. "System.Diagnostics.Debug/4.3.0": {
  2877. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  2878. "type": "package",
  2879. "path": "system.diagnostics.debug/4.3.0",
  2880. "files": [
  2881. ".nupkg.metadata",
  2882. ".signature.p7s",
  2883. "ThirdPartyNotices.txt",
  2884. "dotnet_library_license.txt",
  2885. "lib/MonoAndroid10/_._",
  2886. "lib/MonoTouch10/_._",
  2887. "lib/net45/_._",
  2888. "lib/portable-net45+win8+wp8+wpa81/_._",
  2889. "lib/win8/_._",
  2890. "lib/wp80/_._",
  2891. "lib/wpa81/_._",
  2892. "lib/xamarinios10/_._",
  2893. "lib/xamarinmac20/_._",
  2894. "lib/xamarintvos10/_._",
  2895. "lib/xamarinwatchos10/_._",
  2896. "ref/MonoAndroid10/_._",
  2897. "ref/MonoTouch10/_._",
  2898. "ref/net45/_._",
  2899. "ref/netcore50/System.Diagnostics.Debug.dll",
  2900. "ref/netcore50/System.Diagnostics.Debug.xml",
  2901. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  2902. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  2903. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  2904. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  2905. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  2906. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  2907. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  2908. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  2909. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  2910. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  2911. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  2912. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  2913. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  2914. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  2915. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  2916. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  2917. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  2918. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  2919. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  2920. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  2921. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  2922. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  2923. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  2924. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  2925. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  2926. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  2927. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  2928. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  2929. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  2930. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  2931. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  2932. "ref/portable-net45+win8+wp8+wpa81/_._",
  2933. "ref/win8/_._",
  2934. "ref/wp80/_._",
  2935. "ref/wpa81/_._",
  2936. "ref/xamarinios10/_._",
  2937. "ref/xamarinmac20/_._",
  2938. "ref/xamarintvos10/_._",
  2939. "ref/xamarinwatchos10/_._",
  2940. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  2941. "system.diagnostics.debug.nuspec"
  2942. ]
  2943. },
  2944. "System.Diagnostics.DiagnosticSource/6.0.0": {
  2945. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  2946. "type": "package",
  2947. "path": "system.diagnostics.diagnosticsource/6.0.0",
  2948. "files": [
  2949. ".nupkg.metadata",
  2950. ".signature.p7s",
  2951. "Icon.png",
  2952. "LICENSE.TXT",
  2953. "THIRD-PARTY-NOTICES.TXT",
  2954. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  2955. "buildTransitive/netcoreapp3.1/_._",
  2956. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  2957. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  2958. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  2959. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  2960. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  2961. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  2962. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  2963. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  2964. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  2965. "system.diagnostics.diagnosticsource.nuspec",
  2966. "useSharedDesignerContext.txt"
  2967. ]
  2968. },
  2969. "System.Globalization/4.3.0": {
  2970. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  2971. "type": "package",
  2972. "path": "system.globalization/4.3.0",
  2973. "files": [
  2974. ".nupkg.metadata",
  2975. ".signature.p7s",
  2976. "ThirdPartyNotices.txt",
  2977. "dotnet_library_license.txt",
  2978. "lib/MonoAndroid10/_._",
  2979. "lib/MonoTouch10/_._",
  2980. "lib/net45/_._",
  2981. "lib/portable-net45+win8+wp8+wpa81/_._",
  2982. "lib/win8/_._",
  2983. "lib/wp80/_._",
  2984. "lib/wpa81/_._",
  2985. "lib/xamarinios10/_._",
  2986. "lib/xamarinmac20/_._",
  2987. "lib/xamarintvos10/_._",
  2988. "lib/xamarinwatchos10/_._",
  2989. "ref/MonoAndroid10/_._",
  2990. "ref/MonoTouch10/_._",
  2991. "ref/net45/_._",
  2992. "ref/netcore50/System.Globalization.dll",
  2993. "ref/netcore50/System.Globalization.xml",
  2994. "ref/netcore50/de/System.Globalization.xml",
  2995. "ref/netcore50/es/System.Globalization.xml",
  2996. "ref/netcore50/fr/System.Globalization.xml",
  2997. "ref/netcore50/it/System.Globalization.xml",
  2998. "ref/netcore50/ja/System.Globalization.xml",
  2999. "ref/netcore50/ko/System.Globalization.xml",
  3000. "ref/netcore50/ru/System.Globalization.xml",
  3001. "ref/netcore50/zh-hans/System.Globalization.xml",
  3002. "ref/netcore50/zh-hant/System.Globalization.xml",
  3003. "ref/netstandard1.0/System.Globalization.dll",
  3004. "ref/netstandard1.0/System.Globalization.xml",
  3005. "ref/netstandard1.0/de/System.Globalization.xml",
  3006. "ref/netstandard1.0/es/System.Globalization.xml",
  3007. "ref/netstandard1.0/fr/System.Globalization.xml",
  3008. "ref/netstandard1.0/it/System.Globalization.xml",
  3009. "ref/netstandard1.0/ja/System.Globalization.xml",
  3010. "ref/netstandard1.0/ko/System.Globalization.xml",
  3011. "ref/netstandard1.0/ru/System.Globalization.xml",
  3012. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  3013. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  3014. "ref/netstandard1.3/System.Globalization.dll",
  3015. "ref/netstandard1.3/System.Globalization.xml",
  3016. "ref/netstandard1.3/de/System.Globalization.xml",
  3017. "ref/netstandard1.3/es/System.Globalization.xml",
  3018. "ref/netstandard1.3/fr/System.Globalization.xml",
  3019. "ref/netstandard1.3/it/System.Globalization.xml",
  3020. "ref/netstandard1.3/ja/System.Globalization.xml",
  3021. "ref/netstandard1.3/ko/System.Globalization.xml",
  3022. "ref/netstandard1.3/ru/System.Globalization.xml",
  3023. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  3024. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  3025. "ref/portable-net45+win8+wp8+wpa81/_._",
  3026. "ref/win8/_._",
  3027. "ref/wp80/_._",
  3028. "ref/wpa81/_._",
  3029. "ref/xamarinios10/_._",
  3030. "ref/xamarinmac20/_._",
  3031. "ref/xamarintvos10/_._",
  3032. "ref/xamarinwatchos10/_._",
  3033. "system.globalization.4.3.0.nupkg.sha512",
  3034. "system.globalization.nuspec"
  3035. ]
  3036. },
  3037. "System.IO/4.3.0": {
  3038. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  3039. "type": "package",
  3040. "path": "system.io/4.3.0",
  3041. "files": [
  3042. ".nupkg.metadata",
  3043. ".signature.p7s",
  3044. "ThirdPartyNotices.txt",
  3045. "dotnet_library_license.txt",
  3046. "lib/MonoAndroid10/_._",
  3047. "lib/MonoTouch10/_._",
  3048. "lib/net45/_._",
  3049. "lib/net462/System.IO.dll",
  3050. "lib/portable-net45+win8+wp8+wpa81/_._",
  3051. "lib/win8/_._",
  3052. "lib/wp80/_._",
  3053. "lib/wpa81/_._",
  3054. "lib/xamarinios10/_._",
  3055. "lib/xamarinmac20/_._",
  3056. "lib/xamarintvos10/_._",
  3057. "lib/xamarinwatchos10/_._",
  3058. "ref/MonoAndroid10/_._",
  3059. "ref/MonoTouch10/_._",
  3060. "ref/net45/_._",
  3061. "ref/net462/System.IO.dll",
  3062. "ref/netcore50/System.IO.dll",
  3063. "ref/netcore50/System.IO.xml",
  3064. "ref/netcore50/de/System.IO.xml",
  3065. "ref/netcore50/es/System.IO.xml",
  3066. "ref/netcore50/fr/System.IO.xml",
  3067. "ref/netcore50/it/System.IO.xml",
  3068. "ref/netcore50/ja/System.IO.xml",
  3069. "ref/netcore50/ko/System.IO.xml",
  3070. "ref/netcore50/ru/System.IO.xml",
  3071. "ref/netcore50/zh-hans/System.IO.xml",
  3072. "ref/netcore50/zh-hant/System.IO.xml",
  3073. "ref/netstandard1.0/System.IO.dll",
  3074. "ref/netstandard1.0/System.IO.xml",
  3075. "ref/netstandard1.0/de/System.IO.xml",
  3076. "ref/netstandard1.0/es/System.IO.xml",
  3077. "ref/netstandard1.0/fr/System.IO.xml",
  3078. "ref/netstandard1.0/it/System.IO.xml",
  3079. "ref/netstandard1.0/ja/System.IO.xml",
  3080. "ref/netstandard1.0/ko/System.IO.xml",
  3081. "ref/netstandard1.0/ru/System.IO.xml",
  3082. "ref/netstandard1.0/zh-hans/System.IO.xml",
  3083. "ref/netstandard1.0/zh-hant/System.IO.xml",
  3084. "ref/netstandard1.3/System.IO.dll",
  3085. "ref/netstandard1.3/System.IO.xml",
  3086. "ref/netstandard1.3/de/System.IO.xml",
  3087. "ref/netstandard1.3/es/System.IO.xml",
  3088. "ref/netstandard1.3/fr/System.IO.xml",
  3089. "ref/netstandard1.3/it/System.IO.xml",
  3090. "ref/netstandard1.3/ja/System.IO.xml",
  3091. "ref/netstandard1.3/ko/System.IO.xml",
  3092. "ref/netstandard1.3/ru/System.IO.xml",
  3093. "ref/netstandard1.3/zh-hans/System.IO.xml",
  3094. "ref/netstandard1.3/zh-hant/System.IO.xml",
  3095. "ref/netstandard1.5/System.IO.dll",
  3096. "ref/netstandard1.5/System.IO.xml",
  3097. "ref/netstandard1.5/de/System.IO.xml",
  3098. "ref/netstandard1.5/es/System.IO.xml",
  3099. "ref/netstandard1.5/fr/System.IO.xml",
  3100. "ref/netstandard1.5/it/System.IO.xml",
  3101. "ref/netstandard1.5/ja/System.IO.xml",
  3102. "ref/netstandard1.5/ko/System.IO.xml",
  3103. "ref/netstandard1.5/ru/System.IO.xml",
  3104. "ref/netstandard1.5/zh-hans/System.IO.xml",
  3105. "ref/netstandard1.5/zh-hant/System.IO.xml",
  3106. "ref/portable-net45+win8+wp8+wpa81/_._",
  3107. "ref/win8/_._",
  3108. "ref/wp80/_._",
  3109. "ref/wpa81/_._",
  3110. "ref/xamarinios10/_._",
  3111. "ref/xamarinmac20/_._",
  3112. "ref/xamarintvos10/_._",
  3113. "ref/xamarinwatchos10/_._",
  3114. "system.io.4.3.0.nupkg.sha512",
  3115. "system.io.nuspec"
  3116. ]
  3117. },
  3118. "System.Linq/4.3.0": {
  3119. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  3120. "type": "package",
  3121. "path": "system.linq/4.3.0",
  3122. "files": [
  3123. ".nupkg.metadata",
  3124. ".signature.p7s",
  3125. "ThirdPartyNotices.txt",
  3126. "dotnet_library_license.txt",
  3127. "lib/MonoAndroid10/_._",
  3128. "lib/MonoTouch10/_._",
  3129. "lib/net45/_._",
  3130. "lib/net463/System.Linq.dll",
  3131. "lib/netcore50/System.Linq.dll",
  3132. "lib/netstandard1.6/System.Linq.dll",
  3133. "lib/portable-net45+win8+wp8+wpa81/_._",
  3134. "lib/win8/_._",
  3135. "lib/wp80/_._",
  3136. "lib/wpa81/_._",
  3137. "lib/xamarinios10/_._",
  3138. "lib/xamarinmac20/_._",
  3139. "lib/xamarintvos10/_._",
  3140. "lib/xamarinwatchos10/_._",
  3141. "ref/MonoAndroid10/_._",
  3142. "ref/MonoTouch10/_._",
  3143. "ref/net45/_._",
  3144. "ref/net463/System.Linq.dll",
  3145. "ref/netcore50/System.Linq.dll",
  3146. "ref/netcore50/System.Linq.xml",
  3147. "ref/netcore50/de/System.Linq.xml",
  3148. "ref/netcore50/es/System.Linq.xml",
  3149. "ref/netcore50/fr/System.Linq.xml",
  3150. "ref/netcore50/it/System.Linq.xml",
  3151. "ref/netcore50/ja/System.Linq.xml",
  3152. "ref/netcore50/ko/System.Linq.xml",
  3153. "ref/netcore50/ru/System.Linq.xml",
  3154. "ref/netcore50/zh-hans/System.Linq.xml",
  3155. "ref/netcore50/zh-hant/System.Linq.xml",
  3156. "ref/netstandard1.0/System.Linq.dll",
  3157. "ref/netstandard1.0/System.Linq.xml",
  3158. "ref/netstandard1.0/de/System.Linq.xml",
  3159. "ref/netstandard1.0/es/System.Linq.xml",
  3160. "ref/netstandard1.0/fr/System.Linq.xml",
  3161. "ref/netstandard1.0/it/System.Linq.xml",
  3162. "ref/netstandard1.0/ja/System.Linq.xml",
  3163. "ref/netstandard1.0/ko/System.Linq.xml",
  3164. "ref/netstandard1.0/ru/System.Linq.xml",
  3165. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  3166. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  3167. "ref/netstandard1.6/System.Linq.dll",
  3168. "ref/netstandard1.6/System.Linq.xml",
  3169. "ref/netstandard1.6/de/System.Linq.xml",
  3170. "ref/netstandard1.6/es/System.Linq.xml",
  3171. "ref/netstandard1.6/fr/System.Linq.xml",
  3172. "ref/netstandard1.6/it/System.Linq.xml",
  3173. "ref/netstandard1.6/ja/System.Linq.xml",
  3174. "ref/netstandard1.6/ko/System.Linq.xml",
  3175. "ref/netstandard1.6/ru/System.Linq.xml",
  3176. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  3177. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  3178. "ref/portable-net45+win8+wp8+wpa81/_._",
  3179. "ref/win8/_._",
  3180. "ref/wp80/_._",
  3181. "ref/wpa81/_._",
  3182. "ref/xamarinios10/_._",
  3183. "ref/xamarinmac20/_._",
  3184. "ref/xamarintvos10/_._",
  3185. "ref/xamarinwatchos10/_._",
  3186. "system.linq.4.3.0.nupkg.sha512",
  3187. "system.linq.nuspec"
  3188. ]
  3189. },
  3190. "System.Linq.Dynamic.Core/1.2.18": {
  3191. "sha512": "+RH90sKD6SK2c9MD2Xo2jz1hkAJYfgPVyW1VgAwiPURR+JzOJCdvsDBg2Iq97FmTymxlQBY76G1cMxsF6j+6tA==",
  3192. "type": "package",
  3193. "path": "system.linq.dynamic.core/1.2.18",
  3194. "files": [
  3195. ".nupkg.metadata",
  3196. ".signature.p7s",
  3197. "lib/net35/System.Linq.Dynamic.Core.dll",
  3198. "lib/net35/System.Linq.Dynamic.Core.pdb",
  3199. "lib/net35/System.Linq.Dynamic.Core.xml",
  3200. "lib/net40/System.Linq.Dynamic.Core.dll",
  3201. "lib/net40/System.Linq.Dynamic.Core.pdb",
  3202. "lib/net40/System.Linq.Dynamic.Core.xml",
  3203. "lib/net45/System.Linq.Dynamic.Core.dll",
  3204. "lib/net45/System.Linq.Dynamic.Core.pdb",
  3205. "lib/net45/System.Linq.Dynamic.Core.xml",
  3206. "lib/net452/System.Linq.Dynamic.Core.dll",
  3207. "lib/net452/System.Linq.Dynamic.Core.pdb",
  3208. "lib/net452/System.Linq.Dynamic.Core.xml",
  3209. "lib/net46/System.Linq.Dynamic.Core.dll",
  3210. "lib/net46/System.Linq.Dynamic.Core.pdb",
  3211. "lib/net46/System.Linq.Dynamic.Core.xml",
  3212. "lib/net5.0/System.Linq.Dynamic.Core.dll",
  3213. "lib/net5.0/System.Linq.Dynamic.Core.pdb",
  3214. "lib/net5.0/System.Linq.Dynamic.Core.xml",
  3215. "lib/net6.0/System.Linq.Dynamic.Core.dll",
  3216. "lib/net6.0/System.Linq.Dynamic.Core.pdb",
  3217. "lib/net6.0/System.Linq.Dynamic.Core.xml",
  3218. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
  3219. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
  3220. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
  3221. "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
  3222. "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
  3223. "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
  3224. "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
  3225. "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
  3226. "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
  3227. "lib/netstandard2.1/System.Linq.Dynamic.Core.dll",
  3228. "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb",
  3229. "lib/netstandard2.1/System.Linq.Dynamic.Core.xml",
  3230. "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll",
  3231. "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb",
  3232. "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri",
  3233. "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml",
  3234. "system.linq.dynamic.core.1.2.18.nupkg.sha512",
  3235. "system.linq.dynamic.core.nuspec"
  3236. ]
  3237. },
  3238. "System.Linq.Expressions/4.3.0": {
  3239. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  3240. "type": "package",
  3241. "path": "system.linq.expressions/4.3.0",
  3242. "files": [
  3243. ".nupkg.metadata",
  3244. ".signature.p7s",
  3245. "ThirdPartyNotices.txt",
  3246. "dotnet_library_license.txt",
  3247. "lib/MonoAndroid10/_._",
  3248. "lib/MonoTouch10/_._",
  3249. "lib/net45/_._",
  3250. "lib/net463/System.Linq.Expressions.dll",
  3251. "lib/netcore50/System.Linq.Expressions.dll",
  3252. "lib/netstandard1.6/System.Linq.Expressions.dll",
  3253. "lib/portable-net45+win8+wp8+wpa81/_._",
  3254. "lib/win8/_._",
  3255. "lib/wp80/_._",
  3256. "lib/wpa81/_._",
  3257. "lib/xamarinios10/_._",
  3258. "lib/xamarinmac20/_._",
  3259. "lib/xamarintvos10/_._",
  3260. "lib/xamarinwatchos10/_._",
  3261. "ref/MonoAndroid10/_._",
  3262. "ref/MonoTouch10/_._",
  3263. "ref/net45/_._",
  3264. "ref/net463/System.Linq.Expressions.dll",
  3265. "ref/netcore50/System.Linq.Expressions.dll",
  3266. "ref/netcore50/System.Linq.Expressions.xml",
  3267. "ref/netcore50/de/System.Linq.Expressions.xml",
  3268. "ref/netcore50/es/System.Linq.Expressions.xml",
  3269. "ref/netcore50/fr/System.Linq.Expressions.xml",
  3270. "ref/netcore50/it/System.Linq.Expressions.xml",
  3271. "ref/netcore50/ja/System.Linq.Expressions.xml",
  3272. "ref/netcore50/ko/System.Linq.Expressions.xml",
  3273. "ref/netcore50/ru/System.Linq.Expressions.xml",
  3274. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  3275. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  3276. "ref/netstandard1.0/System.Linq.Expressions.dll",
  3277. "ref/netstandard1.0/System.Linq.Expressions.xml",
  3278. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  3279. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  3280. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  3281. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  3282. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  3283. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  3284. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  3285. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  3286. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  3287. "ref/netstandard1.3/System.Linq.Expressions.dll",
  3288. "ref/netstandard1.3/System.Linq.Expressions.xml",
  3289. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  3290. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  3291. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  3292. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  3293. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  3294. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  3295. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  3296. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  3297. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  3298. "ref/netstandard1.6/System.Linq.Expressions.dll",
  3299. "ref/netstandard1.6/System.Linq.Expressions.xml",
  3300. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  3301. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  3302. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  3303. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  3304. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  3305. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  3306. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  3307. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  3308. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  3309. "ref/portable-net45+win8+wp8+wpa81/_._",
  3310. "ref/win8/_._",
  3311. "ref/wp80/_._",
  3312. "ref/wpa81/_._",
  3313. "ref/xamarinios10/_._",
  3314. "ref/xamarinmac20/_._",
  3315. "ref/xamarintvos10/_._",
  3316. "ref/xamarinwatchos10/_._",
  3317. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  3318. "system.linq.expressions.4.3.0.nupkg.sha512",
  3319. "system.linq.expressions.nuspec"
  3320. ]
  3321. },
  3322. "System.Linq.Queryable/4.3.0": {
  3323. "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
  3324. "type": "package",
  3325. "path": "system.linq.queryable/4.3.0",
  3326. "files": [
  3327. ".nupkg.metadata",
  3328. ".signature.p7s",
  3329. "ThirdPartyNotices.txt",
  3330. "dotnet_library_license.txt",
  3331. "lib/monoandroid10/_._",
  3332. "lib/monotouch10/_._",
  3333. "lib/net45/_._",
  3334. "lib/netcore50/System.Linq.Queryable.dll",
  3335. "lib/netstandard1.3/System.Linq.Queryable.dll",
  3336. "lib/portable-net45+win8+wp8+wpa81/_._",
  3337. "lib/win8/_._",
  3338. "lib/wp80/_._",
  3339. "lib/wpa81/_._",
  3340. "lib/xamarinios10/_._",
  3341. "lib/xamarinmac20/_._",
  3342. "lib/xamarintvos10/_._",
  3343. "lib/xamarinwatchos10/_._",
  3344. "ref/monoandroid10/_._",
  3345. "ref/monotouch10/_._",
  3346. "ref/net45/_._",
  3347. "ref/netcore50/System.Linq.Queryable.dll",
  3348. "ref/netcore50/System.Linq.Queryable.xml",
  3349. "ref/netcore50/de/System.Linq.Queryable.xml",
  3350. "ref/netcore50/es/System.Linq.Queryable.xml",
  3351. "ref/netcore50/fr/System.Linq.Queryable.xml",
  3352. "ref/netcore50/it/System.Linq.Queryable.xml",
  3353. "ref/netcore50/ja/System.Linq.Queryable.xml",
  3354. "ref/netcore50/ko/System.Linq.Queryable.xml",
  3355. "ref/netcore50/ru/System.Linq.Queryable.xml",
  3356. "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
  3357. "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
  3358. "ref/netstandard1.0/System.Linq.Queryable.dll",
  3359. "ref/netstandard1.0/System.Linq.Queryable.xml",
  3360. "ref/netstandard1.0/de/System.Linq.Queryable.xml",
  3361. "ref/netstandard1.0/es/System.Linq.Queryable.xml",
  3362. "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
  3363. "ref/netstandard1.0/it/System.Linq.Queryable.xml",
  3364. "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
  3365. "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
  3366. "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
  3367. "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
  3368. "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
  3369. "ref/portable-net45+win8+wp8+wpa81/_._",
  3370. "ref/win8/_._",
  3371. "ref/wp80/_._",
  3372. "ref/wpa81/_._",
  3373. "ref/xamarinios10/_._",
  3374. "ref/xamarinmac20/_._",
  3375. "ref/xamarintvos10/_._",
  3376. "ref/xamarinwatchos10/_._",
  3377. "system.linq.queryable.4.3.0.nupkg.sha512",
  3378. "system.linq.queryable.nuspec"
  3379. ]
  3380. },
  3381. "System.ObjectModel/4.3.0": {
  3382. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  3383. "type": "package",
  3384. "path": "system.objectmodel/4.3.0",
  3385. "files": [
  3386. ".nupkg.metadata",
  3387. ".signature.p7s",
  3388. "ThirdPartyNotices.txt",
  3389. "dotnet_library_license.txt",
  3390. "lib/MonoAndroid10/_._",
  3391. "lib/MonoTouch10/_._",
  3392. "lib/net45/_._",
  3393. "lib/netcore50/System.ObjectModel.dll",
  3394. "lib/netstandard1.3/System.ObjectModel.dll",
  3395. "lib/portable-net45+win8+wp8+wpa81/_._",
  3396. "lib/win8/_._",
  3397. "lib/wp80/_._",
  3398. "lib/wpa81/_._",
  3399. "lib/xamarinios10/_._",
  3400. "lib/xamarinmac20/_._",
  3401. "lib/xamarintvos10/_._",
  3402. "lib/xamarinwatchos10/_._",
  3403. "ref/MonoAndroid10/_._",
  3404. "ref/MonoTouch10/_._",
  3405. "ref/net45/_._",
  3406. "ref/netcore50/System.ObjectModel.dll",
  3407. "ref/netcore50/System.ObjectModel.xml",
  3408. "ref/netcore50/de/System.ObjectModel.xml",
  3409. "ref/netcore50/es/System.ObjectModel.xml",
  3410. "ref/netcore50/fr/System.ObjectModel.xml",
  3411. "ref/netcore50/it/System.ObjectModel.xml",
  3412. "ref/netcore50/ja/System.ObjectModel.xml",
  3413. "ref/netcore50/ko/System.ObjectModel.xml",
  3414. "ref/netcore50/ru/System.ObjectModel.xml",
  3415. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  3416. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  3417. "ref/netstandard1.0/System.ObjectModel.dll",
  3418. "ref/netstandard1.0/System.ObjectModel.xml",
  3419. "ref/netstandard1.0/de/System.ObjectModel.xml",
  3420. "ref/netstandard1.0/es/System.ObjectModel.xml",
  3421. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  3422. "ref/netstandard1.0/it/System.ObjectModel.xml",
  3423. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  3424. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  3425. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  3426. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  3427. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  3428. "ref/netstandard1.3/System.ObjectModel.dll",
  3429. "ref/netstandard1.3/System.ObjectModel.xml",
  3430. "ref/netstandard1.3/de/System.ObjectModel.xml",
  3431. "ref/netstandard1.3/es/System.ObjectModel.xml",
  3432. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  3433. "ref/netstandard1.3/it/System.ObjectModel.xml",
  3434. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  3435. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  3436. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  3437. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  3438. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  3439. "ref/portable-net45+win8+wp8+wpa81/_._",
  3440. "ref/win8/_._",
  3441. "ref/wp80/_._",
  3442. "ref/wpa81/_._",
  3443. "ref/xamarinios10/_._",
  3444. "ref/xamarinmac20/_._",
  3445. "ref/xamarintvos10/_._",
  3446. "ref/xamarinwatchos10/_._",
  3447. "system.objectmodel.4.3.0.nupkg.sha512",
  3448. "system.objectmodel.nuspec"
  3449. ]
  3450. },
  3451. "System.Reflection/4.3.0": {
  3452. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  3453. "type": "package",
  3454. "path": "system.reflection/4.3.0",
  3455. "files": [
  3456. ".nupkg.metadata",
  3457. ".signature.p7s",
  3458. "ThirdPartyNotices.txt",
  3459. "dotnet_library_license.txt",
  3460. "lib/MonoAndroid10/_._",
  3461. "lib/MonoTouch10/_._",
  3462. "lib/net45/_._",
  3463. "lib/net462/System.Reflection.dll",
  3464. "lib/portable-net45+win8+wp8+wpa81/_._",
  3465. "lib/win8/_._",
  3466. "lib/wp80/_._",
  3467. "lib/wpa81/_._",
  3468. "lib/xamarinios10/_._",
  3469. "lib/xamarinmac20/_._",
  3470. "lib/xamarintvos10/_._",
  3471. "lib/xamarinwatchos10/_._",
  3472. "ref/MonoAndroid10/_._",
  3473. "ref/MonoTouch10/_._",
  3474. "ref/net45/_._",
  3475. "ref/net462/System.Reflection.dll",
  3476. "ref/netcore50/System.Reflection.dll",
  3477. "ref/netcore50/System.Reflection.xml",
  3478. "ref/netcore50/de/System.Reflection.xml",
  3479. "ref/netcore50/es/System.Reflection.xml",
  3480. "ref/netcore50/fr/System.Reflection.xml",
  3481. "ref/netcore50/it/System.Reflection.xml",
  3482. "ref/netcore50/ja/System.Reflection.xml",
  3483. "ref/netcore50/ko/System.Reflection.xml",
  3484. "ref/netcore50/ru/System.Reflection.xml",
  3485. "ref/netcore50/zh-hans/System.Reflection.xml",
  3486. "ref/netcore50/zh-hant/System.Reflection.xml",
  3487. "ref/netstandard1.0/System.Reflection.dll",
  3488. "ref/netstandard1.0/System.Reflection.xml",
  3489. "ref/netstandard1.0/de/System.Reflection.xml",
  3490. "ref/netstandard1.0/es/System.Reflection.xml",
  3491. "ref/netstandard1.0/fr/System.Reflection.xml",
  3492. "ref/netstandard1.0/it/System.Reflection.xml",
  3493. "ref/netstandard1.0/ja/System.Reflection.xml",
  3494. "ref/netstandard1.0/ko/System.Reflection.xml",
  3495. "ref/netstandard1.0/ru/System.Reflection.xml",
  3496. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  3497. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  3498. "ref/netstandard1.3/System.Reflection.dll",
  3499. "ref/netstandard1.3/System.Reflection.xml",
  3500. "ref/netstandard1.3/de/System.Reflection.xml",
  3501. "ref/netstandard1.3/es/System.Reflection.xml",
  3502. "ref/netstandard1.3/fr/System.Reflection.xml",
  3503. "ref/netstandard1.3/it/System.Reflection.xml",
  3504. "ref/netstandard1.3/ja/System.Reflection.xml",
  3505. "ref/netstandard1.3/ko/System.Reflection.xml",
  3506. "ref/netstandard1.3/ru/System.Reflection.xml",
  3507. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  3508. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  3509. "ref/netstandard1.5/System.Reflection.dll",
  3510. "ref/netstandard1.5/System.Reflection.xml",
  3511. "ref/netstandard1.5/de/System.Reflection.xml",
  3512. "ref/netstandard1.5/es/System.Reflection.xml",
  3513. "ref/netstandard1.5/fr/System.Reflection.xml",
  3514. "ref/netstandard1.5/it/System.Reflection.xml",
  3515. "ref/netstandard1.5/ja/System.Reflection.xml",
  3516. "ref/netstandard1.5/ko/System.Reflection.xml",
  3517. "ref/netstandard1.5/ru/System.Reflection.xml",
  3518. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  3519. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  3520. "ref/portable-net45+win8+wp8+wpa81/_._",
  3521. "ref/win8/_._",
  3522. "ref/wp80/_._",
  3523. "ref/wpa81/_._",
  3524. "ref/xamarinios10/_._",
  3525. "ref/xamarinmac20/_._",
  3526. "ref/xamarintvos10/_._",
  3527. "ref/xamarinwatchos10/_._",
  3528. "system.reflection.4.3.0.nupkg.sha512",
  3529. "system.reflection.nuspec"
  3530. ]
  3531. },
  3532. "System.Reflection.Emit/4.3.0": {
  3533. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  3534. "type": "package",
  3535. "path": "system.reflection.emit/4.3.0",
  3536. "files": [
  3537. ".nupkg.metadata",
  3538. "ThirdPartyNotices.txt",
  3539. "dotnet_library_license.txt",
  3540. "lib/MonoAndroid10/_._",
  3541. "lib/monotouch10/_._",
  3542. "lib/net45/_._",
  3543. "lib/netcore50/System.Reflection.Emit.dll",
  3544. "lib/netstandard1.3/System.Reflection.Emit.dll",
  3545. "lib/xamarinios10/_._",
  3546. "lib/xamarinmac20/_._",
  3547. "lib/xamarintvos10/_._",
  3548. "lib/xamarinwatchos10/_._",
  3549. "ref/MonoAndroid10/_._",
  3550. "ref/net45/_._",
  3551. "ref/netstandard1.1/System.Reflection.Emit.dll",
  3552. "ref/netstandard1.1/System.Reflection.Emit.xml",
  3553. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  3554. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  3555. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  3556. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  3557. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  3558. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  3559. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  3560. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  3561. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  3562. "ref/xamarinmac20/_._",
  3563. "system.reflection.emit.4.3.0.nupkg.sha512",
  3564. "system.reflection.emit.nuspec"
  3565. ]
  3566. },
  3567. "System.Reflection.Emit.ILGeneration/4.3.0": {
  3568. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  3569. "type": "package",
  3570. "path": "system.reflection.emit.ilgeneration/4.3.0",
  3571. "files": [
  3572. ".nupkg.metadata",
  3573. "ThirdPartyNotices.txt",
  3574. "dotnet_library_license.txt",
  3575. "lib/MonoAndroid10/_._",
  3576. "lib/MonoTouch10/_._",
  3577. "lib/net45/_._",
  3578. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  3579. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  3580. "lib/portable-net45+wp8/_._",
  3581. "lib/wp80/_._",
  3582. "lib/xamarinios10/_._",
  3583. "lib/xamarinmac20/_._",
  3584. "lib/xamarintvos10/_._",
  3585. "lib/xamarinwatchos10/_._",
  3586. "ref/MonoAndroid10/_._",
  3587. "ref/MonoTouch10/_._",
  3588. "ref/net45/_._",
  3589. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  3590. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  3591. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  3592. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  3593. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  3594. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  3595. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  3596. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  3597. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  3598. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  3599. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  3600. "ref/portable-net45+wp8/_._",
  3601. "ref/wp80/_._",
  3602. "ref/xamarinios10/_._",
  3603. "ref/xamarinmac20/_._",
  3604. "ref/xamarintvos10/_._",
  3605. "ref/xamarinwatchos10/_._",
  3606. "runtimes/aot/lib/netcore50/_._",
  3607. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  3608. "system.reflection.emit.ilgeneration.nuspec"
  3609. ]
  3610. },
  3611. "System.Reflection.Emit.Lightweight/4.3.0": {
  3612. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  3613. "type": "package",
  3614. "path": "system.reflection.emit.lightweight/4.3.0",
  3615. "files": [
  3616. ".nupkg.metadata",
  3617. "ThirdPartyNotices.txt",
  3618. "dotnet_library_license.txt",
  3619. "lib/MonoAndroid10/_._",
  3620. "lib/MonoTouch10/_._",
  3621. "lib/net45/_._",
  3622. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  3623. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  3624. "lib/portable-net45+wp8/_._",
  3625. "lib/wp80/_._",
  3626. "lib/xamarinios10/_._",
  3627. "lib/xamarinmac20/_._",
  3628. "lib/xamarintvos10/_._",
  3629. "lib/xamarinwatchos10/_._",
  3630. "ref/MonoAndroid10/_._",
  3631. "ref/MonoTouch10/_._",
  3632. "ref/net45/_._",
  3633. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  3634. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  3635. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  3636. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  3637. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  3638. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  3639. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  3640. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  3641. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  3642. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  3643. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  3644. "ref/portable-net45+wp8/_._",
  3645. "ref/wp80/_._",
  3646. "ref/xamarinios10/_._",
  3647. "ref/xamarinmac20/_._",
  3648. "ref/xamarintvos10/_._",
  3649. "ref/xamarinwatchos10/_._",
  3650. "runtimes/aot/lib/netcore50/_._",
  3651. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  3652. "system.reflection.emit.lightweight.nuspec"
  3653. ]
  3654. },
  3655. "System.Reflection.Extensions/4.3.0": {
  3656. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  3657. "type": "package",
  3658. "path": "system.reflection.extensions/4.3.0",
  3659. "files": [
  3660. ".nupkg.metadata",
  3661. ".signature.p7s",
  3662. "ThirdPartyNotices.txt",
  3663. "dotnet_library_license.txt",
  3664. "lib/MonoAndroid10/_._",
  3665. "lib/MonoTouch10/_._",
  3666. "lib/net45/_._",
  3667. "lib/portable-net45+win8+wp8+wpa81/_._",
  3668. "lib/win8/_._",
  3669. "lib/wp80/_._",
  3670. "lib/wpa81/_._",
  3671. "lib/xamarinios10/_._",
  3672. "lib/xamarinmac20/_._",
  3673. "lib/xamarintvos10/_._",
  3674. "lib/xamarinwatchos10/_._",
  3675. "ref/MonoAndroid10/_._",
  3676. "ref/MonoTouch10/_._",
  3677. "ref/net45/_._",
  3678. "ref/netcore50/System.Reflection.Extensions.dll",
  3679. "ref/netcore50/System.Reflection.Extensions.xml",
  3680. "ref/netcore50/de/System.Reflection.Extensions.xml",
  3681. "ref/netcore50/es/System.Reflection.Extensions.xml",
  3682. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  3683. "ref/netcore50/it/System.Reflection.Extensions.xml",
  3684. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  3685. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  3686. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  3687. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  3688. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  3689. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  3690. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  3691. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  3692. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  3693. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  3694. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  3695. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  3696. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  3697. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  3698. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  3699. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  3700. "ref/portable-net45+win8+wp8+wpa81/_._",
  3701. "ref/win8/_._",
  3702. "ref/wp80/_._",
  3703. "ref/wpa81/_._",
  3704. "ref/xamarinios10/_._",
  3705. "ref/xamarinmac20/_._",
  3706. "ref/xamarintvos10/_._",
  3707. "ref/xamarinwatchos10/_._",
  3708. "system.reflection.extensions.4.3.0.nupkg.sha512",
  3709. "system.reflection.extensions.nuspec"
  3710. ]
  3711. },
  3712. "System.Reflection.Primitives/4.3.0": {
  3713. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  3714. "type": "package",
  3715. "path": "system.reflection.primitives/4.3.0",
  3716. "files": [
  3717. ".nupkg.metadata",
  3718. ".signature.p7s",
  3719. "ThirdPartyNotices.txt",
  3720. "dotnet_library_license.txt",
  3721. "lib/MonoAndroid10/_._",
  3722. "lib/MonoTouch10/_._",
  3723. "lib/net45/_._",
  3724. "lib/portable-net45+win8+wp8+wpa81/_._",
  3725. "lib/win8/_._",
  3726. "lib/wp80/_._",
  3727. "lib/wpa81/_._",
  3728. "lib/xamarinios10/_._",
  3729. "lib/xamarinmac20/_._",
  3730. "lib/xamarintvos10/_._",
  3731. "lib/xamarinwatchos10/_._",
  3732. "ref/MonoAndroid10/_._",
  3733. "ref/MonoTouch10/_._",
  3734. "ref/net45/_._",
  3735. "ref/netcore50/System.Reflection.Primitives.dll",
  3736. "ref/netcore50/System.Reflection.Primitives.xml",
  3737. "ref/netcore50/de/System.Reflection.Primitives.xml",
  3738. "ref/netcore50/es/System.Reflection.Primitives.xml",
  3739. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  3740. "ref/netcore50/it/System.Reflection.Primitives.xml",
  3741. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  3742. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  3743. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  3744. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  3745. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  3746. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  3747. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  3748. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  3749. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  3750. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  3751. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  3752. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  3753. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  3754. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  3755. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  3756. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  3757. "ref/portable-net45+win8+wp8+wpa81/_._",
  3758. "ref/win8/_._",
  3759. "ref/wp80/_._",
  3760. "ref/wpa81/_._",
  3761. "ref/xamarinios10/_._",
  3762. "ref/xamarinmac20/_._",
  3763. "ref/xamarintvos10/_._",
  3764. "ref/xamarinwatchos10/_._",
  3765. "system.reflection.primitives.4.3.0.nupkg.sha512",
  3766. "system.reflection.primitives.nuspec"
  3767. ]
  3768. },
  3769. "System.Reflection.TypeExtensions/4.3.0": {
  3770. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  3771. "type": "package",
  3772. "path": "system.reflection.typeextensions/4.3.0",
  3773. "files": [
  3774. ".nupkg.metadata",
  3775. "ThirdPartyNotices.txt",
  3776. "dotnet_library_license.txt",
  3777. "lib/MonoAndroid10/_._",
  3778. "lib/MonoTouch10/_._",
  3779. "lib/net46/System.Reflection.TypeExtensions.dll",
  3780. "lib/net462/System.Reflection.TypeExtensions.dll",
  3781. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  3782. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  3783. "lib/xamarinios10/_._",
  3784. "lib/xamarinmac20/_._",
  3785. "lib/xamarintvos10/_._",
  3786. "lib/xamarinwatchos10/_._",
  3787. "ref/MonoAndroid10/_._",
  3788. "ref/MonoTouch10/_._",
  3789. "ref/net46/System.Reflection.TypeExtensions.dll",
  3790. "ref/net462/System.Reflection.TypeExtensions.dll",
  3791. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  3792. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  3793. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  3794. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  3795. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  3796. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  3797. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  3798. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  3799. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  3800. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  3801. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  3802. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  3803. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  3804. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  3805. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  3806. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  3807. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  3808. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  3809. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  3810. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  3811. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  3812. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  3813. "ref/xamarinios10/_._",
  3814. "ref/xamarinmac20/_._",
  3815. "ref/xamarintvos10/_._",
  3816. "ref/xamarinwatchos10/_._",
  3817. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  3818. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  3819. "system.reflection.typeextensions.nuspec"
  3820. ]
  3821. },
  3822. "System.Resources.ResourceManager/4.3.0": {
  3823. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  3824. "type": "package",
  3825. "path": "system.resources.resourcemanager/4.3.0",
  3826. "files": [
  3827. ".nupkg.metadata",
  3828. ".signature.p7s",
  3829. "ThirdPartyNotices.txt",
  3830. "dotnet_library_license.txt",
  3831. "lib/MonoAndroid10/_._",
  3832. "lib/MonoTouch10/_._",
  3833. "lib/net45/_._",
  3834. "lib/portable-net45+win8+wp8+wpa81/_._",
  3835. "lib/win8/_._",
  3836. "lib/wp80/_._",
  3837. "lib/wpa81/_._",
  3838. "lib/xamarinios10/_._",
  3839. "lib/xamarinmac20/_._",
  3840. "lib/xamarintvos10/_._",
  3841. "lib/xamarinwatchos10/_._",
  3842. "ref/MonoAndroid10/_._",
  3843. "ref/MonoTouch10/_._",
  3844. "ref/net45/_._",
  3845. "ref/netcore50/System.Resources.ResourceManager.dll",
  3846. "ref/netcore50/System.Resources.ResourceManager.xml",
  3847. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  3848. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  3849. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  3850. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  3851. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  3852. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  3853. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  3854. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  3855. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  3856. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  3857. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  3858. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  3859. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  3860. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  3861. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  3862. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  3863. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  3864. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  3865. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  3866. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  3867. "ref/portable-net45+win8+wp8+wpa81/_._",
  3868. "ref/win8/_._",
  3869. "ref/wp80/_._",
  3870. "ref/wpa81/_._",
  3871. "ref/xamarinios10/_._",
  3872. "ref/xamarinmac20/_._",
  3873. "ref/xamarintvos10/_._",
  3874. "ref/xamarinwatchos10/_._",
  3875. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  3876. "system.resources.resourcemanager.nuspec"
  3877. ]
  3878. },
  3879. "System.Runtime/4.3.0": {
  3880. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  3881. "type": "package",
  3882. "path": "system.runtime/4.3.0",
  3883. "files": [
  3884. ".nupkg.metadata",
  3885. ".signature.p7s",
  3886. "ThirdPartyNotices.txt",
  3887. "dotnet_library_license.txt",
  3888. "lib/MonoAndroid10/_._",
  3889. "lib/MonoTouch10/_._",
  3890. "lib/net45/_._",
  3891. "lib/net462/System.Runtime.dll",
  3892. "lib/portable-net45+win8+wp80+wpa81/_._",
  3893. "lib/win8/_._",
  3894. "lib/wp80/_._",
  3895. "lib/wpa81/_._",
  3896. "lib/xamarinios10/_._",
  3897. "lib/xamarinmac20/_._",
  3898. "lib/xamarintvos10/_._",
  3899. "lib/xamarinwatchos10/_._",
  3900. "ref/MonoAndroid10/_._",
  3901. "ref/MonoTouch10/_._",
  3902. "ref/net45/_._",
  3903. "ref/net462/System.Runtime.dll",
  3904. "ref/netcore50/System.Runtime.dll",
  3905. "ref/netcore50/System.Runtime.xml",
  3906. "ref/netcore50/de/System.Runtime.xml",
  3907. "ref/netcore50/es/System.Runtime.xml",
  3908. "ref/netcore50/fr/System.Runtime.xml",
  3909. "ref/netcore50/it/System.Runtime.xml",
  3910. "ref/netcore50/ja/System.Runtime.xml",
  3911. "ref/netcore50/ko/System.Runtime.xml",
  3912. "ref/netcore50/ru/System.Runtime.xml",
  3913. "ref/netcore50/zh-hans/System.Runtime.xml",
  3914. "ref/netcore50/zh-hant/System.Runtime.xml",
  3915. "ref/netstandard1.0/System.Runtime.dll",
  3916. "ref/netstandard1.0/System.Runtime.xml",
  3917. "ref/netstandard1.0/de/System.Runtime.xml",
  3918. "ref/netstandard1.0/es/System.Runtime.xml",
  3919. "ref/netstandard1.0/fr/System.Runtime.xml",
  3920. "ref/netstandard1.0/it/System.Runtime.xml",
  3921. "ref/netstandard1.0/ja/System.Runtime.xml",
  3922. "ref/netstandard1.0/ko/System.Runtime.xml",
  3923. "ref/netstandard1.0/ru/System.Runtime.xml",
  3924. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  3925. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  3926. "ref/netstandard1.2/System.Runtime.dll",
  3927. "ref/netstandard1.2/System.Runtime.xml",
  3928. "ref/netstandard1.2/de/System.Runtime.xml",
  3929. "ref/netstandard1.2/es/System.Runtime.xml",
  3930. "ref/netstandard1.2/fr/System.Runtime.xml",
  3931. "ref/netstandard1.2/it/System.Runtime.xml",
  3932. "ref/netstandard1.2/ja/System.Runtime.xml",
  3933. "ref/netstandard1.2/ko/System.Runtime.xml",
  3934. "ref/netstandard1.2/ru/System.Runtime.xml",
  3935. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  3936. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  3937. "ref/netstandard1.3/System.Runtime.dll",
  3938. "ref/netstandard1.3/System.Runtime.xml",
  3939. "ref/netstandard1.3/de/System.Runtime.xml",
  3940. "ref/netstandard1.3/es/System.Runtime.xml",
  3941. "ref/netstandard1.3/fr/System.Runtime.xml",
  3942. "ref/netstandard1.3/it/System.Runtime.xml",
  3943. "ref/netstandard1.3/ja/System.Runtime.xml",
  3944. "ref/netstandard1.3/ko/System.Runtime.xml",
  3945. "ref/netstandard1.3/ru/System.Runtime.xml",
  3946. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  3947. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  3948. "ref/netstandard1.5/System.Runtime.dll",
  3949. "ref/netstandard1.5/System.Runtime.xml",
  3950. "ref/netstandard1.5/de/System.Runtime.xml",
  3951. "ref/netstandard1.5/es/System.Runtime.xml",
  3952. "ref/netstandard1.5/fr/System.Runtime.xml",
  3953. "ref/netstandard1.5/it/System.Runtime.xml",
  3954. "ref/netstandard1.5/ja/System.Runtime.xml",
  3955. "ref/netstandard1.5/ko/System.Runtime.xml",
  3956. "ref/netstandard1.5/ru/System.Runtime.xml",
  3957. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  3958. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  3959. "ref/portable-net45+win8+wp80+wpa81/_._",
  3960. "ref/win8/_._",
  3961. "ref/wp80/_._",
  3962. "ref/wpa81/_._",
  3963. "ref/xamarinios10/_._",
  3964. "ref/xamarinmac20/_._",
  3965. "ref/xamarintvos10/_._",
  3966. "ref/xamarinwatchos10/_._",
  3967. "system.runtime.4.3.0.nupkg.sha512",
  3968. "system.runtime.nuspec"
  3969. ]
  3970. },
  3971. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  3972. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  3973. "type": "package",
  3974. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  3975. "files": [
  3976. ".nupkg.metadata",
  3977. ".signature.p7s",
  3978. "Icon.png",
  3979. "LICENSE.TXT",
  3980. "THIRD-PARTY-NOTICES.TXT",
  3981. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  3982. "buildTransitive/netcoreapp3.1/_._",
  3983. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3984. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  3985. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  3986. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  3987. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  3988. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  3989. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  3990. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  3991. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  3992. "system.runtime.compilerservices.unsafe.nuspec",
  3993. "useSharedDesignerContext.txt"
  3994. ]
  3995. },
  3996. "System.Runtime.Extensions/4.3.0": {
  3997. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  3998. "type": "package",
  3999. "path": "system.runtime.extensions/4.3.0",
  4000. "files": [
  4001. ".nupkg.metadata",
  4002. ".signature.p7s",
  4003. "ThirdPartyNotices.txt",
  4004. "dotnet_library_license.txt",
  4005. "lib/MonoAndroid10/_._",
  4006. "lib/MonoTouch10/_._",
  4007. "lib/net45/_._",
  4008. "lib/net462/System.Runtime.Extensions.dll",
  4009. "lib/portable-net45+win8+wp8+wpa81/_._",
  4010. "lib/win8/_._",
  4011. "lib/wp80/_._",
  4012. "lib/wpa81/_._",
  4013. "lib/xamarinios10/_._",
  4014. "lib/xamarinmac20/_._",
  4015. "lib/xamarintvos10/_._",
  4016. "lib/xamarinwatchos10/_._",
  4017. "ref/MonoAndroid10/_._",
  4018. "ref/MonoTouch10/_._",
  4019. "ref/net45/_._",
  4020. "ref/net462/System.Runtime.Extensions.dll",
  4021. "ref/netcore50/System.Runtime.Extensions.dll",
  4022. "ref/netcore50/System.Runtime.Extensions.xml",
  4023. "ref/netcore50/de/System.Runtime.Extensions.xml",
  4024. "ref/netcore50/es/System.Runtime.Extensions.xml",
  4025. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  4026. "ref/netcore50/it/System.Runtime.Extensions.xml",
  4027. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  4028. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  4029. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  4030. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  4031. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  4032. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  4033. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  4034. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  4035. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  4036. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  4037. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  4038. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  4039. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  4040. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  4041. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  4042. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  4043. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  4044. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  4045. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  4046. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  4047. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  4048. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  4049. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  4050. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  4051. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  4052. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  4053. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  4054. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  4055. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  4056. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  4057. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  4058. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  4059. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  4060. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  4061. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  4062. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  4063. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  4064. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  4065. "ref/portable-net45+win8+wp8+wpa81/_._",
  4066. "ref/win8/_._",
  4067. "ref/wp80/_._",
  4068. "ref/wpa81/_._",
  4069. "ref/xamarinios10/_._",
  4070. "ref/xamarinmac20/_._",
  4071. "ref/xamarintvos10/_._",
  4072. "ref/xamarinwatchos10/_._",
  4073. "system.runtime.extensions.4.3.0.nupkg.sha512",
  4074. "system.runtime.extensions.nuspec"
  4075. ]
  4076. },
  4077. "System.Runtime.Loader/4.3.0": {
  4078. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  4079. "type": "package",
  4080. "path": "system.runtime.loader/4.3.0",
  4081. "files": [
  4082. ".nupkg.metadata",
  4083. ".signature.p7s",
  4084. "ThirdPartyNotices.txt",
  4085. "dotnet_library_license.txt",
  4086. "lib/MonoAndroid10/_._",
  4087. "lib/MonoTouch10/_._",
  4088. "lib/net462/_._",
  4089. "lib/netstandard1.5/System.Runtime.Loader.dll",
  4090. "lib/xamarinios10/_._",
  4091. "lib/xamarinmac20/_._",
  4092. "lib/xamarintvos10/_._",
  4093. "lib/xamarinwatchos10/_._",
  4094. "ref/netstandard1.5/System.Runtime.Loader.dll",
  4095. "ref/netstandard1.5/System.Runtime.Loader.xml",
  4096. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  4097. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  4098. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  4099. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  4100. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  4101. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  4102. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  4103. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  4104. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  4105. "system.runtime.loader.4.3.0.nupkg.sha512",
  4106. "system.runtime.loader.nuspec"
  4107. ]
  4108. },
  4109. "System.Text.Encoding/4.3.0": {
  4110. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  4111. "type": "package",
  4112. "path": "system.text.encoding/4.3.0",
  4113. "files": [
  4114. ".nupkg.metadata",
  4115. ".signature.p7s",
  4116. "ThirdPartyNotices.txt",
  4117. "dotnet_library_license.txt",
  4118. "lib/MonoAndroid10/_._",
  4119. "lib/MonoTouch10/_._",
  4120. "lib/net45/_._",
  4121. "lib/portable-net45+win8+wp8+wpa81/_._",
  4122. "lib/win8/_._",
  4123. "lib/wp80/_._",
  4124. "lib/wpa81/_._",
  4125. "lib/xamarinios10/_._",
  4126. "lib/xamarinmac20/_._",
  4127. "lib/xamarintvos10/_._",
  4128. "lib/xamarinwatchos10/_._",
  4129. "ref/MonoAndroid10/_._",
  4130. "ref/MonoTouch10/_._",
  4131. "ref/net45/_._",
  4132. "ref/netcore50/System.Text.Encoding.dll",
  4133. "ref/netcore50/System.Text.Encoding.xml",
  4134. "ref/netcore50/de/System.Text.Encoding.xml",
  4135. "ref/netcore50/es/System.Text.Encoding.xml",
  4136. "ref/netcore50/fr/System.Text.Encoding.xml",
  4137. "ref/netcore50/it/System.Text.Encoding.xml",
  4138. "ref/netcore50/ja/System.Text.Encoding.xml",
  4139. "ref/netcore50/ko/System.Text.Encoding.xml",
  4140. "ref/netcore50/ru/System.Text.Encoding.xml",
  4141. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  4142. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  4143. "ref/netstandard1.0/System.Text.Encoding.dll",
  4144. "ref/netstandard1.0/System.Text.Encoding.xml",
  4145. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  4146. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  4147. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  4148. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  4149. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  4150. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  4151. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  4152. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  4153. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  4154. "ref/netstandard1.3/System.Text.Encoding.dll",
  4155. "ref/netstandard1.3/System.Text.Encoding.xml",
  4156. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  4157. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  4158. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  4159. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  4160. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  4161. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  4162. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  4163. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  4164. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  4165. "ref/portable-net45+win8+wp8+wpa81/_._",
  4166. "ref/win8/_._",
  4167. "ref/wp80/_._",
  4168. "ref/wpa81/_._",
  4169. "ref/xamarinios10/_._",
  4170. "ref/xamarinmac20/_._",
  4171. "ref/xamarintvos10/_._",
  4172. "ref/xamarinwatchos10/_._",
  4173. "system.text.encoding.4.3.0.nupkg.sha512",
  4174. "system.text.encoding.nuspec"
  4175. ]
  4176. },
  4177. "System.Text.Encodings.Web/6.0.0": {
  4178. "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
  4179. "type": "package",
  4180. "path": "system.text.encodings.web/6.0.0",
  4181. "files": [
  4182. ".nupkg.metadata",
  4183. ".signature.p7s",
  4184. "Icon.png",
  4185. "LICENSE.TXT",
  4186. "THIRD-PARTY-NOTICES.TXT",
  4187. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  4188. "buildTransitive/netcoreapp3.1/_._",
  4189. "lib/net461/System.Text.Encodings.Web.dll",
  4190. "lib/net461/System.Text.Encodings.Web.xml",
  4191. "lib/net6.0/System.Text.Encodings.Web.dll",
  4192. "lib/net6.0/System.Text.Encodings.Web.xml",
  4193. "lib/netcoreapp3.1/System.Text.Encodings.Web.dll",
  4194. "lib/netcoreapp3.1/System.Text.Encodings.Web.xml",
  4195. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  4196. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  4197. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  4198. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  4199. "system.text.encodings.web.6.0.0.nupkg.sha512",
  4200. "system.text.encodings.web.nuspec",
  4201. "useSharedDesignerContext.txt"
  4202. ]
  4203. },
  4204. "System.Text.Json/6.0.0": {
  4205. "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==",
  4206. "type": "package",
  4207. "path": "system.text.json/6.0.0",
  4208. "files": [
  4209. ".nupkg.metadata",
  4210. ".signature.p7s",
  4211. "Icon.png",
  4212. "LICENSE.TXT",
  4213. "THIRD-PARTY-NOTICES.TXT",
  4214. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  4215. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  4216. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  4217. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  4218. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  4219. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  4220. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  4221. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  4222. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  4223. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  4224. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  4225. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  4226. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  4227. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  4228. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  4229. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  4230. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  4231. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  4232. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  4233. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  4234. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  4235. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  4236. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  4237. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  4238. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  4239. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  4240. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  4241. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  4242. "build/System.Text.Json.targets",
  4243. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  4244. "buildTransitive/netcoreapp3.1/_._",
  4245. "lib/net461/System.Text.Json.dll",
  4246. "lib/net461/System.Text.Json.xml",
  4247. "lib/net6.0/System.Text.Json.dll",
  4248. "lib/net6.0/System.Text.Json.xml",
  4249. "lib/netcoreapp3.1/System.Text.Json.dll",
  4250. "lib/netcoreapp3.1/System.Text.Json.xml",
  4251. "lib/netstandard2.0/System.Text.Json.dll",
  4252. "lib/netstandard2.0/System.Text.Json.xml",
  4253. "system.text.json.6.0.0.nupkg.sha512",
  4254. "system.text.json.nuspec",
  4255. "useSharedDesignerContext.txt"
  4256. ]
  4257. },
  4258. "System.Threading/4.3.0": {
  4259. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  4260. "type": "package",
  4261. "path": "system.threading/4.3.0",
  4262. "files": [
  4263. ".nupkg.metadata",
  4264. ".signature.p7s",
  4265. "ThirdPartyNotices.txt",
  4266. "dotnet_library_license.txt",
  4267. "lib/MonoAndroid10/_._",
  4268. "lib/MonoTouch10/_._",
  4269. "lib/net45/_._",
  4270. "lib/netcore50/System.Threading.dll",
  4271. "lib/netstandard1.3/System.Threading.dll",
  4272. "lib/portable-net45+win8+wp8+wpa81/_._",
  4273. "lib/win8/_._",
  4274. "lib/wp80/_._",
  4275. "lib/wpa81/_._",
  4276. "lib/xamarinios10/_._",
  4277. "lib/xamarinmac20/_._",
  4278. "lib/xamarintvos10/_._",
  4279. "lib/xamarinwatchos10/_._",
  4280. "ref/MonoAndroid10/_._",
  4281. "ref/MonoTouch10/_._",
  4282. "ref/net45/_._",
  4283. "ref/netcore50/System.Threading.dll",
  4284. "ref/netcore50/System.Threading.xml",
  4285. "ref/netcore50/de/System.Threading.xml",
  4286. "ref/netcore50/es/System.Threading.xml",
  4287. "ref/netcore50/fr/System.Threading.xml",
  4288. "ref/netcore50/it/System.Threading.xml",
  4289. "ref/netcore50/ja/System.Threading.xml",
  4290. "ref/netcore50/ko/System.Threading.xml",
  4291. "ref/netcore50/ru/System.Threading.xml",
  4292. "ref/netcore50/zh-hans/System.Threading.xml",
  4293. "ref/netcore50/zh-hant/System.Threading.xml",
  4294. "ref/netstandard1.0/System.Threading.dll",
  4295. "ref/netstandard1.0/System.Threading.xml",
  4296. "ref/netstandard1.0/de/System.Threading.xml",
  4297. "ref/netstandard1.0/es/System.Threading.xml",
  4298. "ref/netstandard1.0/fr/System.Threading.xml",
  4299. "ref/netstandard1.0/it/System.Threading.xml",
  4300. "ref/netstandard1.0/ja/System.Threading.xml",
  4301. "ref/netstandard1.0/ko/System.Threading.xml",
  4302. "ref/netstandard1.0/ru/System.Threading.xml",
  4303. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  4304. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  4305. "ref/netstandard1.3/System.Threading.dll",
  4306. "ref/netstandard1.3/System.Threading.xml",
  4307. "ref/netstandard1.3/de/System.Threading.xml",
  4308. "ref/netstandard1.3/es/System.Threading.xml",
  4309. "ref/netstandard1.3/fr/System.Threading.xml",
  4310. "ref/netstandard1.3/it/System.Threading.xml",
  4311. "ref/netstandard1.3/ja/System.Threading.xml",
  4312. "ref/netstandard1.3/ko/System.Threading.xml",
  4313. "ref/netstandard1.3/ru/System.Threading.xml",
  4314. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  4315. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  4316. "ref/portable-net45+win8+wp8+wpa81/_._",
  4317. "ref/win8/_._",
  4318. "ref/wp80/_._",
  4319. "ref/wpa81/_._",
  4320. "ref/xamarinios10/_._",
  4321. "ref/xamarinmac20/_._",
  4322. "ref/xamarintvos10/_._",
  4323. "ref/xamarinwatchos10/_._",
  4324. "runtimes/aot/lib/netcore50/System.Threading.dll",
  4325. "system.threading.4.3.0.nupkg.sha512",
  4326. "system.threading.nuspec"
  4327. ]
  4328. },
  4329. "System.Threading.Tasks/4.3.0": {
  4330. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  4331. "type": "package",
  4332. "path": "system.threading.tasks/4.3.0",
  4333. "files": [
  4334. ".nupkg.metadata",
  4335. ".signature.p7s",
  4336. "ThirdPartyNotices.txt",
  4337. "dotnet_library_license.txt",
  4338. "lib/MonoAndroid10/_._",
  4339. "lib/MonoTouch10/_._",
  4340. "lib/net45/_._",
  4341. "lib/portable-net45+win8+wp8+wpa81/_._",
  4342. "lib/win8/_._",
  4343. "lib/wp80/_._",
  4344. "lib/wpa81/_._",
  4345. "lib/xamarinios10/_._",
  4346. "lib/xamarinmac20/_._",
  4347. "lib/xamarintvos10/_._",
  4348. "lib/xamarinwatchos10/_._",
  4349. "ref/MonoAndroid10/_._",
  4350. "ref/MonoTouch10/_._",
  4351. "ref/net45/_._",
  4352. "ref/netcore50/System.Threading.Tasks.dll",
  4353. "ref/netcore50/System.Threading.Tasks.xml",
  4354. "ref/netcore50/de/System.Threading.Tasks.xml",
  4355. "ref/netcore50/es/System.Threading.Tasks.xml",
  4356. "ref/netcore50/fr/System.Threading.Tasks.xml",
  4357. "ref/netcore50/it/System.Threading.Tasks.xml",
  4358. "ref/netcore50/ja/System.Threading.Tasks.xml",
  4359. "ref/netcore50/ko/System.Threading.Tasks.xml",
  4360. "ref/netcore50/ru/System.Threading.Tasks.xml",
  4361. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  4362. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  4363. "ref/netstandard1.0/System.Threading.Tasks.dll",
  4364. "ref/netstandard1.0/System.Threading.Tasks.xml",
  4365. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  4366. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  4367. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  4368. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  4369. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  4370. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  4371. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  4372. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  4373. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  4374. "ref/netstandard1.3/System.Threading.Tasks.dll",
  4375. "ref/netstandard1.3/System.Threading.Tasks.xml",
  4376. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  4377. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  4378. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  4379. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  4380. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  4381. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  4382. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  4383. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  4384. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  4385. "ref/portable-net45+win8+wp8+wpa81/_._",
  4386. "ref/win8/_._",
  4387. "ref/wp80/_._",
  4388. "ref/wpa81/_._",
  4389. "ref/xamarinios10/_._",
  4390. "ref/xamarinmac20/_._",
  4391. "ref/xamarintvos10/_._",
  4392. "ref/xamarinwatchos10/_._",
  4393. "system.threading.tasks.4.3.0.nupkg.sha512",
  4394. "system.threading.tasks.nuspec"
  4395. ]
  4396. },
  4397. "TimeZoneConverter/5.0.0": {
  4398. "sha512": "U7Oilf3Ya6Rmu6gOaBfWyT3q0kwy2av6a5PfTn05CF54C+7DvuLsE3ljASvYmCpsSQeJvpnqU5Uzag6+ysWUeA==",
  4399. "type": "package",
  4400. "path": "timezoneconverter/5.0.0",
  4401. "files": [
  4402. ".nupkg.metadata",
  4403. ".signature.p7s",
  4404. "lib/net461/TimeZoneConverter.dll",
  4405. "lib/net461/TimeZoneConverter.xml",
  4406. "lib/netstandard2.0/TimeZoneConverter.dll",
  4407. "lib/netstandard2.0/TimeZoneConverter.xml",
  4408. "timezoneconverter.5.0.0.nupkg.sha512",
  4409. "timezoneconverter.nuspec"
  4410. ]
  4411. },
  4412. "Volo.Abp.Auditing/6.0.0": {
  4413. "sha512": "N6+CVqU293yzZOKZ5DFtWcphEhjVLqQ6jvW64OtLQYXwb19VFDXnsyrGS8E+eTIIkK2fhlnDQ1FXHGMCTM/lcw==",
  4414. "type": "package",
  4415. "path": "volo.abp.auditing/6.0.0",
  4416. "files": [
  4417. ".nupkg.metadata",
  4418. ".signature.p7s",
  4419. "lib/netstandard2.0/Volo.Abp.Auditing.dll",
  4420. "lib/netstandard2.0/Volo.Abp.Auditing.pdb",
  4421. "lib/netstandard2.0/Volo.Abp.Auditing.xml",
  4422. "volo.abp.auditing.6.0.0.nupkg.sha512",
  4423. "volo.abp.auditing.nuspec"
  4424. ]
  4425. },
  4426. "Volo.Abp.Auditing.Contracts/6.0.0": {
  4427. "sha512": "QgTzXl19tIx1SXy1A6MBdc6rB1uzc01AMIaNm450fr7z2KuCWVzGWkVCJ9LhOrkuYkKxT2dxH1NSr/oyjr/sDQ==",
  4428. "type": "package",
  4429. "path": "volo.abp.auditing.contracts/6.0.0",
  4430. "files": [
  4431. ".nupkg.metadata",
  4432. ".signature.p7s",
  4433. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll",
  4434. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.pdb",
  4435. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.xml",
  4436. "volo.abp.auditing.contracts.6.0.0.nupkg.sha512",
  4437. "volo.abp.auditing.contracts.nuspec"
  4438. ]
  4439. },
  4440. "Volo.Abp.Authorization/6.0.0": {
  4441. "sha512": "+ktQSujPTlA96lw8ih/iTTmncJXX3f1kTWsEWtjfmI0N3HeiVl2NFLk9g51PxHYuqOpbZpyt4y5498Q8OSpLWw==",
  4442. "type": "package",
  4443. "path": "volo.abp.authorization/6.0.0",
  4444. "files": [
  4445. ".nupkg.metadata",
  4446. ".signature.p7s",
  4447. "lib/netstandard2.0/Volo.Abp.Authorization.dll",
  4448. "lib/netstandard2.0/Volo.Abp.Authorization.pdb",
  4449. "lib/netstandard2.0/Volo.Abp.Authorization.xml",
  4450. "volo.abp.authorization.6.0.0.nupkg.sha512",
  4451. "volo.abp.authorization.nuspec"
  4452. ]
  4453. },
  4454. "Volo.Abp.Authorization.Abstractions/6.0.0": {
  4455. "sha512": "46NIPtnfHGPX12b79kp4uLnCI+zyybD3p1pIGBlpsdlSiNrGiMys5hnar8C7z8zv14I3SUaTeaQAS8hA3JoHxA==",
  4456. "type": "package",
  4457. "path": "volo.abp.authorization.abstractions/6.0.0",
  4458. "files": [
  4459. ".nupkg.metadata",
  4460. ".signature.p7s",
  4461. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll",
  4462. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.pdb",
  4463. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.xml",
  4464. "volo.abp.authorization.abstractions.6.0.0.nupkg.sha512",
  4465. "volo.abp.authorization.abstractions.nuspec"
  4466. ]
  4467. },
  4468. "Volo.Abp.BackgroundWorkers/6.0.0": {
  4469. "sha512": "PzinROYXCmdHh6HkYYCSOTabMH8hbau1Gm4Y8373SmoawEvK+/vIbm5MbfZuS8JbftvCFN15LQR7l5hbk5GtFw==",
  4470. "type": "package",
  4471. "path": "volo.abp.backgroundworkers/6.0.0",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll",
  4476. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.pdb",
  4477. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.xml",
  4478. "volo.abp.backgroundworkers.6.0.0.nupkg.sha512",
  4479. "volo.abp.backgroundworkers.nuspec"
  4480. ]
  4481. },
  4482. "Volo.Abp.Caching/6.0.0": {
  4483. "sha512": "i+YHjH98KnmS2ohc+T3Gb5LvBLyfeB8M+zVib2LKm4hC/2hn/nFnV5Ss0YTwHgMErEcX1n8vWqBmDpWkcZl4Ug==",
  4484. "type": "package",
  4485. "path": "volo.abp.caching/6.0.0",
  4486. "files": [
  4487. ".nupkg.metadata",
  4488. ".signature.p7s",
  4489. "lib/netstandard2.0/Volo.Abp.Caching.dll",
  4490. "lib/netstandard2.0/Volo.Abp.Caching.pdb",
  4491. "lib/netstandard2.0/Volo.Abp.Caching.xml",
  4492. "volo.abp.caching.6.0.0.nupkg.sha512",
  4493. "volo.abp.caching.nuspec"
  4494. ]
  4495. },
  4496. "Volo.Abp.Core/6.0.0": {
  4497. "sha512": "FrnB32ndlWWtsLxwl6QluCCpj3aaIFkYMJodGBlM5lbjw3dNBF6DsVjGTWpGwOvU/67A9FLdIKWmt7pp3tfEUA==",
  4498. "type": "package",
  4499. "path": "volo.abp.core/6.0.0",
  4500. "files": [
  4501. ".nupkg.metadata",
  4502. ".signature.p7s",
  4503. "lib/netstandard2.0/Volo.Abp.Core.dll",
  4504. "lib/netstandard2.0/Volo.Abp.Core.pdb",
  4505. "lib/netstandard2.0/Volo.Abp.Core.xml",
  4506. "volo.abp.core.6.0.0.nupkg.sha512",
  4507. "volo.abp.core.nuspec"
  4508. ]
  4509. },
  4510. "Volo.Abp.Data/6.0.0": {
  4511. "sha512": "CqK53uxajTHzk1Im1IMZc26+X0RP4zVhca65lnsN/0BbF0NZ0Gq/H37rBcxXdrVcZ4+WNAhL/8OiV4hmZV8Gbg==",
  4512. "type": "package",
  4513. "path": "volo.abp.data/6.0.0",
  4514. "files": [
  4515. ".nupkg.metadata",
  4516. ".signature.p7s",
  4517. "lib/netstandard2.0/Volo.Abp.Data.dll",
  4518. "lib/netstandard2.0/Volo.Abp.Data.pdb",
  4519. "lib/netstandard2.0/Volo.Abp.Data.xml",
  4520. "volo.abp.data.6.0.0.nupkg.sha512",
  4521. "volo.abp.data.nuspec"
  4522. ]
  4523. },
  4524. "Volo.Abp.Ddd.Domain/6.0.0": {
  4525. "sha512": "msv9LDHfxYS5vZJN3GuKQWnn8EdZ40WnUZUzull7kSZhcSUf6i+4d/SuaZ38BrTYDkwy8zghkimbosn1JfvA/g==",
  4526. "type": "package",
  4527. "path": "volo.abp.ddd.domain/6.0.0",
  4528. "files": [
  4529. ".nupkg.metadata",
  4530. ".signature.p7s",
  4531. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll",
  4532. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.pdb",
  4533. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.xml",
  4534. "volo.abp.ddd.domain.6.0.0.nupkg.sha512",
  4535. "volo.abp.ddd.domain.nuspec"
  4536. ]
  4537. },
  4538. "Volo.Abp.DistributedLocking.Abstractions/6.0.0": {
  4539. "sha512": "h1tU9GwXfITqZzWl86HIMTIzQEYKczlmxLjk4s0NEKA/gGec/zMbepasMh/VnXh31GS754sMm78Wjy5f3pjeNg==",
  4540. "type": "package",
  4541. "path": "volo.abp.distributedlocking.abstractions/6.0.0",
  4542. "files": [
  4543. ".nupkg.metadata",
  4544. ".signature.p7s",
  4545. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll",
  4546. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.pdb",
  4547. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.xml",
  4548. "volo.abp.distributedlocking.abstractions.6.0.0.nupkg.sha512",
  4549. "volo.abp.distributedlocking.abstractions.nuspec"
  4550. ]
  4551. },
  4552. "Volo.Abp.EntityFrameworkCore/6.0.0": {
  4553. "sha512": "0OIwV8N+lOf6ocaMwlAvB5SlBWrWugeUC48rAQ9K/l/BIxGoSfGMn4LlJl8O6dgQxHVdlHAlqyHe9Xvm6PIPTA==",
  4554. "type": "package",
  4555. "path": "volo.abp.entityframeworkcore/6.0.0",
  4556. "files": [
  4557. ".nupkg.metadata",
  4558. ".signature.p7s",
  4559. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll",
  4560. "lib/net6.0/Volo.Abp.EntityFrameworkCore.pdb",
  4561. "lib/net6.0/Volo.Abp.EntityFrameworkCore.xml",
  4562. "volo.abp.entityframeworkcore.6.0.0.nupkg.sha512",
  4563. "volo.abp.entityframeworkcore.nuspec"
  4564. ]
  4565. },
  4566. "Volo.Abp.EntityFrameworkCore.MySQL/6.0.0": {
  4567. "sha512": "c9PFDiRtZiiFcqQoanx56j7k5dYgWSJyTPePX0DSOFw0TeVRfHOv7WV+sjvRf74B48ZRk86x6hr7N0ikVH/tow==",
  4568. "type": "package",
  4569. "path": "volo.abp.entityframeworkcore.mysql/6.0.0",
  4570. "files": [
  4571. ".nupkg.metadata",
  4572. ".signature.p7s",
  4573. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll",
  4574. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.pdb",
  4575. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.xml",
  4576. "volo.abp.entityframeworkcore.mysql.6.0.0.nupkg.sha512",
  4577. "volo.abp.entityframeworkcore.mysql.nuspec"
  4578. ]
  4579. },
  4580. "Volo.Abp.EventBus/6.0.0": {
  4581. "sha512": "T2pmyU0jvnASU3Ulem4P51bMHxX/UnK9WyG6aOppnMFOMMVJMBEJPXcoaRUM6jH4RIXXV+JMO6rgHf07mYVECw==",
  4582. "type": "package",
  4583. "path": "volo.abp.eventbus/6.0.0",
  4584. "files": [
  4585. ".nupkg.metadata",
  4586. ".signature.p7s",
  4587. "lib/netstandard2.0/Volo.Abp.EventBus.dll",
  4588. "lib/netstandard2.0/Volo.Abp.EventBus.pdb",
  4589. "lib/netstandard2.0/Volo.Abp.EventBus.xml",
  4590. "volo.abp.eventbus.6.0.0.nupkg.sha512",
  4591. "volo.abp.eventbus.nuspec"
  4592. ]
  4593. },
  4594. "Volo.Abp.EventBus.Abstractions/6.0.0": {
  4595. "sha512": "DKXpDfgJW5kcajKZbJaBf0ytJ4b4lE6DDJTvpPxjl/378ZqwtqtmGJMgyV8/EbVn3Gsyt71qc9xfN7BOSDzZiw==",
  4596. "type": "package",
  4597. "path": "volo.abp.eventbus.abstractions/6.0.0",
  4598. "files": [
  4599. ".nupkg.metadata",
  4600. ".signature.p7s",
  4601. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll",
  4602. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.pdb",
  4603. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.xml",
  4604. "volo.abp.eventbus.abstractions.6.0.0.nupkg.sha512",
  4605. "volo.abp.eventbus.abstractions.nuspec"
  4606. ]
  4607. },
  4608. "Volo.Abp.ExceptionHandling/6.0.0": {
  4609. "sha512": "4RROFsHrpInr8c1DhXrrO39YAvobjSjGnhAMsSV0TuRS+MMuUw+qrGMleAzFAvBdya7vGVjpyLVXe+0g5ualhA==",
  4610. "type": "package",
  4611. "path": "volo.abp.exceptionhandling/6.0.0",
  4612. "files": [
  4613. ".nupkg.metadata",
  4614. ".signature.p7s",
  4615. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll",
  4616. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.pdb",
  4617. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.xml",
  4618. "volo.abp.exceptionhandling.6.0.0.nupkg.sha512",
  4619. "volo.abp.exceptionhandling.nuspec"
  4620. ]
  4621. },
  4622. "Volo.Abp.Guids/6.0.0": {
  4623. "sha512": "8FPn1L9rJz6Ux3LjMvIMW8YVxn6gj2FTHRbyRclVsWOrw3J6ATZI9QXeMVvvw67OWFYNPj2RAPHr9Q4AXhzFfQ==",
  4624. "type": "package",
  4625. "path": "volo.abp.guids/6.0.0",
  4626. "files": [
  4627. ".nupkg.metadata",
  4628. ".signature.p7s",
  4629. "lib/netstandard2.0/Volo.Abp.Guids.dll",
  4630. "lib/netstandard2.0/Volo.Abp.Guids.pdb",
  4631. "lib/netstandard2.0/Volo.Abp.Guids.xml",
  4632. "volo.abp.guids.6.0.0.nupkg.sha512",
  4633. "volo.abp.guids.nuspec"
  4634. ]
  4635. },
  4636. "Volo.Abp.Json/6.0.0": {
  4637. "sha512": "DuKQXDJw2ww3IhGKHDT9GfkH29IHPWUDsPXRX9C3vhadZ3877i5Z1RxEKmRq29QN0iUuLu2u/wqycuf01wSCyQ==",
  4638. "type": "package",
  4639. "path": "volo.abp.json/6.0.0",
  4640. "files": [
  4641. ".nupkg.metadata",
  4642. ".signature.p7s",
  4643. "lib/netstandard2.0/Volo.Abp.Json.dll",
  4644. "lib/netstandard2.0/Volo.Abp.Json.pdb",
  4645. "lib/netstandard2.0/Volo.Abp.Json.xml",
  4646. "volo.abp.json.6.0.0.nupkg.sha512",
  4647. "volo.abp.json.nuspec"
  4648. ]
  4649. },
  4650. "Volo.Abp.Localization/6.0.0": {
  4651. "sha512": "T6ZNOBjVRmHydEqbtKc/t1i4Vo4KidrEG60L11u4QczGeT53hirK4haN9YpIXbAKlEiJY1kztovTTCdUpvJb1w==",
  4652. "type": "package",
  4653. "path": "volo.abp.localization/6.0.0",
  4654. "files": [
  4655. ".nupkg.metadata",
  4656. ".signature.p7s",
  4657. "lib/netstandard2.0/Volo.Abp.Localization.dll",
  4658. "lib/netstandard2.0/Volo.Abp.Localization.pdb",
  4659. "lib/netstandard2.0/Volo.Abp.Localization.xml",
  4660. "volo.abp.localization.6.0.0.nupkg.sha512",
  4661. "volo.abp.localization.nuspec"
  4662. ]
  4663. },
  4664. "Volo.Abp.Localization.Abstractions/6.0.0": {
  4665. "sha512": "oAyh3ZZe1DisP2Nud4S9iLi8J0ZJIcTfdWd9Z6sE7qh3HVod1DHRdgBoscngC+FP6dzHrdHas5S59jfnBegfbg==",
  4666. "type": "package",
  4667. "path": "volo.abp.localization.abstractions/6.0.0",
  4668. "files": [
  4669. ".nupkg.metadata",
  4670. ".signature.p7s",
  4671. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll",
  4672. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.pdb",
  4673. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.xml",
  4674. "volo.abp.localization.abstractions.6.0.0.nupkg.sha512",
  4675. "volo.abp.localization.abstractions.nuspec"
  4676. ]
  4677. },
  4678. "Volo.Abp.MultiTenancy/6.0.0": {
  4679. "sha512": "KgnMiv2NhjXZ6Znhdk/fJIpNfkeqSjxNJEX61sXSEfidHFYLmhkUfRdoQcc7tMp0OYLaajZJh2VdJx85Ilns1A==",
  4680. "type": "package",
  4681. "path": "volo.abp.multitenancy/6.0.0",
  4682. "files": [
  4683. ".nupkg.metadata",
  4684. ".signature.p7s",
  4685. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll",
  4686. "lib/netstandard2.0/Volo.Abp.MultiTenancy.pdb",
  4687. "lib/netstandard2.0/Volo.Abp.MultiTenancy.xml",
  4688. "volo.abp.multitenancy.6.0.0.nupkg.sha512",
  4689. "volo.abp.multitenancy.nuspec"
  4690. ]
  4691. },
  4692. "Volo.Abp.ObjectExtending/6.0.0": {
  4693. "sha512": "fP59Jx+XG9gaIuNpDvV2dURzK3Zvc93V3E93qj4KVNjimbjh6EbqD6HMpRb4lQGVMF5PwRQOpjLvUDa//KkGYQ==",
  4694. "type": "package",
  4695. "path": "volo.abp.objectextending/6.0.0",
  4696. "files": [
  4697. ".nupkg.metadata",
  4698. ".signature.p7s",
  4699. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll",
  4700. "lib/netstandard2.0/Volo.Abp.ObjectExtending.pdb",
  4701. "lib/netstandard2.0/Volo.Abp.ObjectExtending.xml",
  4702. "volo.abp.objectextending.6.0.0.nupkg.sha512",
  4703. "volo.abp.objectextending.nuspec"
  4704. ]
  4705. },
  4706. "Volo.Abp.ObjectMapping/6.0.0": {
  4707. "sha512": "SZKoNwLrorq6YAuk2/m8KfCwFp5TG5bbqZbCjCwCYf5x3PGGFi+n108m0vEPIZsvdb0B4t6GrrgCsCMg9Wz8jg==",
  4708. "type": "package",
  4709. "path": "volo.abp.objectmapping/6.0.0",
  4710. "files": [
  4711. ".nupkg.metadata",
  4712. ".signature.p7s",
  4713. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll",
  4714. "lib/netstandard2.0/Volo.Abp.ObjectMapping.pdb",
  4715. "lib/netstandard2.0/Volo.Abp.ObjectMapping.xml",
  4716. "volo.abp.objectmapping.6.0.0.nupkg.sha512",
  4717. "volo.abp.objectmapping.nuspec"
  4718. ]
  4719. },
  4720. "Volo.Abp.PermissionManagement.Domain/6.0.0": {
  4721. "sha512": "qtYyZ/z7Zh5fMfaJXEL06iAuSgtrxt98M2oHN52POuClOx1V0Jix0fejeWsfJvvGs/l1+EyDWb2ul2IiOkuksg==",
  4722. "type": "package",
  4723. "path": "volo.abp.permissionmanagement.domain/6.0.0",
  4724. "files": [
  4725. ".nupkg.metadata",
  4726. ".signature.p7s",
  4727. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll",
  4728. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.pdb",
  4729. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.xml",
  4730. "volo.abp.permissionmanagement.domain.6.0.0.nupkg.sha512",
  4731. "volo.abp.permissionmanagement.domain.nuspec"
  4732. ]
  4733. },
  4734. "Volo.Abp.PermissionManagement.Domain.Shared/6.0.0": {
  4735. "sha512": "BjLkzErtgq3LYzt4T16QwG7FJF/pe4DrjrWOsEZc852FliAzUF9MVOOPvcAADNgIHpCJQXBJqu6c+yf77g9wsA==",
  4736. "type": "package",
  4737. "path": "volo.abp.permissionmanagement.domain.shared/6.0.0",
  4738. "files": [
  4739. ".nupkg.metadata",
  4740. ".signature.p7s",
  4741. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll",
  4742. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.pdb",
  4743. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.xml",
  4744. "volo.abp.permissionmanagement.domain.shared.6.0.0.nupkg.sha512",
  4745. "volo.abp.permissionmanagement.domain.shared.nuspec"
  4746. ]
  4747. },
  4748. "Volo.Abp.PermissionManagement.EntityFrameworkCore/6.0.0": {
  4749. "sha512": "xS/RfnfEv49cHWpE90aFSPlg9ZdW2zeHwfSHtBxXdF1t24E0Bbouzc33iUATMPYnH02nwLGMy8n6QDRZht4+pA==",
  4750. "type": "package",
  4751. "path": "volo.abp.permissionmanagement.entityframeworkcore/6.0.0",
  4752. "files": [
  4753. ".nupkg.metadata",
  4754. ".signature.p7s",
  4755. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll",
  4756. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.pdb",
  4757. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.xml",
  4758. "volo.abp.permissionmanagement.entityframeworkcore.6.0.0.nupkg.sha512",
  4759. "volo.abp.permissionmanagement.entityframeworkcore.nuspec"
  4760. ]
  4761. },
  4762. "Volo.Abp.Security/6.0.0": {
  4763. "sha512": "YCxB5Qnbjxq0f7jxvRsDh3UiH/x5kxadiD7V0MnbbY2rPSC0Xc3VFT15/Hj9MYBcHp3q4sP1zGR2ZE1vgfmHMA==",
  4764. "type": "package",
  4765. "path": "volo.abp.security/6.0.0",
  4766. "files": [
  4767. ".nupkg.metadata",
  4768. ".signature.p7s",
  4769. "lib/netstandard2.0/Volo.Abp.Security.dll",
  4770. "lib/netstandard2.0/Volo.Abp.Security.pdb",
  4771. "lib/netstandard2.0/Volo.Abp.Security.xml",
  4772. "volo.abp.security.6.0.0.nupkg.sha512",
  4773. "volo.abp.security.nuspec"
  4774. ]
  4775. },
  4776. "Volo.Abp.Serialization/6.0.0": {
  4777. "sha512": "fQUBF1eyxxrw81UCAehHG/GDr9TqAPh5MzjsV8RW7PhDPwkpxzypKVx1MwR+SFhF+zY0Eml1olk5iJ8u8nxBqQ==",
  4778. "type": "package",
  4779. "path": "volo.abp.serialization/6.0.0",
  4780. "files": [
  4781. ".nupkg.metadata",
  4782. ".signature.p7s",
  4783. "lib/netstandard2.0/Volo.Abp.Serialization.dll",
  4784. "lib/netstandard2.0/Volo.Abp.Serialization.pdb",
  4785. "lib/netstandard2.0/Volo.Abp.Serialization.xml",
  4786. "volo.abp.serialization.6.0.0.nupkg.sha512",
  4787. "volo.abp.serialization.nuspec"
  4788. ]
  4789. },
  4790. "Volo.Abp.Settings/6.0.0": {
  4791. "sha512": "nkXUTg1o9w/im8c0D/qALfntgFllJMIV+/wOel4gG9l8GFNlXxH6I1y2JiwkCgs1AGJxsbXsmDdPnBDYsJBGhw==",
  4792. "type": "package",
  4793. "path": "volo.abp.settings/6.0.0",
  4794. "files": [
  4795. ".nupkg.metadata",
  4796. ".signature.p7s",
  4797. "lib/netstandard2.0/Volo.Abp.Settings.dll",
  4798. "lib/netstandard2.0/Volo.Abp.Settings.pdb",
  4799. "lib/netstandard2.0/Volo.Abp.Settings.xml",
  4800. "volo.abp.settings.6.0.0.nupkg.sha512",
  4801. "volo.abp.settings.nuspec"
  4802. ]
  4803. },
  4804. "Volo.Abp.Specifications/6.0.0": {
  4805. "sha512": "LtW8Kwgnx7PXZKHN/sgtza/zJGbDmZYolaplE4pzcFTrq30yGNkr3u+y9Tk0XP9AVT4ZtzGCVi1y/r+XsuwBWQ==",
  4806. "type": "package",
  4807. "path": "volo.abp.specifications/6.0.0",
  4808. "files": [
  4809. ".nupkg.metadata",
  4810. ".signature.p7s",
  4811. "lib/netstandard2.0/Volo.Abp.Specifications.dll",
  4812. "lib/netstandard2.0/Volo.Abp.Specifications.pdb",
  4813. "lib/netstandard2.0/Volo.Abp.Specifications.xml",
  4814. "volo.abp.specifications.6.0.0.nupkg.sha512",
  4815. "volo.abp.specifications.nuspec"
  4816. ]
  4817. },
  4818. "Volo.Abp.Threading/6.0.0": {
  4819. "sha512": "PL4OCig1Mg4l3kBMYWKtW7VNMLLFtEtuO/o1GWb0a96Fg1YhdcrpAEjDfvh0JtPpvqaWfHsYIibKEOXyQHLRew==",
  4820. "type": "package",
  4821. "path": "volo.abp.threading/6.0.0",
  4822. "files": [
  4823. ".nupkg.metadata",
  4824. ".signature.p7s",
  4825. "lib/netstandard2.0/Volo.Abp.Threading.dll",
  4826. "lib/netstandard2.0/Volo.Abp.Threading.pdb",
  4827. "lib/netstandard2.0/Volo.Abp.Threading.xml",
  4828. "volo.abp.threading.6.0.0.nupkg.sha512",
  4829. "volo.abp.threading.nuspec"
  4830. ]
  4831. },
  4832. "Volo.Abp.Timing/6.0.0": {
  4833. "sha512": "iX2iFm47C0RDU6cO+RBAqYSmphU9savYTCMcKWiJ8m3ClnDpKN6NIS/ZSMUTMnIWVAGFcqFBj4LwJ4USawHq4Q==",
  4834. "type": "package",
  4835. "path": "volo.abp.timing/6.0.0",
  4836. "files": [
  4837. ".nupkg.metadata",
  4838. ".signature.p7s",
  4839. "lib/netstandard2.0/Volo.Abp.Timing.dll",
  4840. "lib/netstandard2.0/Volo.Abp.Timing.pdb",
  4841. "lib/netstandard2.0/Volo.Abp.Timing.xml",
  4842. "volo.abp.timing.6.0.0.nupkg.sha512",
  4843. "volo.abp.timing.nuspec"
  4844. ]
  4845. },
  4846. "Volo.Abp.Uow/6.0.0": {
  4847. "sha512": "CA2DDSLdGgyi6FiSFymRte0gr07Wg5Z/+zUF1KnYgwPoqrhYGG5VZOJ8YaM5uxvNLWO9s04SleGi7ynxne8fRA==",
  4848. "type": "package",
  4849. "path": "volo.abp.uow/6.0.0",
  4850. "files": [
  4851. ".nupkg.metadata",
  4852. ".signature.p7s",
  4853. "lib/netstandard2.0/Volo.Abp.Uow.dll",
  4854. "lib/netstandard2.0/Volo.Abp.Uow.pdb",
  4855. "lib/netstandard2.0/Volo.Abp.Uow.xml",
  4856. "volo.abp.uow.6.0.0.nupkg.sha512",
  4857. "volo.abp.uow.nuspec"
  4858. ]
  4859. },
  4860. "Volo.Abp.Validation/6.0.0": {
  4861. "sha512": "Iza3FCoOaClOzHb+ue6q1UPd+MzfXjPfZ29YF8AUe6VfWx49EbquvSk0zjYVx3ikOBhnhffQiqv/QzzQtYmq6A==",
  4862. "type": "package",
  4863. "path": "volo.abp.validation/6.0.0",
  4864. "files": [
  4865. ".nupkg.metadata",
  4866. ".signature.p7s",
  4867. "lib/netstandard2.0/Volo.Abp.Validation.dll",
  4868. "lib/netstandard2.0/Volo.Abp.Validation.pdb",
  4869. "lib/netstandard2.0/Volo.Abp.Validation.xml",
  4870. "volo.abp.validation.6.0.0.nupkg.sha512",
  4871. "volo.abp.validation.nuspec"
  4872. ]
  4873. },
  4874. "Volo.Abp.Validation.Abstractions/6.0.0": {
  4875. "sha512": "ltO2mrGCftfYSt/X45ws+TrA0znQDckIr4uvhjU6t8CHWZ1s0L13w6TbinSAubCu20voFYIV3F2YWDrlhHjbyQ==",
  4876. "type": "package",
  4877. "path": "volo.abp.validation.abstractions/6.0.0",
  4878. "files": [
  4879. ".nupkg.metadata",
  4880. ".signature.p7s",
  4881. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll",
  4882. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.pdb",
  4883. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.xml",
  4884. "volo.abp.validation.abstractions.6.0.0.nupkg.sha512",
  4885. "volo.abp.validation.abstractions.nuspec"
  4886. ]
  4887. },
  4888. "Volo.Abp.VirtualFileSystem/6.0.0": {
  4889. "sha512": "LAsJZ0OXhpSirLaMPMXXsT41Y7xxb/QpsnTxdyyit77ErSlljyIvlqno+vvPrNlsC/69De7tgt5aIVsE1T96JA==",
  4890. "type": "package",
  4891. "path": "volo.abp.virtualfilesystem/6.0.0",
  4892. "files": [
  4893. ".nupkg.metadata",
  4894. ".signature.p7s",
  4895. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll",
  4896. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.pdb",
  4897. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.xml",
  4898. "volo.abp.virtualfilesystem.6.0.0.nupkg.sha512",
  4899. "volo.abp.virtualfilesystem.nuspec"
  4900. ]
  4901. },
  4902. "Procurement.Domain/1.0.0": {
  4903. "type": "project",
  4904. "path": "../Procurement.Domain/Procurement.Domain.csproj",
  4905. "msbuildProject": "../Procurement.Domain/Procurement.Domain.csproj"
  4906. }
  4907. },
  4908. "projectFileDependencyGroups": {
  4909. "net6.0": [
  4910. "Microsoft.EntityFrameworkCore.Design >= 6.0.3",
  4911. "Procurement.Domain >= 1.0.0",
  4912. "Volo.Abp.EntityFrameworkCore.MySQL >= 6.0.0",
  4913. "Volo.Abp.PermissionManagement.EntityFrameworkCore >= 6.0.0"
  4914. ]
  4915. },
  4916. "packageFolders": {
  4917. "C:\\Users\\fayimi\\.nuget\\packages\\": {},
  4918. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
  4919. "C:\\Microsoft\\Xamarin\\NuGet\\": {},
  4920. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
  4921. },
  4922. "project": {
  4923. "version": "1.0.0",
  4924. "restore": {
  4925. "projectUniqueName": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\Procurement.EntityFrameworkCore.csproj",
  4926. "projectName": "Procurement.EntityFrameworkCore",
  4927. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\Procurement.EntityFrameworkCore.csproj",
  4928. "packagesPath": "C:\\Users\\fayimi\\.nuget\\packages\\",
  4929. "outputPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\obj\\",
  4930. "projectStyle": "PackageReference",
  4931. "fallbackFolders": [
  4932. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
  4933. "C:\\Microsoft\\Xamarin\\NuGet\\",
  4934. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
  4935. ],
  4936. "configFilePaths": [
  4937. "C:\\Users\\fayimi\\AppData\\Roaming\\NuGet\\NuGet.Config",
  4938. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  4939. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
  4940. "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
  4941. ],
  4942. "originalTargetFrameworks": [
  4943. "net6.0"
  4944. ],
  4945. "sources": {
  4946. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  4947. "https://api.nuget.org/v3/index.json": {}
  4948. },
  4949. "frameworks": {
  4950. "net6.0": {
  4951. "targetAlias": "net6.0",
  4952. "projectReferences": {
  4953. "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Domain\\Procurement.Domain.csproj": {
  4954. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Domain\\Procurement.Domain.csproj"
  4955. }
  4956. }
  4957. }
  4958. },
  4959. "warningProperties": {
  4960. "warnAsError": [
  4961. "NU1605"
  4962. ]
  4963. }
  4964. },
  4965. "frameworks": {
  4966. "net6.0": {
  4967. "targetAlias": "net6.0",
  4968. "dependencies": {
  4969. "Microsoft.EntityFrameworkCore.Design": {
  4970. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  4971. "suppressParent": "All",
  4972. "target": "Package",
  4973. "version": "[6.0.3, )"
  4974. },
  4975. "Volo.Abp.EntityFrameworkCore.MySQL": {
  4976. "target": "Package",
  4977. "version": "[6.0.0, )"
  4978. },
  4979. "Volo.Abp.PermissionManagement.EntityFrameworkCore": {
  4980. "target": "Package",
  4981. "version": "[6.0.0, )"
  4982. }
  4983. },
  4984. "imports": [
  4985. "net461",
  4986. "net462",
  4987. "net47",
  4988. "net471",
  4989. "net472",
  4990. "net48",
  4991. "net481"
  4992. ],
  4993. "assetTargetFallback": true,
  4994. "warn": true,
  4995. "frameworkReferences": {
  4996. "Microsoft.NETCore.App": {
  4997. "privateAssets": "all"
  4998. }
  4999. },
  5000. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  5001. }
  5002. }
  5003. }
  5004. }