project.assets.json 226 KB

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