project.assets.json 245 KB

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