project.assets.json 317 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  5. "Autofac/6.4.0": {
  6. "type": "package",
  7. "dependencies": {
  8. "System.Diagnostics.DiagnosticSource": "4.7.1"
  9. },
  10. "compile": {
  11. "lib/net6.0/Autofac.dll": {
  12. "related": ".xml"
  13. }
  14. },
  15. "runtime": {
  16. "lib/net6.0/Autofac.dll": {
  17. "related": ".xml"
  18. }
  19. }
  20. },
  21. "Autofac.Extensions.DependencyInjection/8.0.0": {
  22. "type": "package",
  23. "dependencies": {
  24. "Autofac": "6.4.0",
  25. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0"
  26. },
  27. "compile": {
  28. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  29. "related": ".xml"
  30. }
  31. },
  32. "runtime": {
  33. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  34. "related": ".xml"
  35. }
  36. }
  37. },
  38. "AutoMapper/12.0.0": {
  39. "type": "package",
  40. "dependencies": {
  41. "Microsoft.CSharp": "4.7.0"
  42. },
  43. "compile": {
  44. "lib/netstandard2.1/AutoMapper.dll": {
  45. "related": ".xml"
  46. }
  47. },
  48. "runtime": {
  49. "lib/netstandard2.1/AutoMapper.dll": {
  50. "related": ".xml"
  51. }
  52. }
  53. },
  54. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.0": {
  55. "type": "package",
  56. "dependencies": {
  57. "AutoMapper": "12.0.0",
  58. "Microsoft.Extensions.Options": "6.0.0"
  59. },
  60. "compile": {
  61. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  62. },
  63. "runtime": {
  64. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  65. }
  66. },
  67. "BouncyCastle.NetCore/1.8.5": {
  68. "type": "package",
  69. "compile": {
  70. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  71. "related": ".xml"
  72. }
  73. },
  74. "runtime": {
  75. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  76. "related": ".xml"
  77. }
  78. }
  79. },
  80. "Google.Protobuf/3.19.4": {
  81. "type": "package",
  82. "compile": {
  83. "lib/net5.0/Google.Protobuf.dll": {
  84. "related": ".pdb;.xml"
  85. }
  86. },
  87. "runtime": {
  88. "lib/net5.0/Google.Protobuf.dll": {
  89. "related": ".pdb;.xml"
  90. }
  91. }
  92. },
  93. "K4os.Compression.LZ4/1.2.6": {
  94. "type": "package",
  95. "dependencies": {
  96. "System.Memory": "4.5.4"
  97. },
  98. "compile": {
  99. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  100. "related": ".xml"
  101. }
  102. },
  103. "runtime": {
  104. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  105. "related": ".xml"
  106. }
  107. }
  108. },
  109. "K4os.Compression.LZ4.Streams/1.2.6": {
  110. "type": "package",
  111. "dependencies": {
  112. "K4os.Compression.LZ4": "1.2.6",
  113. "K4os.Hash.xxHash": "1.0.6"
  114. },
  115. "compile": {
  116. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  117. "related": ".xml"
  118. }
  119. },
  120. "runtime": {
  121. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  122. "related": ".xml"
  123. }
  124. }
  125. },
  126. "K4os.Hash.xxHash/1.0.6": {
  127. "type": "package",
  128. "dependencies": {
  129. "System.Memory": "4.5.3"
  130. },
  131. "compile": {
  132. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  133. "related": ".xml"
  134. }
  135. },
  136. "runtime": {
  137. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  138. "related": ".xml"
  139. }
  140. }
  141. },
  142. "Microsoft.CSharp/4.7.0": {
  143. "type": "package",
  144. "compile": {
  145. "ref/netcoreapp2.0/_._": {}
  146. },
  147. "runtime": {
  148. "lib/netcoreapp2.0/_._": {}
  149. }
  150. },
  151. "Microsoft.Data.SqlClient/2.1.1": {
  152. "type": "package",
  153. "dependencies": {
  154. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  155. "Microsoft.Identity.Client": "4.21.1",
  156. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  157. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
  158. "Microsoft.Win32.Registry": "4.7.0",
  159. "System.Configuration.ConfigurationManager": "4.7.0",
  160. "System.Diagnostics.DiagnosticSource": "4.7.0",
  161. "System.Runtime.Caching": "4.7.0",
  162. "System.Security.Principal.Windows": "4.7.0",
  163. "System.Text.Encoding.CodePages": "4.7.0"
  164. },
  165. "compile": {
  166. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  167. "related": ".pdb;.xml"
  168. }
  169. },
  170. "runtime": {
  171. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  172. "related": ".pdb;.xml"
  173. }
  174. },
  175. "runtimeTargets": {
  176. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  177. "assetType": "runtime",
  178. "rid": "unix"
  179. },
  180. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  181. "assetType": "runtime",
  182. "rid": "win"
  183. }
  184. }
  185. },
  186. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  187. "type": "package",
  188. "runtimeTargets": {
  189. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  190. "assetType": "native",
  191. "rid": "win-arm"
  192. },
  193. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  194. "assetType": "native",
  195. "rid": "win-arm64"
  196. },
  197. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  198. "assetType": "native",
  199. "rid": "win-x64"
  200. },
  201. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  202. "assetType": "native",
  203. "rid": "win-x86"
  204. }
  205. }
  206. },
  207. "Microsoft.Data.Sqlite/5.0.5": {
  208. "type": "package",
  209. "dependencies": {
  210. "Microsoft.Data.Sqlite.Core": "5.0.5",
  211. "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4"
  212. },
  213. "compile": {
  214. "lib/netstandard2.0/_._": {}
  215. },
  216. "runtime": {
  217. "lib/netstandard2.0/_._": {}
  218. }
  219. },
  220. "Microsoft.Data.Sqlite.Core/5.0.5": {
  221. "type": "package",
  222. "dependencies": {
  223. "SQLitePCLRaw.core": "2.0.4"
  224. },
  225. "compile": {
  226. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  227. "related": ".xml"
  228. }
  229. },
  230. "runtime": {
  231. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  232. "related": ".xml"
  233. }
  234. }
  235. },
  236. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  237. "type": "package",
  238. "compile": {
  239. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  240. "related": ".xml"
  241. }
  242. },
  243. "runtime": {
  244. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  245. "related": ".xml"
  246. }
  247. },
  248. "build": {
  249. "buildTransitive/netcoreapp3.1/_._": {}
  250. }
  251. },
  252. "Microsoft.Extensions.Options/6.0.0": {
  253. "type": "package",
  254. "dependencies": {
  255. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  256. "Microsoft.Extensions.Primitives": "6.0.0"
  257. },
  258. "compile": {
  259. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  260. "related": ".xml"
  261. }
  262. },
  263. "runtime": {
  264. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  265. "related": ".xml"
  266. }
  267. }
  268. },
  269. "Microsoft.Extensions.Primitives/6.0.0": {
  270. "type": "package",
  271. "dependencies": {
  272. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  273. },
  274. "compile": {
  275. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  276. "related": ".xml"
  277. }
  278. },
  279. "runtime": {
  280. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  281. "related": ".xml"
  282. }
  283. },
  284. "build": {
  285. "buildTransitive/netcoreapp3.1/_._": {}
  286. }
  287. },
  288. "Microsoft.Identity.Client/4.21.1": {
  289. "type": "package",
  290. "compile": {
  291. "ref/netcoreapp2.1/_._": {
  292. "related": ".xml"
  293. }
  294. },
  295. "runtime": {
  296. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  297. "related": ".xml"
  298. }
  299. }
  300. },
  301. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  302. "type": "package",
  303. "dependencies": {
  304. "Microsoft.IdentityModel.Tokens": "6.8.0"
  305. },
  306. "compile": {
  307. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  308. "related": ".xml"
  309. }
  310. },
  311. "runtime": {
  312. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  313. "related": ".xml"
  314. }
  315. }
  316. },
  317. "Microsoft.IdentityModel.Logging/6.8.0": {
  318. "type": "package",
  319. "compile": {
  320. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  321. "related": ".xml"
  322. }
  323. },
  324. "runtime": {
  325. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  326. "related": ".xml"
  327. }
  328. }
  329. },
  330. "Microsoft.IdentityModel.Protocols/6.8.0": {
  331. "type": "package",
  332. "dependencies": {
  333. "Microsoft.IdentityModel.Logging": "6.8.0",
  334. "Microsoft.IdentityModel.Tokens": "6.8.0"
  335. },
  336. "compile": {
  337. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  338. "related": ".xml"
  339. }
  340. },
  341. "runtime": {
  342. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  343. "related": ".xml"
  344. }
  345. }
  346. },
  347. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  348. "type": "package",
  349. "dependencies": {
  350. "Microsoft.IdentityModel.Protocols": "6.8.0",
  351. "System.IdentityModel.Tokens.Jwt": "6.8.0"
  352. },
  353. "compile": {
  354. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  355. "related": ".xml"
  356. }
  357. },
  358. "runtime": {
  359. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  360. "related": ".xml"
  361. }
  362. }
  363. },
  364. "Microsoft.IdentityModel.Tokens/6.8.0": {
  365. "type": "package",
  366. "dependencies": {
  367. "Microsoft.CSharp": "4.5.0",
  368. "Microsoft.IdentityModel.Logging": "6.8.0",
  369. "System.Security.Cryptography.Cng": "4.5.0"
  370. },
  371. "compile": {
  372. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  373. "related": ".xml"
  374. }
  375. },
  376. "runtime": {
  377. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  378. "related": ".xml"
  379. }
  380. }
  381. },
  382. "Microsoft.NETCore.Platforms/3.1.0": {
  383. "type": "package",
  384. "compile": {
  385. "lib/netstandard1.0/_._": {}
  386. },
  387. "runtime": {
  388. "lib/netstandard1.0/_._": {}
  389. }
  390. },
  391. "Microsoft.NETCore.Targets/1.1.0": {
  392. "type": "package",
  393. "compile": {
  394. "lib/netstandard1.0/_._": {}
  395. },
  396. "runtime": {
  397. "lib/netstandard1.0/_._": {}
  398. }
  399. },
  400. "Microsoft.Win32.Primitives/4.3.0": {
  401. "type": "package",
  402. "dependencies": {
  403. "Microsoft.NETCore.Platforms": "1.1.0",
  404. "Microsoft.NETCore.Targets": "1.1.0",
  405. "System.Runtime": "4.3.0"
  406. },
  407. "compile": {
  408. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  409. "related": ".xml"
  410. }
  411. }
  412. },
  413. "Microsoft.Win32.Registry/4.7.0": {
  414. "type": "package",
  415. "dependencies": {
  416. "System.Security.AccessControl": "4.7.0",
  417. "System.Security.Principal.Windows": "4.7.0"
  418. },
  419. "compile": {
  420. "ref/netstandard2.0/_._": {
  421. "related": ".xml"
  422. }
  423. },
  424. "runtime": {
  425. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  426. "related": ".xml"
  427. }
  428. },
  429. "runtimeTargets": {
  430. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  431. "assetType": "runtime",
  432. "rid": "unix"
  433. },
  434. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  435. "assetType": "runtime",
  436. "rid": "win"
  437. }
  438. }
  439. },
  440. "Microsoft.Win32.SystemEvents/4.7.0": {
  441. "type": "package",
  442. "dependencies": {
  443. "Microsoft.NETCore.Platforms": "3.1.0"
  444. },
  445. "compile": {
  446. "ref/netstandard2.0/_._": {
  447. "related": ".xml"
  448. }
  449. },
  450. "runtime": {
  451. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  452. "related": ".xml"
  453. }
  454. },
  455. "runtimeTargets": {
  456. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  457. "assetType": "runtime",
  458. "rid": "win"
  459. }
  460. }
  461. },
  462. "MySql.Data/8.0.29": {
  463. "type": "package",
  464. "dependencies": {
  465. "BouncyCastle.NetCore": "1.8.5",
  466. "Google.Protobuf": "3.19.4",
  467. "K4os.Compression.LZ4.Streams": "1.2.6",
  468. "System.Buffers": "4.5.1",
  469. "System.Configuration.ConfigurationManager": "4.4.1",
  470. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  471. "System.Security.Permissions": "4.7.0",
  472. "System.Text.Encoding.CodePages": "4.4.0"
  473. },
  474. "compile": {
  475. "lib/net6.0/MySql.Data.dll": {
  476. "related": ".xml"
  477. },
  478. "lib/net6.0/Ubiety.Dns.Core.dll": {},
  479. "lib/net6.0/ZstdNet.dll": {}
  480. },
  481. "runtime": {
  482. "lib/net6.0/MySql.Data.dll": {
  483. "related": ".xml"
  484. },
  485. "lib/net6.0/Ubiety.Dns.Core.dll": {},
  486. "lib/net6.0/ZstdNet.dll": {}
  487. }
  488. },
  489. "NETStandard.Library/1.6.1": {
  490. "type": "package",
  491. "dependencies": {
  492. "Microsoft.NETCore.Platforms": "1.1.0",
  493. "Microsoft.Win32.Primitives": "4.3.0",
  494. "System.AppContext": "4.3.0",
  495. "System.Collections": "4.3.0",
  496. "System.Collections.Concurrent": "4.3.0",
  497. "System.Console": "4.3.0",
  498. "System.Diagnostics.Debug": "4.3.0",
  499. "System.Diagnostics.Tools": "4.3.0",
  500. "System.Diagnostics.Tracing": "4.3.0",
  501. "System.Globalization": "4.3.0",
  502. "System.Globalization.Calendars": "4.3.0",
  503. "System.IO": "4.3.0",
  504. "System.IO.Compression": "4.3.0",
  505. "System.IO.Compression.ZipFile": "4.3.0",
  506. "System.IO.FileSystem": "4.3.0",
  507. "System.IO.FileSystem.Primitives": "4.3.0",
  508. "System.Linq": "4.3.0",
  509. "System.Linq.Expressions": "4.3.0",
  510. "System.Net.Http": "4.3.0",
  511. "System.Net.Primitives": "4.3.0",
  512. "System.Net.Sockets": "4.3.0",
  513. "System.ObjectModel": "4.3.0",
  514. "System.Reflection": "4.3.0",
  515. "System.Reflection.Extensions": "4.3.0",
  516. "System.Reflection.Primitives": "4.3.0",
  517. "System.Resources.ResourceManager": "4.3.0",
  518. "System.Runtime": "4.3.0",
  519. "System.Runtime.Extensions": "4.3.0",
  520. "System.Runtime.Handles": "4.3.0",
  521. "System.Runtime.InteropServices": "4.3.0",
  522. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  523. "System.Runtime.Numerics": "4.3.0",
  524. "System.Security.Cryptography.Algorithms": "4.3.0",
  525. "System.Security.Cryptography.Encoding": "4.3.0",
  526. "System.Security.Cryptography.Primitives": "4.3.0",
  527. "System.Security.Cryptography.X509Certificates": "4.3.0",
  528. "System.Text.Encoding": "4.3.0",
  529. "System.Text.Encoding.Extensions": "4.3.0",
  530. "System.Text.RegularExpressions": "4.3.0",
  531. "System.Threading": "4.3.0",
  532. "System.Threading.Tasks": "4.3.0",
  533. "System.Threading.Timer": "4.3.0",
  534. "System.Xml.ReaderWriter": "4.3.0",
  535. "System.Xml.XDocument": "4.3.0"
  536. }
  537. },
  538. "Newtonsoft.Json/10.0.3": {
  539. "type": "package",
  540. "dependencies": {
  541. "Microsoft.CSharp": "4.3.0",
  542. "NETStandard.Library": "1.6.1",
  543. "System.ComponentModel.TypeConverter": "4.3.0",
  544. "System.Runtime.Serialization.Formatters": "4.3.0",
  545. "System.Runtime.Serialization.Primitives": "4.3.0",
  546. "System.Xml.XmlDocument": "4.3.0"
  547. },
  548. "compile": {
  549. "lib/netstandard1.3/Newtonsoft.Json.dll": {
  550. "related": ".xml"
  551. }
  552. },
  553. "runtime": {
  554. "lib/netstandard1.3/Newtonsoft.Json.dll": {
  555. "related": ".xml"
  556. }
  557. }
  558. },
  559. "Npgsql/5.0.7": {
  560. "type": "package",
  561. "dependencies": {
  562. "System.Runtime.CompilerServices.Unsafe": "4.6.0"
  563. },
  564. "compile": {
  565. "lib/net5.0/Npgsql.dll": {
  566. "related": ".xml"
  567. }
  568. },
  569. "runtime": {
  570. "lib/net5.0/Npgsql.dll": {
  571. "related": ".xml"
  572. }
  573. }
  574. },
  575. "Oracle.ManagedDataAccess.Core/3.21.1": {
  576. "type": "package",
  577. "dependencies": {
  578. "System.Diagnostics.PerformanceCounter": "4.7.0",
  579. "System.DirectoryServices": "4.7.0",
  580. "System.DirectoryServices.Protocols": "4.7.0",
  581. "System.Text.Json": "4.7.1"
  582. },
  583. "compile": {
  584. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
  585. },
  586. "runtime": {
  587. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
  588. }
  589. },
  590. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  591. "type": "package",
  592. "runtimeTargets": {
  593. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  594. "assetType": "native",
  595. "rid": "debian.8-x64"
  596. }
  597. }
  598. },
  599. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  600. "type": "package",
  601. "runtimeTargets": {
  602. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  603. "assetType": "native",
  604. "rid": "fedora.23-x64"
  605. }
  606. }
  607. },
  608. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  609. "type": "package",
  610. "runtimeTargets": {
  611. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  612. "assetType": "native",
  613. "rid": "fedora.24-x64"
  614. }
  615. }
  616. },
  617. "runtime.native.System/4.3.0": {
  618. "type": "package",
  619. "dependencies": {
  620. "Microsoft.NETCore.Platforms": "1.1.0",
  621. "Microsoft.NETCore.Targets": "1.1.0"
  622. },
  623. "compile": {
  624. "lib/netstandard1.0/_._": {}
  625. },
  626. "runtime": {
  627. "lib/netstandard1.0/_._": {}
  628. }
  629. },
  630. "runtime.native.System.IO.Compression/4.3.0": {
  631. "type": "package",
  632. "dependencies": {
  633. "Microsoft.NETCore.Platforms": "1.1.0",
  634. "Microsoft.NETCore.Targets": "1.1.0"
  635. },
  636. "compile": {
  637. "lib/netstandard1.0/_._": {}
  638. },
  639. "runtime": {
  640. "lib/netstandard1.0/_._": {}
  641. }
  642. },
  643. "runtime.native.System.Net.Http/4.3.0": {
  644. "type": "package",
  645. "dependencies": {
  646. "Microsoft.NETCore.Platforms": "1.1.0",
  647. "Microsoft.NETCore.Targets": "1.1.0"
  648. },
  649. "compile": {
  650. "lib/netstandard1.0/_._": {}
  651. },
  652. "runtime": {
  653. "lib/netstandard1.0/_._": {}
  654. }
  655. },
  656. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  657. "type": "package",
  658. "dependencies": {
  659. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  660. },
  661. "compile": {
  662. "lib/netstandard1.0/_._": {}
  663. },
  664. "runtime": {
  665. "lib/netstandard1.0/_._": {}
  666. }
  667. },
  668. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  669. "type": "package",
  670. "dependencies": {
  671. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  672. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  673. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  674. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  675. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  676. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  677. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  678. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  679. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  680. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  681. },
  682. "compile": {
  683. "lib/netstandard1.0/_._": {}
  684. },
  685. "runtime": {
  686. "lib/netstandard1.0/_._": {}
  687. }
  688. },
  689. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  690. "type": "package",
  691. "runtimeTargets": {
  692. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  693. "assetType": "native",
  694. "rid": "opensuse.13.2-x64"
  695. }
  696. }
  697. },
  698. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  699. "type": "package",
  700. "runtimeTargets": {
  701. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  702. "assetType": "native",
  703. "rid": "opensuse.42.1-x64"
  704. }
  705. }
  706. },
  707. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  708. "type": "package",
  709. "runtimeTargets": {
  710. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  711. "assetType": "native",
  712. "rid": "osx.10.10-x64"
  713. }
  714. }
  715. },
  716. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  717. "type": "package",
  718. "runtimeTargets": {
  719. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  720. "assetType": "native",
  721. "rid": "osx.10.10-x64"
  722. }
  723. }
  724. },
  725. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  726. "type": "package",
  727. "runtimeTargets": {
  728. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  729. "assetType": "native",
  730. "rid": "rhel.7-x64"
  731. }
  732. }
  733. },
  734. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  735. "type": "package",
  736. "runtimeTargets": {
  737. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  738. "assetType": "native",
  739. "rid": "ubuntu.14.04-x64"
  740. }
  741. }
  742. },
  743. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  744. "type": "package",
  745. "runtimeTargets": {
  746. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  747. "assetType": "native",
  748. "rid": "ubuntu.16.04-x64"
  749. }
  750. }
  751. },
  752. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  753. "type": "package",
  754. "runtimeTargets": {
  755. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  756. "assetType": "native",
  757. "rid": "ubuntu.16.10-x64"
  758. }
  759. }
  760. },
  761. "Serilog/2.10.0": {
  762. "type": "package",
  763. "compile": {
  764. "lib/netstandard2.1/Serilog.dll": {
  765. "related": ".xml"
  766. }
  767. },
  768. "runtime": {
  769. "lib/netstandard2.1/Serilog.dll": {
  770. "related": ".xml"
  771. }
  772. }
  773. },
  774. "Serilog.Sinks.File/5.0.0": {
  775. "type": "package",
  776. "dependencies": {
  777. "Serilog": "2.10.0"
  778. },
  779. "compile": {
  780. "lib/net5.0/Serilog.Sinks.File.dll": {
  781. "related": ".pdb;.xml"
  782. }
  783. },
  784. "runtime": {
  785. "lib/net5.0/Serilog.Sinks.File.dll": {
  786. "related": ".pdb;.xml"
  787. }
  788. }
  789. },
  790. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  791. "type": "package",
  792. "dependencies": {
  793. "SQLitePCLRaw.core": "2.0.4",
  794. "SQLitePCLRaw.lib.e_sqlite3": "2.0.4",
  795. "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4"
  796. },
  797. "compile": {
  798. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
  799. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
  800. },
  801. "runtime": {
  802. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
  803. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
  804. }
  805. },
  806. "SQLitePCLRaw.core/2.0.4": {
  807. "type": "package",
  808. "dependencies": {
  809. "System.Memory": "4.5.3"
  810. },
  811. "compile": {
  812. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  813. },
  814. "runtime": {
  815. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  816. }
  817. },
  818. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  819. "type": "package",
  820. "compile": {
  821. "lib/netstandard2.0/_._": {}
  822. },
  823. "runtime": {
  824. "lib/netstandard2.0/_._": {}
  825. },
  826. "runtimeTargets": {
  827. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  828. "assetType": "native",
  829. "rid": "alpine-x64"
  830. },
  831. "runtimes/linux-arm/native/libe_sqlite3.so": {
  832. "assetType": "native",
  833. "rid": "linux-arm"
  834. },
  835. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  836. "assetType": "native",
  837. "rid": "linux-arm64"
  838. },
  839. "runtimes/linux-armel/native/libe_sqlite3.so": {
  840. "assetType": "native",
  841. "rid": "linux-armel"
  842. },
  843. "runtimes/linux-mips64/native/libe_sqlite3.so": {
  844. "assetType": "native",
  845. "rid": "linux-mips64"
  846. },
  847. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  848. "assetType": "native",
  849. "rid": "linux-musl-x64"
  850. },
  851. "runtimes/linux-x64/native/libe_sqlite3.so": {
  852. "assetType": "native",
  853. "rid": "linux-x64"
  854. },
  855. "runtimes/linux-x86/native/libe_sqlite3.so": {
  856. "assetType": "native",
  857. "rid": "linux-x86"
  858. },
  859. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  860. "assetType": "native",
  861. "rid": "osx-x64"
  862. },
  863. "runtimes/win-arm/native/e_sqlite3.dll": {
  864. "assetType": "native",
  865. "rid": "win-arm"
  866. },
  867. "runtimes/win-arm64/native/e_sqlite3.dll": {
  868. "assetType": "native",
  869. "rid": "win-arm64"
  870. },
  871. "runtimes/win-x64/native/e_sqlite3.dll": {
  872. "assetType": "native",
  873. "rid": "win-x64"
  874. },
  875. "runtimes/win-x86/native/e_sqlite3.dll": {
  876. "assetType": "native",
  877. "rid": "win-x86"
  878. }
  879. }
  880. },
  881. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  882. "type": "package",
  883. "dependencies": {
  884. "SQLitePCLRaw.core": "2.0.4"
  885. },
  886. "compile": {
  887. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
  888. },
  889. "runtime": {
  890. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
  891. }
  892. },
  893. "SqlSugarCore/5.1.3.32": {
  894. "type": "package",
  895. "dependencies": {
  896. "Microsoft.Data.SqlClient": "2.1.1",
  897. "Microsoft.Data.Sqlite": "5.0.5",
  898. "MySql.Data": "8.0.29",
  899. "Newtonsoft.Json": "10.0.3",
  900. "Npgsql": "5.0.7",
  901. "Oracle.ManagedDataAccess.Core": "3.21.1",
  902. "SqlSugarCore.Dm": "1.0.0",
  903. "SqlSugarCore.Kdbndp": "1.0.0",
  904. "System.Data.Common": "4.3.0",
  905. "System.Reflection.Emit.Lightweight": "4.3.0"
  906. },
  907. "compile": {
  908. "lib/netstandard2.1/SqlSugar.dll": {}
  909. },
  910. "runtime": {
  911. "lib/netstandard2.1/SqlSugar.dll": {}
  912. }
  913. },
  914. "SqlSugarCore.Dm/1.0.0": {
  915. "type": "package",
  916. "compile": {
  917. "lib/netstandard2.0/DmProvider.dll": {}
  918. },
  919. "runtime": {
  920. "lib/netstandard2.0/DmProvider.dll": {}
  921. }
  922. },
  923. "SqlSugarCore.Kdbndp/1.0.0": {
  924. "type": "package",
  925. "compile": {
  926. "lib/netstandard2.0/Kdbndp.dll": {}
  927. },
  928. "runtime": {
  929. "lib/netstandard2.0/Kdbndp.dll": {}
  930. }
  931. },
  932. "System.AppContext/4.3.0": {
  933. "type": "package",
  934. "dependencies": {
  935. "System.Runtime": "4.3.0"
  936. },
  937. "compile": {
  938. "ref/netstandard1.6/System.AppContext.dll": {
  939. "related": ".xml"
  940. }
  941. },
  942. "runtime": {
  943. "lib/netstandard1.6/System.AppContext.dll": {}
  944. }
  945. },
  946. "System.Buffers/4.5.1": {
  947. "type": "package",
  948. "compile": {
  949. "ref/netcoreapp2.0/_._": {}
  950. },
  951. "runtime": {
  952. "lib/netcoreapp2.0/_._": {}
  953. }
  954. },
  955. "System.Collections/4.3.0": {
  956. "type": "package",
  957. "dependencies": {
  958. "Microsoft.NETCore.Platforms": "1.1.0",
  959. "Microsoft.NETCore.Targets": "1.1.0",
  960. "System.Runtime": "4.3.0"
  961. },
  962. "compile": {
  963. "ref/netstandard1.3/System.Collections.dll": {
  964. "related": ".xml"
  965. }
  966. }
  967. },
  968. "System.Collections.Concurrent/4.3.0": {
  969. "type": "package",
  970. "dependencies": {
  971. "System.Collections": "4.3.0",
  972. "System.Diagnostics.Debug": "4.3.0",
  973. "System.Diagnostics.Tracing": "4.3.0",
  974. "System.Globalization": "4.3.0",
  975. "System.Reflection": "4.3.0",
  976. "System.Resources.ResourceManager": "4.3.0",
  977. "System.Runtime": "4.3.0",
  978. "System.Runtime.Extensions": "4.3.0",
  979. "System.Threading": "4.3.0",
  980. "System.Threading.Tasks": "4.3.0"
  981. },
  982. "compile": {
  983. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  984. "related": ".xml"
  985. }
  986. },
  987. "runtime": {
  988. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  989. }
  990. },
  991. "System.Collections.NonGeneric/4.3.0": {
  992. "type": "package",
  993. "dependencies": {
  994. "System.Diagnostics.Debug": "4.3.0",
  995. "System.Globalization": "4.3.0",
  996. "System.Resources.ResourceManager": "4.3.0",
  997. "System.Runtime": "4.3.0",
  998. "System.Runtime.Extensions": "4.3.0",
  999. "System.Threading": "4.3.0"
  1000. },
  1001. "compile": {
  1002. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
  1003. "related": ".xml"
  1004. }
  1005. },
  1006. "runtime": {
  1007. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1008. }
  1009. },
  1010. "System.Collections.Specialized/4.3.0": {
  1011. "type": "package",
  1012. "dependencies": {
  1013. "System.Collections.NonGeneric": "4.3.0",
  1014. "System.Globalization": "4.3.0",
  1015. "System.Globalization.Extensions": "4.3.0",
  1016. "System.Resources.ResourceManager": "4.3.0",
  1017. "System.Runtime": "4.3.0",
  1018. "System.Runtime.Extensions": "4.3.0",
  1019. "System.Threading": "4.3.0"
  1020. },
  1021. "compile": {
  1022. "ref/netstandard1.3/_._": {
  1023. "related": ".xml"
  1024. }
  1025. },
  1026. "runtime": {
  1027. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1028. }
  1029. },
  1030. "System.ComponentModel/4.3.0": {
  1031. "type": "package",
  1032. "dependencies": {
  1033. "System.Runtime": "4.3.0"
  1034. },
  1035. "compile": {
  1036. "ref/netstandard1.0/System.ComponentModel.dll": {
  1037. "related": ".xml"
  1038. }
  1039. },
  1040. "runtime": {
  1041. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1042. }
  1043. },
  1044. "System.ComponentModel.Primitives/4.3.0": {
  1045. "type": "package",
  1046. "dependencies": {
  1047. "System.ComponentModel": "4.3.0",
  1048. "System.Resources.ResourceManager": "4.3.0",
  1049. "System.Runtime": "4.3.0"
  1050. },
  1051. "compile": {
  1052. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
  1053. "related": ".xml"
  1054. }
  1055. },
  1056. "runtime": {
  1057. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1058. }
  1059. },
  1060. "System.ComponentModel.TypeConverter/4.3.0": {
  1061. "type": "package",
  1062. "dependencies": {
  1063. "System.Collections": "4.3.0",
  1064. "System.Collections.NonGeneric": "4.3.0",
  1065. "System.Collections.Specialized": "4.3.0",
  1066. "System.ComponentModel": "4.3.0",
  1067. "System.ComponentModel.Primitives": "4.3.0",
  1068. "System.Globalization": "4.3.0",
  1069. "System.Linq": "4.3.0",
  1070. "System.Reflection": "4.3.0",
  1071. "System.Reflection.Extensions": "4.3.0",
  1072. "System.Reflection.Primitives": "4.3.0",
  1073. "System.Reflection.TypeExtensions": "4.3.0",
  1074. "System.Resources.ResourceManager": "4.3.0",
  1075. "System.Runtime": "4.3.0",
  1076. "System.Runtime.Extensions": "4.3.0",
  1077. "System.Threading": "4.3.0"
  1078. },
  1079. "compile": {
  1080. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  1081. "related": ".xml"
  1082. }
  1083. },
  1084. "runtime": {
  1085. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1086. }
  1087. },
  1088. "System.Configuration.ConfigurationManager/4.7.0": {
  1089. "type": "package",
  1090. "dependencies": {
  1091. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1092. "System.Security.Permissions": "4.7.0"
  1093. },
  1094. "compile": {
  1095. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1096. "related": ".xml"
  1097. }
  1098. },
  1099. "runtime": {
  1100. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1101. "related": ".xml"
  1102. }
  1103. }
  1104. },
  1105. "System.Console/4.3.0": {
  1106. "type": "package",
  1107. "dependencies": {
  1108. "Microsoft.NETCore.Platforms": "1.1.0",
  1109. "Microsoft.NETCore.Targets": "1.1.0",
  1110. "System.IO": "4.3.0",
  1111. "System.Runtime": "4.3.0",
  1112. "System.Text.Encoding": "4.3.0"
  1113. },
  1114. "compile": {
  1115. "ref/netstandard1.3/System.Console.dll": {
  1116. "related": ".xml"
  1117. }
  1118. }
  1119. },
  1120. "System.Data.Common/4.3.0": {
  1121. "type": "package",
  1122. "dependencies": {
  1123. "System.Collections": "4.3.0",
  1124. "System.Globalization": "4.3.0",
  1125. "System.IO": "4.3.0",
  1126. "System.Resources.ResourceManager": "4.3.0",
  1127. "System.Runtime": "4.3.0",
  1128. "System.Runtime.Extensions": "4.3.0",
  1129. "System.Text.RegularExpressions": "4.3.0",
  1130. "System.Threading.Tasks": "4.3.0"
  1131. },
  1132. "compile": {
  1133. "ref/netstandard1.2/System.Data.Common.dll": {
  1134. "related": ".xml"
  1135. }
  1136. },
  1137. "runtime": {
  1138. "lib/netstandard1.2/System.Data.Common.dll": {}
  1139. }
  1140. },
  1141. "System.Diagnostics.Debug/4.3.0": {
  1142. "type": "package",
  1143. "dependencies": {
  1144. "Microsoft.NETCore.Platforms": "1.1.0",
  1145. "Microsoft.NETCore.Targets": "1.1.0",
  1146. "System.Runtime": "4.3.0"
  1147. },
  1148. "compile": {
  1149. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1150. "related": ".xml"
  1151. }
  1152. }
  1153. },
  1154. "System.Diagnostics.DiagnosticSource/4.7.1": {
  1155. "type": "package",
  1156. "compile": {
  1157. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  1158. "related": ".xml"
  1159. }
  1160. },
  1161. "runtime": {
  1162. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  1163. "related": ".xml"
  1164. }
  1165. }
  1166. },
  1167. "System.Diagnostics.PerformanceCounter/4.7.0": {
  1168. "type": "package",
  1169. "dependencies": {
  1170. "Microsoft.NETCore.Platforms": "3.1.0",
  1171. "Microsoft.Win32.Registry": "4.7.0",
  1172. "System.Configuration.ConfigurationManager": "4.7.0",
  1173. "System.Security.Principal.Windows": "4.7.0"
  1174. },
  1175. "compile": {
  1176. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1177. "related": ".xml"
  1178. }
  1179. },
  1180. "runtime": {
  1181. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1182. "related": ".xml"
  1183. }
  1184. },
  1185. "runtimeTargets": {
  1186. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  1187. "assetType": "runtime",
  1188. "rid": "win"
  1189. }
  1190. }
  1191. },
  1192. "System.Diagnostics.Tools/4.3.0": {
  1193. "type": "package",
  1194. "dependencies": {
  1195. "Microsoft.NETCore.Platforms": "1.1.0",
  1196. "Microsoft.NETCore.Targets": "1.1.0",
  1197. "System.Runtime": "4.3.0"
  1198. },
  1199. "compile": {
  1200. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1201. "related": ".xml"
  1202. }
  1203. }
  1204. },
  1205. "System.Diagnostics.Tracing/4.3.0": {
  1206. "type": "package",
  1207. "dependencies": {
  1208. "Microsoft.NETCore.Platforms": "1.1.0",
  1209. "Microsoft.NETCore.Targets": "1.1.0",
  1210. "System.Runtime": "4.3.0"
  1211. },
  1212. "compile": {
  1213. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1214. "related": ".xml"
  1215. }
  1216. }
  1217. },
  1218. "System.DirectoryServices/4.7.0": {
  1219. "type": "package",
  1220. "dependencies": {
  1221. "Microsoft.NETCore.Platforms": "3.1.0",
  1222. "System.IO.FileSystem.AccessControl": "4.7.0",
  1223. "System.Security.AccessControl": "4.7.0",
  1224. "System.Security.Permissions": "4.7.0",
  1225. "System.Security.Principal.Windows": "4.7.0"
  1226. },
  1227. "compile": {
  1228. "ref/netstandard2.0/System.DirectoryServices.dll": {
  1229. "related": ".xml"
  1230. }
  1231. },
  1232. "runtime": {
  1233. "lib/netstandard2.0/System.DirectoryServices.dll": {
  1234. "related": ".xml"
  1235. }
  1236. },
  1237. "runtimeTargets": {
  1238. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
  1239. "assetType": "runtime",
  1240. "rid": "win"
  1241. }
  1242. }
  1243. },
  1244. "System.DirectoryServices.Protocols/4.7.0": {
  1245. "type": "package",
  1246. "dependencies": {
  1247. "Microsoft.NETCore.Platforms": "3.1.0",
  1248. "System.Security.Principal.Windows": "4.7.0"
  1249. },
  1250. "compile": {
  1251. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {
  1252. "related": ".xml"
  1253. }
  1254. },
  1255. "runtime": {
  1256. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
  1257. "related": ".xml"
  1258. }
  1259. },
  1260. "runtimeTargets": {
  1261. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": {
  1262. "assetType": "runtime",
  1263. "rid": "win"
  1264. }
  1265. }
  1266. },
  1267. "System.Drawing.Common/4.7.0": {
  1268. "type": "package",
  1269. "dependencies": {
  1270. "Microsoft.NETCore.Platforms": "3.1.0",
  1271. "Microsoft.Win32.SystemEvents": "4.7.0"
  1272. },
  1273. "compile": {
  1274. "ref/netcoreapp3.0/_._": {
  1275. "related": ".xml"
  1276. }
  1277. },
  1278. "runtime": {
  1279. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1280. },
  1281. "runtimeTargets": {
  1282. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1283. "assetType": "runtime",
  1284. "rid": "unix"
  1285. },
  1286. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1287. "assetType": "runtime",
  1288. "rid": "win"
  1289. }
  1290. }
  1291. },
  1292. "System.Globalization/4.3.0": {
  1293. "type": "package",
  1294. "dependencies": {
  1295. "Microsoft.NETCore.Platforms": "1.1.0",
  1296. "Microsoft.NETCore.Targets": "1.1.0",
  1297. "System.Runtime": "4.3.0"
  1298. },
  1299. "compile": {
  1300. "ref/netstandard1.3/System.Globalization.dll": {
  1301. "related": ".xml"
  1302. }
  1303. }
  1304. },
  1305. "System.Globalization.Calendars/4.3.0": {
  1306. "type": "package",
  1307. "dependencies": {
  1308. "Microsoft.NETCore.Platforms": "1.1.0",
  1309. "Microsoft.NETCore.Targets": "1.1.0",
  1310. "System.Globalization": "4.3.0",
  1311. "System.Runtime": "4.3.0"
  1312. },
  1313. "compile": {
  1314. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1315. "related": ".xml"
  1316. }
  1317. }
  1318. },
  1319. "System.Globalization.Extensions/4.3.0": {
  1320. "type": "package",
  1321. "dependencies": {
  1322. "Microsoft.NETCore.Platforms": "1.1.0",
  1323. "System.Globalization": "4.3.0",
  1324. "System.Resources.ResourceManager": "4.3.0",
  1325. "System.Runtime": "4.3.0",
  1326. "System.Runtime.Extensions": "4.3.0",
  1327. "System.Runtime.InteropServices": "4.3.0"
  1328. },
  1329. "compile": {
  1330. "ref/netstandard1.3/_._": {
  1331. "related": ".xml"
  1332. }
  1333. },
  1334. "runtimeTargets": {
  1335. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1336. "assetType": "runtime",
  1337. "rid": "unix"
  1338. },
  1339. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1340. "assetType": "runtime",
  1341. "rid": "win"
  1342. }
  1343. }
  1344. },
  1345. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  1346. "type": "package",
  1347. "dependencies": {
  1348. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  1349. "Microsoft.IdentityModel.Tokens": "6.8.0"
  1350. },
  1351. "compile": {
  1352. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1353. "related": ".xml"
  1354. }
  1355. },
  1356. "runtime": {
  1357. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1358. "related": ".xml"
  1359. }
  1360. }
  1361. },
  1362. "System.IO/4.3.0": {
  1363. "type": "package",
  1364. "dependencies": {
  1365. "Microsoft.NETCore.Platforms": "1.1.0",
  1366. "Microsoft.NETCore.Targets": "1.1.0",
  1367. "System.Runtime": "4.3.0",
  1368. "System.Text.Encoding": "4.3.0",
  1369. "System.Threading.Tasks": "4.3.0"
  1370. },
  1371. "compile": {
  1372. "ref/netstandard1.5/System.IO.dll": {
  1373. "related": ".xml"
  1374. }
  1375. }
  1376. },
  1377. "System.IO.Compression/4.3.0": {
  1378. "type": "package",
  1379. "dependencies": {
  1380. "Microsoft.NETCore.Platforms": "1.1.0",
  1381. "System.Buffers": "4.3.0",
  1382. "System.Collections": "4.3.0",
  1383. "System.Diagnostics.Debug": "4.3.0",
  1384. "System.IO": "4.3.0",
  1385. "System.Resources.ResourceManager": "4.3.0",
  1386. "System.Runtime": "4.3.0",
  1387. "System.Runtime.Extensions": "4.3.0",
  1388. "System.Runtime.Handles": "4.3.0",
  1389. "System.Runtime.InteropServices": "4.3.0",
  1390. "System.Text.Encoding": "4.3.0",
  1391. "System.Threading": "4.3.0",
  1392. "System.Threading.Tasks": "4.3.0",
  1393. "runtime.native.System": "4.3.0",
  1394. "runtime.native.System.IO.Compression": "4.3.0"
  1395. },
  1396. "compile": {
  1397. "ref/netstandard1.3/System.IO.Compression.dll": {
  1398. "related": ".xml"
  1399. }
  1400. },
  1401. "runtimeTargets": {
  1402. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1403. "assetType": "runtime",
  1404. "rid": "unix"
  1405. },
  1406. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1407. "assetType": "runtime",
  1408. "rid": "win"
  1409. }
  1410. }
  1411. },
  1412. "System.IO.Compression.ZipFile/4.3.0": {
  1413. "type": "package",
  1414. "dependencies": {
  1415. "System.Buffers": "4.3.0",
  1416. "System.IO": "4.3.0",
  1417. "System.IO.Compression": "4.3.0",
  1418. "System.IO.FileSystem": "4.3.0",
  1419. "System.IO.FileSystem.Primitives": "4.3.0",
  1420. "System.Resources.ResourceManager": "4.3.0",
  1421. "System.Runtime": "4.3.0",
  1422. "System.Runtime.Extensions": "4.3.0",
  1423. "System.Text.Encoding": "4.3.0"
  1424. },
  1425. "compile": {
  1426. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1427. "related": ".xml"
  1428. }
  1429. },
  1430. "runtime": {
  1431. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1432. }
  1433. },
  1434. "System.IO.FileSystem/4.3.0": {
  1435. "type": "package",
  1436. "dependencies": {
  1437. "Microsoft.NETCore.Platforms": "1.1.0",
  1438. "Microsoft.NETCore.Targets": "1.1.0",
  1439. "System.IO": "4.3.0",
  1440. "System.IO.FileSystem.Primitives": "4.3.0",
  1441. "System.Runtime": "4.3.0",
  1442. "System.Runtime.Handles": "4.3.0",
  1443. "System.Text.Encoding": "4.3.0",
  1444. "System.Threading.Tasks": "4.3.0"
  1445. },
  1446. "compile": {
  1447. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1448. "related": ".xml"
  1449. }
  1450. }
  1451. },
  1452. "System.IO.FileSystem.AccessControl/4.7.0": {
  1453. "type": "package",
  1454. "dependencies": {
  1455. "System.Security.AccessControl": "4.7.0",
  1456. "System.Security.Principal.Windows": "4.7.0"
  1457. },
  1458. "compile": {
  1459. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1460. "related": ".xml"
  1461. }
  1462. },
  1463. "runtime": {
  1464. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1465. "related": ".xml"
  1466. }
  1467. },
  1468. "runtimeTargets": {
  1469. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1470. "assetType": "runtime",
  1471. "rid": "win"
  1472. }
  1473. }
  1474. },
  1475. "System.IO.FileSystem.Primitives/4.3.0": {
  1476. "type": "package",
  1477. "dependencies": {
  1478. "System.Runtime": "4.3.0"
  1479. },
  1480. "compile": {
  1481. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1482. "related": ".xml"
  1483. }
  1484. },
  1485. "runtime": {
  1486. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1487. }
  1488. },
  1489. "System.Linq/4.3.0": {
  1490. "type": "package",
  1491. "dependencies": {
  1492. "System.Collections": "4.3.0",
  1493. "System.Diagnostics.Debug": "4.3.0",
  1494. "System.Resources.ResourceManager": "4.3.0",
  1495. "System.Runtime": "4.3.0",
  1496. "System.Runtime.Extensions": "4.3.0"
  1497. },
  1498. "compile": {
  1499. "ref/netstandard1.6/System.Linq.dll": {
  1500. "related": ".xml"
  1501. }
  1502. },
  1503. "runtime": {
  1504. "lib/netstandard1.6/System.Linq.dll": {}
  1505. }
  1506. },
  1507. "System.Linq.Expressions/4.3.0": {
  1508. "type": "package",
  1509. "dependencies": {
  1510. "System.Collections": "4.3.0",
  1511. "System.Diagnostics.Debug": "4.3.0",
  1512. "System.Globalization": "4.3.0",
  1513. "System.IO": "4.3.0",
  1514. "System.Linq": "4.3.0",
  1515. "System.ObjectModel": "4.3.0",
  1516. "System.Reflection": "4.3.0",
  1517. "System.Reflection.Emit": "4.3.0",
  1518. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1519. "System.Reflection.Emit.Lightweight": "4.3.0",
  1520. "System.Reflection.Extensions": "4.3.0",
  1521. "System.Reflection.Primitives": "4.3.0",
  1522. "System.Reflection.TypeExtensions": "4.3.0",
  1523. "System.Resources.ResourceManager": "4.3.0",
  1524. "System.Runtime": "4.3.0",
  1525. "System.Runtime.Extensions": "4.3.0",
  1526. "System.Threading": "4.3.0"
  1527. },
  1528. "compile": {
  1529. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1530. "related": ".xml"
  1531. }
  1532. },
  1533. "runtime": {
  1534. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1535. }
  1536. },
  1537. "System.Memory/4.5.4": {
  1538. "type": "package",
  1539. "compile": {
  1540. "ref/netcoreapp2.1/_._": {}
  1541. },
  1542. "runtime": {
  1543. "lib/netcoreapp2.1/_._": {}
  1544. }
  1545. },
  1546. "System.Net.Http/4.3.0": {
  1547. "type": "package",
  1548. "dependencies": {
  1549. "Microsoft.NETCore.Platforms": "1.1.0",
  1550. "System.Collections": "4.3.0",
  1551. "System.Diagnostics.Debug": "4.3.0",
  1552. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1553. "System.Diagnostics.Tracing": "4.3.0",
  1554. "System.Globalization": "4.3.0",
  1555. "System.Globalization.Extensions": "4.3.0",
  1556. "System.IO": "4.3.0",
  1557. "System.IO.FileSystem": "4.3.0",
  1558. "System.Net.Primitives": "4.3.0",
  1559. "System.Resources.ResourceManager": "4.3.0",
  1560. "System.Runtime": "4.3.0",
  1561. "System.Runtime.Extensions": "4.3.0",
  1562. "System.Runtime.Handles": "4.3.0",
  1563. "System.Runtime.InteropServices": "4.3.0",
  1564. "System.Security.Cryptography.Algorithms": "4.3.0",
  1565. "System.Security.Cryptography.Encoding": "4.3.0",
  1566. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1567. "System.Security.Cryptography.Primitives": "4.3.0",
  1568. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1569. "System.Text.Encoding": "4.3.0",
  1570. "System.Threading": "4.3.0",
  1571. "System.Threading.Tasks": "4.3.0",
  1572. "runtime.native.System": "4.3.0",
  1573. "runtime.native.System.Net.Http": "4.3.0",
  1574. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1575. },
  1576. "compile": {
  1577. "ref/netstandard1.3/System.Net.Http.dll": {
  1578. "related": ".xml"
  1579. }
  1580. },
  1581. "runtimeTargets": {
  1582. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1583. "assetType": "runtime",
  1584. "rid": "unix"
  1585. },
  1586. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1587. "assetType": "runtime",
  1588. "rid": "win"
  1589. }
  1590. }
  1591. },
  1592. "System.Net.Primitives/4.3.0": {
  1593. "type": "package",
  1594. "dependencies": {
  1595. "Microsoft.NETCore.Platforms": "1.1.0",
  1596. "Microsoft.NETCore.Targets": "1.1.0",
  1597. "System.Runtime": "4.3.0",
  1598. "System.Runtime.Handles": "4.3.0"
  1599. },
  1600. "compile": {
  1601. "ref/netstandard1.3/System.Net.Primitives.dll": {
  1602. "related": ".xml"
  1603. }
  1604. }
  1605. },
  1606. "System.Net.Sockets/4.3.0": {
  1607. "type": "package",
  1608. "dependencies": {
  1609. "Microsoft.NETCore.Platforms": "1.1.0",
  1610. "Microsoft.NETCore.Targets": "1.1.0",
  1611. "System.IO": "4.3.0",
  1612. "System.Net.Primitives": "4.3.0",
  1613. "System.Runtime": "4.3.0",
  1614. "System.Threading.Tasks": "4.3.0"
  1615. },
  1616. "compile": {
  1617. "ref/netstandard1.3/System.Net.Sockets.dll": {
  1618. "related": ".xml"
  1619. }
  1620. }
  1621. },
  1622. "System.ObjectModel/4.3.0": {
  1623. "type": "package",
  1624. "dependencies": {
  1625. "System.Collections": "4.3.0",
  1626. "System.Diagnostics.Debug": "4.3.0",
  1627. "System.Resources.ResourceManager": "4.3.0",
  1628. "System.Runtime": "4.3.0",
  1629. "System.Threading": "4.3.0"
  1630. },
  1631. "compile": {
  1632. "ref/netstandard1.3/System.ObjectModel.dll": {
  1633. "related": ".xml"
  1634. }
  1635. },
  1636. "runtime": {
  1637. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1638. }
  1639. },
  1640. "System.Reflection/4.3.0": {
  1641. "type": "package",
  1642. "dependencies": {
  1643. "Microsoft.NETCore.Platforms": "1.1.0",
  1644. "Microsoft.NETCore.Targets": "1.1.0",
  1645. "System.IO": "4.3.0",
  1646. "System.Reflection.Primitives": "4.3.0",
  1647. "System.Runtime": "4.3.0"
  1648. },
  1649. "compile": {
  1650. "ref/netstandard1.5/System.Reflection.dll": {
  1651. "related": ".xml"
  1652. }
  1653. }
  1654. },
  1655. "System.Reflection.Emit/4.3.0": {
  1656. "type": "package",
  1657. "dependencies": {
  1658. "System.IO": "4.3.0",
  1659. "System.Reflection": "4.3.0",
  1660. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1661. "System.Reflection.Primitives": "4.3.0",
  1662. "System.Runtime": "4.3.0"
  1663. },
  1664. "compile": {
  1665. "ref/netstandard1.1/_._": {
  1666. "related": ".xml"
  1667. }
  1668. },
  1669. "runtime": {
  1670. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1671. }
  1672. },
  1673. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1674. "type": "package",
  1675. "dependencies": {
  1676. "System.Reflection": "4.3.0",
  1677. "System.Reflection.Primitives": "4.3.0",
  1678. "System.Runtime": "4.3.0"
  1679. },
  1680. "compile": {
  1681. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  1682. "related": ".xml"
  1683. }
  1684. },
  1685. "runtime": {
  1686. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1687. }
  1688. },
  1689. "System.Reflection.Emit.Lightweight/4.3.0": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "System.Reflection": "4.3.0",
  1693. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1694. "System.Reflection.Primitives": "4.3.0",
  1695. "System.Runtime": "4.3.0"
  1696. },
  1697. "compile": {
  1698. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  1699. "related": ".xml"
  1700. }
  1701. },
  1702. "runtime": {
  1703. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1704. }
  1705. },
  1706. "System.Reflection.Extensions/4.3.0": {
  1707. "type": "package",
  1708. "dependencies": {
  1709. "Microsoft.NETCore.Platforms": "1.1.0",
  1710. "Microsoft.NETCore.Targets": "1.1.0",
  1711. "System.Reflection": "4.3.0",
  1712. "System.Runtime": "4.3.0"
  1713. },
  1714. "compile": {
  1715. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  1716. "related": ".xml"
  1717. }
  1718. }
  1719. },
  1720. "System.Reflection.Primitives/4.3.0": {
  1721. "type": "package",
  1722. "dependencies": {
  1723. "Microsoft.NETCore.Platforms": "1.1.0",
  1724. "Microsoft.NETCore.Targets": "1.1.0",
  1725. "System.Runtime": "4.3.0"
  1726. },
  1727. "compile": {
  1728. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  1729. "related": ".xml"
  1730. }
  1731. }
  1732. },
  1733. "System.Reflection.TypeExtensions/4.3.0": {
  1734. "type": "package",
  1735. "dependencies": {
  1736. "System.Reflection": "4.3.0",
  1737. "System.Runtime": "4.3.0"
  1738. },
  1739. "compile": {
  1740. "ref/netstandard1.5/_._": {
  1741. "related": ".xml"
  1742. }
  1743. },
  1744. "runtime": {
  1745. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1746. }
  1747. },
  1748. "System.Resources.ResourceManager/4.3.0": {
  1749. "type": "package",
  1750. "dependencies": {
  1751. "Microsoft.NETCore.Platforms": "1.1.0",
  1752. "Microsoft.NETCore.Targets": "1.1.0",
  1753. "System.Globalization": "4.3.0",
  1754. "System.Reflection": "4.3.0",
  1755. "System.Runtime": "4.3.0"
  1756. },
  1757. "compile": {
  1758. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  1759. "related": ".xml"
  1760. }
  1761. }
  1762. },
  1763. "System.Runtime/4.3.0": {
  1764. "type": "package",
  1765. "dependencies": {
  1766. "Microsoft.NETCore.Platforms": "1.1.0",
  1767. "Microsoft.NETCore.Targets": "1.1.0"
  1768. },
  1769. "compile": {
  1770. "ref/netstandard1.5/System.Runtime.dll": {
  1771. "related": ".xml"
  1772. }
  1773. }
  1774. },
  1775. "System.Runtime.Caching/4.7.0": {
  1776. "type": "package",
  1777. "dependencies": {
  1778. "System.Configuration.ConfigurationManager": "4.7.0"
  1779. },
  1780. "compile": {
  1781. "ref/netstandard2.0/_._": {
  1782. "related": ".xml"
  1783. }
  1784. },
  1785. "runtime": {
  1786. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  1787. "related": ".xml"
  1788. }
  1789. },
  1790. "runtimeTargets": {
  1791. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  1792. "assetType": "runtime",
  1793. "rid": "win"
  1794. }
  1795. }
  1796. },
  1797. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1798. "type": "package",
  1799. "compile": {
  1800. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1801. "related": ".xml"
  1802. }
  1803. },
  1804. "runtime": {
  1805. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1806. "related": ".xml"
  1807. }
  1808. },
  1809. "build": {
  1810. "buildTransitive/netcoreapp3.1/_._": {}
  1811. }
  1812. },
  1813. "System.Runtime.Extensions/4.3.0": {
  1814. "type": "package",
  1815. "dependencies": {
  1816. "Microsoft.NETCore.Platforms": "1.1.0",
  1817. "Microsoft.NETCore.Targets": "1.1.0",
  1818. "System.Runtime": "4.3.0"
  1819. },
  1820. "compile": {
  1821. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  1822. "related": ".xml"
  1823. }
  1824. }
  1825. },
  1826. "System.Runtime.Handles/4.3.0": {
  1827. "type": "package",
  1828. "dependencies": {
  1829. "Microsoft.NETCore.Platforms": "1.1.0",
  1830. "Microsoft.NETCore.Targets": "1.1.0",
  1831. "System.Runtime": "4.3.0"
  1832. },
  1833. "compile": {
  1834. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  1835. "related": ".xml"
  1836. }
  1837. }
  1838. },
  1839. "System.Runtime.InteropServices/4.3.0": {
  1840. "type": "package",
  1841. "dependencies": {
  1842. "Microsoft.NETCore.Platforms": "1.1.0",
  1843. "Microsoft.NETCore.Targets": "1.1.0",
  1844. "System.Reflection": "4.3.0",
  1845. "System.Reflection.Primitives": "4.3.0",
  1846. "System.Runtime": "4.3.0",
  1847. "System.Runtime.Handles": "4.3.0"
  1848. },
  1849. "compile": {
  1850. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  1851. }
  1852. },
  1853. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1854. "type": "package",
  1855. "dependencies": {
  1856. "System.Reflection": "4.3.0",
  1857. "System.Reflection.Extensions": "4.3.0",
  1858. "System.Resources.ResourceManager": "4.3.0",
  1859. "System.Runtime": "4.3.0",
  1860. "System.Runtime.InteropServices": "4.3.0",
  1861. "System.Threading": "4.3.0",
  1862. "runtime.native.System": "4.3.0"
  1863. },
  1864. "compile": {
  1865. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1866. },
  1867. "runtime": {
  1868. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1869. },
  1870. "runtimeTargets": {
  1871. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1872. "assetType": "runtime",
  1873. "rid": "unix"
  1874. },
  1875. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1876. "assetType": "runtime",
  1877. "rid": "win"
  1878. }
  1879. }
  1880. },
  1881. "System.Runtime.Numerics/4.3.0": {
  1882. "type": "package",
  1883. "dependencies": {
  1884. "System.Globalization": "4.3.0",
  1885. "System.Resources.ResourceManager": "4.3.0",
  1886. "System.Runtime": "4.3.0",
  1887. "System.Runtime.Extensions": "4.3.0"
  1888. },
  1889. "compile": {
  1890. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  1891. "related": ".xml"
  1892. }
  1893. },
  1894. "runtime": {
  1895. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1896. }
  1897. },
  1898. "System.Runtime.Serialization.Formatters/4.3.0": {
  1899. "type": "package",
  1900. "dependencies": {
  1901. "System.Collections": "4.3.0",
  1902. "System.Reflection": "4.3.0",
  1903. "System.Resources.ResourceManager": "4.3.0",
  1904. "System.Runtime": "4.3.0",
  1905. "System.Runtime.Serialization.Primitives": "4.3.0"
  1906. },
  1907. "compile": {
  1908. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {}
  1909. },
  1910. "runtime": {
  1911. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  1912. }
  1913. },
  1914. "System.Runtime.Serialization.Primitives/4.3.0": {
  1915. "type": "package",
  1916. "dependencies": {
  1917. "System.Resources.ResourceManager": "4.3.0",
  1918. "System.Runtime": "4.3.0"
  1919. },
  1920. "compile": {
  1921. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  1922. "related": ".xml"
  1923. }
  1924. },
  1925. "runtime": {
  1926. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  1927. }
  1928. },
  1929. "System.Security.AccessControl/4.7.0": {
  1930. "type": "package",
  1931. "dependencies": {
  1932. "Microsoft.NETCore.Platforms": "3.1.0",
  1933. "System.Security.Principal.Windows": "4.7.0"
  1934. },
  1935. "compile": {
  1936. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  1937. "related": ".xml"
  1938. }
  1939. },
  1940. "runtime": {
  1941. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  1942. "related": ".xml"
  1943. }
  1944. },
  1945. "runtimeTargets": {
  1946. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1947. "assetType": "runtime",
  1948. "rid": "win"
  1949. }
  1950. }
  1951. },
  1952. "System.Security.Cryptography.Algorithms/4.3.0": {
  1953. "type": "package",
  1954. "dependencies": {
  1955. "Microsoft.NETCore.Platforms": "1.1.0",
  1956. "System.Collections": "4.3.0",
  1957. "System.IO": "4.3.0",
  1958. "System.Resources.ResourceManager": "4.3.0",
  1959. "System.Runtime": "4.3.0",
  1960. "System.Runtime.Extensions": "4.3.0",
  1961. "System.Runtime.Handles": "4.3.0",
  1962. "System.Runtime.InteropServices": "4.3.0",
  1963. "System.Runtime.Numerics": "4.3.0",
  1964. "System.Security.Cryptography.Encoding": "4.3.0",
  1965. "System.Security.Cryptography.Primitives": "4.3.0",
  1966. "System.Text.Encoding": "4.3.0",
  1967. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  1968. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1969. },
  1970. "compile": {
  1971. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1972. },
  1973. "runtimeTargets": {
  1974. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1975. "assetType": "runtime",
  1976. "rid": "osx"
  1977. },
  1978. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1979. "assetType": "runtime",
  1980. "rid": "unix"
  1981. },
  1982. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1983. "assetType": "runtime",
  1984. "rid": "win"
  1985. }
  1986. }
  1987. },
  1988. "System.Security.Cryptography.Cng/4.5.0": {
  1989. "type": "package",
  1990. "compile": {
  1991. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1992. "related": ".xml"
  1993. }
  1994. },
  1995. "runtime": {
  1996. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1997. },
  1998. "runtimeTargets": {
  1999. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2000. "assetType": "runtime",
  2001. "rid": "win"
  2002. }
  2003. }
  2004. },
  2005. "System.Security.Cryptography.Csp/4.3.0": {
  2006. "type": "package",
  2007. "dependencies": {
  2008. "Microsoft.NETCore.Platforms": "1.1.0",
  2009. "System.IO": "4.3.0",
  2010. "System.Reflection": "4.3.0",
  2011. "System.Resources.ResourceManager": "4.3.0",
  2012. "System.Runtime": "4.3.0",
  2013. "System.Runtime.Extensions": "4.3.0",
  2014. "System.Runtime.Handles": "4.3.0",
  2015. "System.Runtime.InteropServices": "4.3.0",
  2016. "System.Security.Cryptography.Algorithms": "4.3.0",
  2017. "System.Security.Cryptography.Encoding": "4.3.0",
  2018. "System.Security.Cryptography.Primitives": "4.3.0",
  2019. "System.Text.Encoding": "4.3.0",
  2020. "System.Threading": "4.3.0"
  2021. },
  2022. "compile": {
  2023. "ref/netstandard1.3/_._": {}
  2024. },
  2025. "runtimeTargets": {
  2026. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2027. "assetType": "runtime",
  2028. "rid": "unix"
  2029. },
  2030. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2031. "assetType": "runtime",
  2032. "rid": "win"
  2033. }
  2034. }
  2035. },
  2036. "System.Security.Cryptography.Encoding/4.3.0": {
  2037. "type": "package",
  2038. "dependencies": {
  2039. "Microsoft.NETCore.Platforms": "1.1.0",
  2040. "System.Collections": "4.3.0",
  2041. "System.Collections.Concurrent": "4.3.0",
  2042. "System.Linq": "4.3.0",
  2043. "System.Resources.ResourceManager": "4.3.0",
  2044. "System.Runtime": "4.3.0",
  2045. "System.Runtime.Extensions": "4.3.0",
  2046. "System.Runtime.Handles": "4.3.0",
  2047. "System.Runtime.InteropServices": "4.3.0",
  2048. "System.Security.Cryptography.Primitives": "4.3.0",
  2049. "System.Text.Encoding": "4.3.0",
  2050. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2051. },
  2052. "compile": {
  2053. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2054. "related": ".xml"
  2055. }
  2056. },
  2057. "runtimeTargets": {
  2058. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2059. "assetType": "runtime",
  2060. "rid": "unix"
  2061. },
  2062. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2063. "assetType": "runtime",
  2064. "rid": "win"
  2065. }
  2066. }
  2067. },
  2068. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2069. "type": "package",
  2070. "dependencies": {
  2071. "System.Collections": "4.3.0",
  2072. "System.IO": "4.3.0",
  2073. "System.Resources.ResourceManager": "4.3.0",
  2074. "System.Runtime": "4.3.0",
  2075. "System.Runtime.Extensions": "4.3.0",
  2076. "System.Runtime.Handles": "4.3.0",
  2077. "System.Runtime.InteropServices": "4.3.0",
  2078. "System.Runtime.Numerics": "4.3.0",
  2079. "System.Security.Cryptography.Algorithms": "4.3.0",
  2080. "System.Security.Cryptography.Encoding": "4.3.0",
  2081. "System.Security.Cryptography.Primitives": "4.3.0",
  2082. "System.Text.Encoding": "4.3.0",
  2083. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2084. },
  2085. "compile": {
  2086. "ref/netstandard1.6/_._": {}
  2087. },
  2088. "runtime": {
  2089. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2090. },
  2091. "runtimeTargets": {
  2092. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2093. "assetType": "runtime",
  2094. "rid": "unix"
  2095. }
  2096. }
  2097. },
  2098. "System.Security.Cryptography.Primitives/4.3.0": {
  2099. "type": "package",
  2100. "dependencies": {
  2101. "System.Diagnostics.Debug": "4.3.0",
  2102. "System.Globalization": "4.3.0",
  2103. "System.IO": "4.3.0",
  2104. "System.Resources.ResourceManager": "4.3.0",
  2105. "System.Runtime": "4.3.0",
  2106. "System.Threading": "4.3.0",
  2107. "System.Threading.Tasks": "4.3.0"
  2108. },
  2109. "compile": {
  2110. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2111. },
  2112. "runtime": {
  2113. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2114. }
  2115. },
  2116. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2117. "type": "package",
  2118. "compile": {
  2119. "ref/netstandard2.0/_._": {
  2120. "related": ".xml"
  2121. }
  2122. },
  2123. "runtime": {
  2124. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2125. "related": ".xml"
  2126. }
  2127. },
  2128. "runtimeTargets": {
  2129. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2130. "assetType": "runtime",
  2131. "rid": "win"
  2132. }
  2133. }
  2134. },
  2135. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2136. "type": "package",
  2137. "dependencies": {
  2138. "Microsoft.NETCore.Platforms": "1.1.0",
  2139. "System.Collections": "4.3.0",
  2140. "System.Diagnostics.Debug": "4.3.0",
  2141. "System.Globalization": "4.3.0",
  2142. "System.Globalization.Calendars": "4.3.0",
  2143. "System.IO": "4.3.0",
  2144. "System.IO.FileSystem": "4.3.0",
  2145. "System.IO.FileSystem.Primitives": "4.3.0",
  2146. "System.Resources.ResourceManager": "4.3.0",
  2147. "System.Runtime": "4.3.0",
  2148. "System.Runtime.Extensions": "4.3.0",
  2149. "System.Runtime.Handles": "4.3.0",
  2150. "System.Runtime.InteropServices": "4.3.0",
  2151. "System.Runtime.Numerics": "4.3.0",
  2152. "System.Security.Cryptography.Algorithms": "4.3.0",
  2153. "System.Security.Cryptography.Cng": "4.3.0",
  2154. "System.Security.Cryptography.Csp": "4.3.0",
  2155. "System.Security.Cryptography.Encoding": "4.3.0",
  2156. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2157. "System.Security.Cryptography.Primitives": "4.3.0",
  2158. "System.Text.Encoding": "4.3.0",
  2159. "System.Threading": "4.3.0",
  2160. "runtime.native.System": "4.3.0",
  2161. "runtime.native.System.Net.Http": "4.3.0",
  2162. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2163. },
  2164. "compile": {
  2165. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2166. "related": ".xml"
  2167. }
  2168. },
  2169. "runtimeTargets": {
  2170. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2171. "assetType": "runtime",
  2172. "rid": "unix"
  2173. },
  2174. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2175. "assetType": "runtime",
  2176. "rid": "win"
  2177. }
  2178. }
  2179. },
  2180. "System.Security.Permissions/4.7.0": {
  2181. "type": "package",
  2182. "dependencies": {
  2183. "System.Security.AccessControl": "4.7.0",
  2184. "System.Windows.Extensions": "4.7.0"
  2185. },
  2186. "compile": {
  2187. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2188. "related": ".xml"
  2189. }
  2190. },
  2191. "runtime": {
  2192. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2193. "related": ".xml"
  2194. }
  2195. }
  2196. },
  2197. "System.Security.Principal.Windows/4.7.0": {
  2198. "type": "package",
  2199. "compile": {
  2200. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2201. "related": ".xml"
  2202. }
  2203. },
  2204. "runtime": {
  2205. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2206. "related": ".xml"
  2207. }
  2208. },
  2209. "runtimeTargets": {
  2210. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2211. "assetType": "runtime",
  2212. "rid": "unix"
  2213. },
  2214. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2215. "assetType": "runtime",
  2216. "rid": "win"
  2217. }
  2218. }
  2219. },
  2220. "System.Text.Encoding/4.3.0": {
  2221. "type": "package",
  2222. "dependencies": {
  2223. "Microsoft.NETCore.Platforms": "1.1.0",
  2224. "Microsoft.NETCore.Targets": "1.1.0",
  2225. "System.Runtime": "4.3.0"
  2226. },
  2227. "compile": {
  2228. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2229. "related": ".xml"
  2230. }
  2231. }
  2232. },
  2233. "System.Text.Encoding.CodePages/4.7.0": {
  2234. "type": "package",
  2235. "dependencies": {
  2236. "Microsoft.NETCore.Platforms": "3.1.0"
  2237. },
  2238. "compile": {
  2239. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2240. "related": ".xml"
  2241. }
  2242. },
  2243. "runtime": {
  2244. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2245. "related": ".xml"
  2246. }
  2247. },
  2248. "runtimeTargets": {
  2249. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2250. "assetType": "runtime",
  2251. "rid": "win"
  2252. }
  2253. }
  2254. },
  2255. "System.Text.Encoding.Extensions/4.3.0": {
  2256. "type": "package",
  2257. "dependencies": {
  2258. "Microsoft.NETCore.Platforms": "1.1.0",
  2259. "Microsoft.NETCore.Targets": "1.1.0",
  2260. "System.Runtime": "4.3.0",
  2261. "System.Text.Encoding": "4.3.0"
  2262. },
  2263. "compile": {
  2264. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2265. "related": ".xml"
  2266. }
  2267. }
  2268. },
  2269. "System.Text.Json/4.7.1": {
  2270. "type": "package",
  2271. "compile": {
  2272. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2273. "related": ".xml"
  2274. }
  2275. },
  2276. "runtime": {
  2277. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2278. "related": ".xml"
  2279. }
  2280. }
  2281. },
  2282. "System.Text.RegularExpressions/4.3.0": {
  2283. "type": "package",
  2284. "dependencies": {
  2285. "System.Runtime": "4.3.0"
  2286. },
  2287. "compile": {
  2288. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2289. },
  2290. "runtime": {
  2291. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2292. }
  2293. },
  2294. "System.Threading/4.3.0": {
  2295. "type": "package",
  2296. "dependencies": {
  2297. "System.Runtime": "4.3.0",
  2298. "System.Threading.Tasks": "4.3.0"
  2299. },
  2300. "compile": {
  2301. "ref/netstandard1.3/System.Threading.dll": {
  2302. "related": ".xml"
  2303. }
  2304. },
  2305. "runtime": {
  2306. "lib/netstandard1.3/System.Threading.dll": {}
  2307. }
  2308. },
  2309. "System.Threading.Tasks/4.3.0": {
  2310. "type": "package",
  2311. "dependencies": {
  2312. "Microsoft.NETCore.Platforms": "1.1.0",
  2313. "Microsoft.NETCore.Targets": "1.1.0",
  2314. "System.Runtime": "4.3.0"
  2315. },
  2316. "compile": {
  2317. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2318. "related": ".xml"
  2319. }
  2320. }
  2321. },
  2322. "System.Threading.Tasks.Extensions/4.3.0": {
  2323. "type": "package",
  2324. "dependencies": {
  2325. "System.Collections": "4.3.0",
  2326. "System.Runtime": "4.3.0",
  2327. "System.Threading.Tasks": "4.3.0"
  2328. },
  2329. "compile": {
  2330. "lib/netstandard1.0/_._": {
  2331. "related": ".xml"
  2332. }
  2333. },
  2334. "runtime": {
  2335. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2336. "related": ".xml"
  2337. }
  2338. }
  2339. },
  2340. "System.Threading.Timer/4.3.0": {
  2341. "type": "package",
  2342. "dependencies": {
  2343. "Microsoft.NETCore.Platforms": "1.1.0",
  2344. "Microsoft.NETCore.Targets": "1.1.0",
  2345. "System.Runtime": "4.3.0"
  2346. },
  2347. "compile": {
  2348. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2349. "related": ".xml"
  2350. }
  2351. }
  2352. },
  2353. "System.Windows.Extensions/4.7.0": {
  2354. "type": "package",
  2355. "dependencies": {
  2356. "System.Drawing.Common": "4.7.0"
  2357. },
  2358. "compile": {
  2359. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2360. "related": ".xml"
  2361. }
  2362. },
  2363. "runtime": {
  2364. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2365. "related": ".xml"
  2366. }
  2367. },
  2368. "runtimeTargets": {
  2369. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2370. "assetType": "runtime",
  2371. "rid": "win"
  2372. }
  2373. }
  2374. },
  2375. "System.Xml.ReaderWriter/4.3.0": {
  2376. "type": "package",
  2377. "dependencies": {
  2378. "System.Collections": "4.3.0",
  2379. "System.Diagnostics.Debug": "4.3.0",
  2380. "System.Globalization": "4.3.0",
  2381. "System.IO": "4.3.0",
  2382. "System.IO.FileSystem": "4.3.0",
  2383. "System.IO.FileSystem.Primitives": "4.3.0",
  2384. "System.Resources.ResourceManager": "4.3.0",
  2385. "System.Runtime": "4.3.0",
  2386. "System.Runtime.Extensions": "4.3.0",
  2387. "System.Runtime.InteropServices": "4.3.0",
  2388. "System.Text.Encoding": "4.3.0",
  2389. "System.Text.Encoding.Extensions": "4.3.0",
  2390. "System.Text.RegularExpressions": "4.3.0",
  2391. "System.Threading.Tasks": "4.3.0",
  2392. "System.Threading.Tasks.Extensions": "4.3.0"
  2393. },
  2394. "compile": {
  2395. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2396. "related": ".xml"
  2397. }
  2398. },
  2399. "runtime": {
  2400. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2401. }
  2402. },
  2403. "System.Xml.XDocument/4.3.0": {
  2404. "type": "package",
  2405. "dependencies": {
  2406. "System.Collections": "4.3.0",
  2407. "System.Diagnostics.Debug": "4.3.0",
  2408. "System.Diagnostics.Tools": "4.3.0",
  2409. "System.Globalization": "4.3.0",
  2410. "System.IO": "4.3.0",
  2411. "System.Reflection": "4.3.0",
  2412. "System.Resources.ResourceManager": "4.3.0",
  2413. "System.Runtime": "4.3.0",
  2414. "System.Runtime.Extensions": "4.3.0",
  2415. "System.Text.Encoding": "4.3.0",
  2416. "System.Threading": "4.3.0",
  2417. "System.Xml.ReaderWriter": "4.3.0"
  2418. },
  2419. "compile": {
  2420. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2421. "related": ".xml"
  2422. }
  2423. },
  2424. "runtime": {
  2425. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2426. }
  2427. },
  2428. "System.Xml.XmlDocument/4.3.0": {
  2429. "type": "package",
  2430. "dependencies": {
  2431. "System.Collections": "4.3.0",
  2432. "System.Diagnostics.Debug": "4.3.0",
  2433. "System.Globalization": "4.3.0",
  2434. "System.IO": "4.3.0",
  2435. "System.Resources.ResourceManager": "4.3.0",
  2436. "System.Runtime": "4.3.0",
  2437. "System.Runtime.Extensions": "4.3.0",
  2438. "System.Text.Encoding": "4.3.0",
  2439. "System.Threading": "4.3.0",
  2440. "System.Xml.ReaderWriter": "4.3.0"
  2441. },
  2442. "compile": {
  2443. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  2444. "related": ".xml"
  2445. }
  2446. },
  2447. "runtime": {
  2448. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2449. }
  2450. }
  2451. }
  2452. },
  2453. "libraries": {
  2454. "Autofac/6.4.0": {
  2455. "sha512": "tkFxl6wAPuwVhrlN8wuNADnd+k2tv4ReP7ZZSL0vjfcN0RcfC9v25ogxK6b03HC7D4NwWjSLf1G/zTG8Bw43wQ==",
  2456. "type": "package",
  2457. "path": "autofac/6.4.0",
  2458. "files": [
  2459. ".nupkg.metadata",
  2460. ".signature.p7s",
  2461. "README.md",
  2462. "autofac.6.4.0.nupkg.sha512",
  2463. "autofac.nuspec",
  2464. "icon.png",
  2465. "lib/net5.0/Autofac.dll",
  2466. "lib/net5.0/Autofac.xml",
  2467. "lib/net6.0/Autofac.dll",
  2468. "lib/net6.0/Autofac.xml",
  2469. "lib/netstandard2.0/Autofac.dll",
  2470. "lib/netstandard2.0/Autofac.xml",
  2471. "lib/netstandard2.1/Autofac.dll",
  2472. "lib/netstandard2.1/Autofac.xml"
  2473. ]
  2474. },
  2475. "Autofac.Extensions.DependencyInjection/8.0.0": {
  2476. "sha512": "nGrXNpQX2FiZpIBydK9cxZnnoqP/cUd3k/53uRERYEqLtWzKtE15R6L+j5q5ax5Rv/+3wAIkOaPePkahfqrwjg==",
  2477. "type": "package",
  2478. "path": "autofac.extensions.dependencyinjection/8.0.0",
  2479. "files": [
  2480. ".nupkg.metadata",
  2481. ".signature.p7s",
  2482. "autofac.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  2483. "autofac.extensions.dependencyinjection.nuspec",
  2484. "icon.png",
  2485. "lib/net5.0/Autofac.Extensions.DependencyInjection.dll",
  2486. "lib/net5.0/Autofac.Extensions.DependencyInjection.xml",
  2487. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll",
  2488. "lib/net6.0/Autofac.Extensions.DependencyInjection.xml",
  2489. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  2490. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  2491. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  2492. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  2493. ]
  2494. },
  2495. "AutoMapper/12.0.0": {
  2496. "sha512": "0Rmg0zI5AFu1O/y//o9VGyhxKjhggWpk9mOA1tp0DEVx40c61bs+lnQv+0jUq8XbniF7FKgIVvI1perqiMtLrA==",
  2497. "type": "package",
  2498. "path": "automapper/12.0.0",
  2499. "files": [
  2500. ".nupkg.metadata",
  2501. ".signature.p7s",
  2502. "README.md",
  2503. "automapper.12.0.0.nupkg.sha512",
  2504. "automapper.nuspec",
  2505. "icon.png",
  2506. "lib/netstandard2.1/AutoMapper.dll",
  2507. "lib/netstandard2.1/AutoMapper.xml"
  2508. ]
  2509. },
  2510. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.0": {
  2511. "sha512": "XCJ4E3oKrbRl1qY9Mr+7uyC0xZj1+bqQjmQRWTiTKiVuuXTny+7YFWHi20tPjwkMukLbicN6yGlDy5PZ4wyi1w==",
  2512. "type": "package",
  2513. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.0",
  2514. "files": [
  2515. ".nupkg.metadata",
  2516. ".signature.p7s",
  2517. "README.md",
  2518. "automapper.extensions.microsoft.dependencyinjection.12.0.0.nupkg.sha512",
  2519. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2520. "icon.png",
  2521. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2522. ]
  2523. },
  2524. "BouncyCastle.NetCore/1.8.5": {
  2525. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  2526. "type": "package",
  2527. "path": "bouncycastle.netcore/1.8.5",
  2528. "files": [
  2529. ".nupkg.metadata",
  2530. ".signature.p7s",
  2531. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  2532. "bouncycastle.netcore.nuspec",
  2533. "lib/Mono/BouncyCastle.Crypto.dll",
  2534. "lib/Mono/BouncyCastle.Crypto.xml",
  2535. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2536. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2537. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2538. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2539. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2540. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2541. "lib/net20/BouncyCastle.Crypto.dll",
  2542. "lib/net20/BouncyCastle.Crypto.xml",
  2543. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2544. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2545. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2546. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2547. ]
  2548. },
  2549. "Google.Protobuf/3.19.4": {
  2550. "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==",
  2551. "type": "package",
  2552. "path": "google.protobuf/3.19.4",
  2553. "files": [
  2554. ".nupkg.metadata",
  2555. ".signature.p7s",
  2556. "google.protobuf.3.19.4.nupkg.sha512",
  2557. "google.protobuf.nuspec",
  2558. "lib/net45/Google.Protobuf.dll",
  2559. "lib/net45/Google.Protobuf.pdb",
  2560. "lib/net45/Google.Protobuf.xml",
  2561. "lib/net5.0/Google.Protobuf.dll",
  2562. "lib/net5.0/Google.Protobuf.pdb",
  2563. "lib/net5.0/Google.Protobuf.xml",
  2564. "lib/netstandard1.1/Google.Protobuf.dll",
  2565. "lib/netstandard1.1/Google.Protobuf.pdb",
  2566. "lib/netstandard1.1/Google.Protobuf.xml",
  2567. "lib/netstandard2.0/Google.Protobuf.dll",
  2568. "lib/netstandard2.0/Google.Protobuf.pdb",
  2569. "lib/netstandard2.0/Google.Protobuf.xml"
  2570. ]
  2571. },
  2572. "K4os.Compression.LZ4/1.2.6": {
  2573. "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
  2574. "type": "package",
  2575. "path": "k4os.compression.lz4/1.2.6",
  2576. "files": [
  2577. ".nupkg.metadata",
  2578. ".signature.p7s",
  2579. "k4os.compression.lz4.1.2.6.nupkg.sha512",
  2580. "k4os.compression.lz4.nuspec",
  2581. "lib/net45/K4os.Compression.LZ4.dll",
  2582. "lib/net45/K4os.Compression.LZ4.xml",
  2583. "lib/net46/K4os.Compression.LZ4.dll",
  2584. "lib/net46/K4os.Compression.LZ4.xml",
  2585. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2586. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2587. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2588. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2589. ]
  2590. },
  2591. "K4os.Compression.LZ4.Streams/1.2.6": {
  2592. "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
  2593. "type": "package",
  2594. "path": "k4os.compression.lz4.streams/1.2.6",
  2595. "files": [
  2596. ".nupkg.metadata",
  2597. ".signature.p7s",
  2598. "k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
  2599. "k4os.compression.lz4.streams.nuspec",
  2600. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2601. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2602. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2603. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2604. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2605. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2606. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2607. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
  2608. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
  2609. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
  2610. ]
  2611. },
  2612. "K4os.Hash.xxHash/1.0.6": {
  2613. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2614. "type": "package",
  2615. "path": "k4os.hash.xxhash/1.0.6",
  2616. "files": [
  2617. ".nupkg.metadata",
  2618. ".signature.p7s",
  2619. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2620. "k4os.hash.xxhash.nuspec",
  2621. "lib/net45/K4os.Hash.xxHash.dll",
  2622. "lib/net45/K4os.Hash.xxHash.xml",
  2623. "lib/net46/K4os.Hash.xxHash.dll",
  2624. "lib/net46/K4os.Hash.xxHash.xml",
  2625. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2626. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2627. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2628. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2629. ]
  2630. },
  2631. "Microsoft.CSharp/4.7.0": {
  2632. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2633. "type": "package",
  2634. "path": "microsoft.csharp/4.7.0",
  2635. "files": [
  2636. ".nupkg.metadata",
  2637. ".signature.p7s",
  2638. "LICENSE.TXT",
  2639. "THIRD-PARTY-NOTICES.TXT",
  2640. "lib/MonoAndroid10/_._",
  2641. "lib/MonoTouch10/_._",
  2642. "lib/net45/_._",
  2643. "lib/netcore50/Microsoft.CSharp.dll",
  2644. "lib/netcoreapp2.0/_._",
  2645. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2646. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2647. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2648. "lib/portable-net45+win8+wp8+wpa81/_._",
  2649. "lib/uap10.0.16299/_._",
  2650. "lib/win8/_._",
  2651. "lib/wp80/_._",
  2652. "lib/wpa81/_._",
  2653. "lib/xamarinios10/_._",
  2654. "lib/xamarinmac20/_._",
  2655. "lib/xamarintvos10/_._",
  2656. "lib/xamarinwatchos10/_._",
  2657. "microsoft.csharp.4.7.0.nupkg.sha512",
  2658. "microsoft.csharp.nuspec",
  2659. "ref/MonoAndroid10/_._",
  2660. "ref/MonoTouch10/_._",
  2661. "ref/net45/_._",
  2662. "ref/netcore50/Microsoft.CSharp.dll",
  2663. "ref/netcore50/Microsoft.CSharp.xml",
  2664. "ref/netcore50/de/Microsoft.CSharp.xml",
  2665. "ref/netcore50/es/Microsoft.CSharp.xml",
  2666. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2667. "ref/netcore50/it/Microsoft.CSharp.xml",
  2668. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2669. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2670. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2671. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2672. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2673. "ref/netcoreapp2.0/_._",
  2674. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2675. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2676. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2677. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2678. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2679. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2680. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2681. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2682. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2683. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2684. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2685. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2686. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2687. "ref/portable-net45+win8+wp8+wpa81/_._",
  2688. "ref/uap10.0.16299/_._",
  2689. "ref/win8/_._",
  2690. "ref/wp80/_._",
  2691. "ref/wpa81/_._",
  2692. "ref/xamarinios10/_._",
  2693. "ref/xamarinmac20/_._",
  2694. "ref/xamarintvos10/_._",
  2695. "ref/xamarinwatchos10/_._",
  2696. "useSharedDesignerContext.txt",
  2697. "version.txt"
  2698. ]
  2699. },
  2700. "Microsoft.Data.SqlClient/2.1.1": {
  2701. "sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==",
  2702. "type": "package",
  2703. "path": "microsoft.data.sqlclient/2.1.1",
  2704. "files": [
  2705. ".nupkg.metadata",
  2706. ".signature.p7s",
  2707. "dotnet.png",
  2708. "lib/net46/Microsoft.Data.SqlClient.dll",
  2709. "lib/net46/Microsoft.Data.SqlClient.pdb",
  2710. "lib/net46/Microsoft.Data.SqlClient.xml",
  2711. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  2712. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  2713. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  2714. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  2715. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  2716. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  2717. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2718. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  2719. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2720. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2721. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2722. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2723. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2724. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2725. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2726. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2727. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2728. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2729. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2730. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2731. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2732. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2733. "microsoft.data.sqlclient.2.1.1.nupkg.sha512",
  2734. "microsoft.data.sqlclient.nuspec",
  2735. "ref/net46/Microsoft.Data.SqlClient.dll",
  2736. "ref/net46/Microsoft.Data.SqlClient.pdb",
  2737. "ref/net46/Microsoft.Data.SqlClient.xml",
  2738. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2739. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2740. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2741. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2742. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2743. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2744. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2745. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2746. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2747. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2748. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2749. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2750. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2751. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2752. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2753. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2754. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2755. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2756. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2757. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2758. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  2759. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  2760. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2761. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2762. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2763. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2764. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2765. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2766. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2767. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  2768. ]
  2769. },
  2770. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  2771. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  2772. "type": "package",
  2773. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  2774. "files": [
  2775. ".nupkg.metadata",
  2776. ".signature.p7s",
  2777. "LICENSE.txt",
  2778. "dotnet.png",
  2779. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  2780. "microsoft.data.sqlclient.sni.runtime.nuspec",
  2781. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  2782. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  2783. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  2784. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  2785. ]
  2786. },
  2787. "Microsoft.Data.Sqlite/5.0.5": {
  2788. "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==",
  2789. "type": "package",
  2790. "path": "microsoft.data.sqlite/5.0.5",
  2791. "files": [
  2792. ".nupkg.metadata",
  2793. ".signature.p7s",
  2794. "Icon.png",
  2795. "lib/netstandard2.0/_._",
  2796. "microsoft.data.sqlite.5.0.5.nupkg.sha512",
  2797. "microsoft.data.sqlite.nuspec"
  2798. ]
  2799. },
  2800. "Microsoft.Data.Sqlite.Core/5.0.5": {
  2801. "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==",
  2802. "type": "package",
  2803. "path": "microsoft.data.sqlite.core/5.0.5",
  2804. "files": [
  2805. ".nupkg.metadata",
  2806. ".signature.p7s",
  2807. "Icon.png",
  2808. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  2809. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  2810. "microsoft.data.sqlite.core.5.0.5.nupkg.sha512",
  2811. "microsoft.data.sqlite.core.nuspec"
  2812. ]
  2813. },
  2814. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  2815. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  2816. "type": "package",
  2817. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  2818. "files": [
  2819. ".nupkg.metadata",
  2820. ".signature.p7s",
  2821. "Icon.png",
  2822. "LICENSE.TXT",
  2823. "THIRD-PARTY-NOTICES.TXT",
  2824. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2825. "buildTransitive/netcoreapp3.1/_._",
  2826. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2827. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2828. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2829. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2830. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2831. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2832. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2833. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2834. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  2835. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2836. "useSharedDesignerContext.txt"
  2837. ]
  2838. },
  2839. "Microsoft.Extensions.Options/6.0.0": {
  2840. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  2841. "type": "package",
  2842. "path": "microsoft.extensions.options/6.0.0",
  2843. "files": [
  2844. ".nupkg.metadata",
  2845. ".signature.p7s",
  2846. "Icon.png",
  2847. "LICENSE.TXT",
  2848. "THIRD-PARTY-NOTICES.TXT",
  2849. "lib/net461/Microsoft.Extensions.Options.dll",
  2850. "lib/net461/Microsoft.Extensions.Options.xml",
  2851. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2852. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2853. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  2854. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  2855. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  2856. "microsoft.extensions.options.nuspec",
  2857. "useSharedDesignerContext.txt"
  2858. ]
  2859. },
  2860. "Microsoft.Extensions.Primitives/6.0.0": {
  2861. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  2862. "type": "package",
  2863. "path": "microsoft.extensions.primitives/6.0.0",
  2864. "files": [
  2865. ".nupkg.metadata",
  2866. ".signature.p7s",
  2867. "Icon.png",
  2868. "LICENSE.TXT",
  2869. "THIRD-PARTY-NOTICES.TXT",
  2870. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  2871. "buildTransitive/netcoreapp3.1/_._",
  2872. "lib/net461/Microsoft.Extensions.Primitives.dll",
  2873. "lib/net461/Microsoft.Extensions.Primitives.xml",
  2874. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  2875. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  2876. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  2877. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  2878. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2879. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2880. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  2881. "microsoft.extensions.primitives.nuspec",
  2882. "useSharedDesignerContext.txt"
  2883. ]
  2884. },
  2885. "Microsoft.Identity.Client/4.21.1": {
  2886. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  2887. "type": "package",
  2888. "path": "microsoft.identity.client/4.21.1",
  2889. "files": [
  2890. ".nupkg.metadata",
  2891. ".signature.p7s",
  2892. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  2893. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  2894. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  2895. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  2896. "lib/net45/Microsoft.Identity.Client.dll",
  2897. "lib/net45/Microsoft.Identity.Client.xml",
  2898. "lib/net461/Microsoft.Identity.Client.dll",
  2899. "lib/net461/Microsoft.Identity.Client.xml",
  2900. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  2901. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  2902. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  2903. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  2904. "lib/uap10.0/Microsoft.Identity.Client.dll",
  2905. "lib/uap10.0/Microsoft.Identity.Client.pri",
  2906. "lib/uap10.0/Microsoft.Identity.Client.xml",
  2907. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  2908. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  2909. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  2910. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  2911. "microsoft.identity.client.4.21.1.nupkg.sha512",
  2912. "microsoft.identity.client.nuspec",
  2913. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  2914. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  2915. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  2916. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  2917. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  2918. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  2919. "ref/net45/Microsoft.Identity.Client.dll",
  2920. "ref/net45/Microsoft.Identity.Client.xml",
  2921. "ref/net461/Microsoft.Identity.Client.dll",
  2922. "ref/net461/Microsoft.Identity.Client.xml",
  2923. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  2924. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  2925. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  2926. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  2927. "ref/uap10.0/Microsoft.Identity.Client.dll",
  2928. "ref/uap10.0/Microsoft.Identity.Client.xml",
  2929. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  2930. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  2931. ]
  2932. },
  2933. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  2934. "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==",
  2935. "type": "package",
  2936. "path": "microsoft.identitymodel.jsonwebtokens/6.8.0",
  2937. "files": [
  2938. ".nupkg.metadata",
  2939. ".signature.p7s",
  2940. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  2941. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  2942. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  2943. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  2944. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  2945. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  2946. "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512",
  2947. "microsoft.identitymodel.jsonwebtokens.nuspec"
  2948. ]
  2949. },
  2950. "Microsoft.IdentityModel.Logging/6.8.0": {
  2951. "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",
  2952. "type": "package",
  2953. "path": "microsoft.identitymodel.logging/6.8.0",
  2954. "files": [
  2955. ".nupkg.metadata",
  2956. ".signature.p7s",
  2957. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  2958. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  2959. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  2960. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  2961. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  2962. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  2963. "microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
  2964. "microsoft.identitymodel.logging.nuspec"
  2965. ]
  2966. },
  2967. "Microsoft.IdentityModel.Protocols/6.8.0": {
  2968. "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==",
  2969. "type": "package",
  2970. "path": "microsoft.identitymodel.protocols/6.8.0",
  2971. "files": [
  2972. ".nupkg.metadata",
  2973. ".signature.p7s",
  2974. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  2975. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  2976. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  2977. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  2978. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  2979. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  2980. "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512",
  2981. "microsoft.identitymodel.protocols.nuspec"
  2982. ]
  2983. },
  2984. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  2985. "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==",
  2986. "type": "package",
  2987. "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0",
  2988. "files": [
  2989. ".nupkg.metadata",
  2990. ".signature.p7s",
  2991. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2992. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2993. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2994. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2995. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2996. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2997. "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512",
  2998. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  2999. ]
  3000. },
  3001. "Microsoft.IdentityModel.Tokens/6.8.0": {
  3002. "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",
  3003. "type": "package",
  3004. "path": "microsoft.identitymodel.tokens/6.8.0",
  3005. "files": [
  3006. ".nupkg.metadata",
  3007. ".signature.p7s",
  3008. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3009. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3010. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3011. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3012. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3013. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3014. "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
  3015. "microsoft.identitymodel.tokens.nuspec"
  3016. ]
  3017. },
  3018. "Microsoft.NETCore.Platforms/3.1.0": {
  3019. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  3020. "type": "package",
  3021. "path": "microsoft.netcore.platforms/3.1.0",
  3022. "files": [
  3023. ".nupkg.metadata",
  3024. ".signature.p7s",
  3025. "LICENSE.TXT",
  3026. "THIRD-PARTY-NOTICES.TXT",
  3027. "lib/netstandard1.0/_._",
  3028. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  3029. "microsoft.netcore.platforms.nuspec",
  3030. "runtime.json",
  3031. "useSharedDesignerContext.txt",
  3032. "version.txt"
  3033. ]
  3034. },
  3035. "Microsoft.NETCore.Targets/1.1.0": {
  3036. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3037. "type": "package",
  3038. "path": "microsoft.netcore.targets/1.1.0",
  3039. "files": [
  3040. ".nupkg.metadata",
  3041. ".signature.p7s",
  3042. "ThirdPartyNotices.txt",
  3043. "dotnet_library_license.txt",
  3044. "lib/netstandard1.0/_._",
  3045. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3046. "microsoft.netcore.targets.nuspec",
  3047. "runtime.json"
  3048. ]
  3049. },
  3050. "Microsoft.Win32.Primitives/4.3.0": {
  3051. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3052. "type": "package",
  3053. "path": "microsoft.win32.primitives/4.3.0",
  3054. "files": [
  3055. ".nupkg.metadata",
  3056. ".signature.p7s",
  3057. "ThirdPartyNotices.txt",
  3058. "dotnet_library_license.txt",
  3059. "lib/MonoAndroid10/_._",
  3060. "lib/MonoTouch10/_._",
  3061. "lib/net46/Microsoft.Win32.Primitives.dll",
  3062. "lib/xamarinios10/_._",
  3063. "lib/xamarinmac20/_._",
  3064. "lib/xamarintvos10/_._",
  3065. "lib/xamarinwatchos10/_._",
  3066. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3067. "microsoft.win32.primitives.nuspec",
  3068. "ref/MonoAndroid10/_._",
  3069. "ref/MonoTouch10/_._",
  3070. "ref/net46/Microsoft.Win32.Primitives.dll",
  3071. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3072. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3073. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3074. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3075. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3076. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3077. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3078. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3079. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3080. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3081. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3082. "ref/xamarinios10/_._",
  3083. "ref/xamarinmac20/_._",
  3084. "ref/xamarintvos10/_._",
  3085. "ref/xamarinwatchos10/_._"
  3086. ]
  3087. },
  3088. "Microsoft.Win32.Registry/4.7.0": {
  3089. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  3090. "type": "package",
  3091. "path": "microsoft.win32.registry/4.7.0",
  3092. "files": [
  3093. ".nupkg.metadata",
  3094. ".signature.p7s",
  3095. "LICENSE.TXT",
  3096. "THIRD-PARTY-NOTICES.TXT",
  3097. "lib/net46/Microsoft.Win32.Registry.dll",
  3098. "lib/net461/Microsoft.Win32.Registry.dll",
  3099. "lib/net461/Microsoft.Win32.Registry.xml",
  3100. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3101. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3102. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3103. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  3104. "microsoft.win32.registry.nuspec",
  3105. "ref/net46/Microsoft.Win32.Registry.dll",
  3106. "ref/net461/Microsoft.Win32.Registry.dll",
  3107. "ref/net461/Microsoft.Win32.Registry.xml",
  3108. "ref/net472/Microsoft.Win32.Registry.dll",
  3109. "ref/net472/Microsoft.Win32.Registry.xml",
  3110. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3111. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3112. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3113. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3114. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3115. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3116. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3117. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3118. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3119. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3120. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3121. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3122. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3123. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3124. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3125. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3126. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3127. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3128. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3129. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3130. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3131. "useSharedDesignerContext.txt",
  3132. "version.txt"
  3133. ]
  3134. },
  3135. "Microsoft.Win32.SystemEvents/4.7.0": {
  3136. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  3137. "type": "package",
  3138. "path": "microsoft.win32.systemevents/4.7.0",
  3139. "files": [
  3140. ".nupkg.metadata",
  3141. ".signature.p7s",
  3142. "LICENSE.TXT",
  3143. "THIRD-PARTY-NOTICES.TXT",
  3144. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3145. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3146. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3147. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3148. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  3149. "microsoft.win32.systemevents.nuspec",
  3150. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3151. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3152. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  3153. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  3154. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3155. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3156. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3157. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3158. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3159. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3160. "useSharedDesignerContext.txt",
  3161. "version.txt"
  3162. ]
  3163. },
  3164. "MySql.Data/8.0.29": {
  3165. "sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==",
  3166. "type": "package",
  3167. "path": "mysql.data/8.0.29",
  3168. "files": [
  3169. ".nupkg.metadata",
  3170. ".signature.p7s",
  3171. "lib/net452/MySql.Data.dll",
  3172. "lib/net452/MySql.Data.xml",
  3173. "lib/net452/Ubiety.Dns.Core.dll",
  3174. "lib/net452/ZstdNet.dll",
  3175. "lib/net48/MySql.Data.dll",
  3176. "lib/net48/MySql.Data.xml",
  3177. "lib/net48/Ubiety.Dns.Core.dll",
  3178. "lib/net48/ZstdNet.dll",
  3179. "lib/net5.0/MySql.Data.dll",
  3180. "lib/net5.0/MySql.Data.xml",
  3181. "lib/net5.0/Ubiety.Dns.Core.dll",
  3182. "lib/net5.0/ZstdNet.dll",
  3183. "lib/net6.0/MySql.Data.dll",
  3184. "lib/net6.0/MySql.Data.xml",
  3185. "lib/net6.0/Ubiety.Dns.Core.dll",
  3186. "lib/net6.0/ZstdNet.dll",
  3187. "lib/netstandard2.0/MySql.Data.dll",
  3188. "lib/netstandard2.0/MySql.Data.xml",
  3189. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  3190. "lib/netstandard2.0/ZstdNet.dll",
  3191. "lib/netstandard2.1/MySql.Data.dll",
  3192. "lib/netstandard2.1/MySql.Data.xml",
  3193. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  3194. "lib/netstandard2.1/ZstdNet.dll",
  3195. "mysql.data.8.0.29.nupkg.sha512",
  3196. "mysql.data.nuspec"
  3197. ]
  3198. },
  3199. "NETStandard.Library/1.6.1": {
  3200. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  3201. "type": "package",
  3202. "path": "netstandard.library/1.6.1",
  3203. "files": [
  3204. ".nupkg.metadata",
  3205. ".signature.p7s",
  3206. "ThirdPartyNotices.txt",
  3207. "dotnet_library_license.txt",
  3208. "netstandard.library.1.6.1.nupkg.sha512",
  3209. "netstandard.library.nuspec"
  3210. ]
  3211. },
  3212. "Newtonsoft.Json/10.0.3": {
  3213. "sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
  3214. "type": "package",
  3215. "path": "newtonsoft.json/10.0.3",
  3216. "hasTools": true,
  3217. "files": [
  3218. ".nupkg.metadata",
  3219. ".signature.p7s",
  3220. "LICENSE.md",
  3221. "lib/net20/Newtonsoft.Json.dll",
  3222. "lib/net20/Newtonsoft.Json.xml",
  3223. "lib/net35/Newtonsoft.Json.dll",
  3224. "lib/net35/Newtonsoft.Json.xml",
  3225. "lib/net40/Newtonsoft.Json.dll",
  3226. "lib/net40/Newtonsoft.Json.xml",
  3227. "lib/net45/Newtonsoft.Json.dll",
  3228. "lib/net45/Newtonsoft.Json.xml",
  3229. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3230. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3231. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3232. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3233. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3234. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3235. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3236. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3237. "newtonsoft.json.10.0.3.nupkg.sha512",
  3238. "newtonsoft.json.nuspec",
  3239. "tools/install.ps1"
  3240. ]
  3241. },
  3242. "Npgsql/5.0.7": {
  3243. "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==",
  3244. "type": "package",
  3245. "path": "npgsql/5.0.7",
  3246. "files": [
  3247. ".nupkg.metadata",
  3248. ".signature.p7s",
  3249. "lib/net5.0/Npgsql.dll",
  3250. "lib/net5.0/Npgsql.xml",
  3251. "lib/netcoreapp3.1/Npgsql.dll",
  3252. "lib/netcoreapp3.1/Npgsql.xml",
  3253. "lib/netstandard2.0/Npgsql.dll",
  3254. "lib/netstandard2.0/Npgsql.xml",
  3255. "lib/netstandard2.1/Npgsql.dll",
  3256. "lib/netstandard2.1/Npgsql.xml",
  3257. "npgsql.5.0.7.nupkg.sha512",
  3258. "npgsql.nuspec",
  3259. "postgresql.png"
  3260. ]
  3261. },
  3262. "Oracle.ManagedDataAccess.Core/3.21.1": {
  3263. "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==",
  3264. "type": "package",
  3265. "path": "oracle.manageddataaccess.core/3.21.1",
  3266. "files": [
  3267. ".nupkg.metadata",
  3268. ".signature.p7s",
  3269. "PerfCounters/register_odpc_perfmon_counters.ps1",
  3270. "PerfCounters/unregister_odpc_perfmon_counters.ps1",
  3271. "info.txt",
  3272. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll",
  3273. "oracle.manageddataaccess.core.3.21.1.nupkg.sha512",
  3274. "oracle.manageddataaccess.core.nuspec",
  3275. "readme.txt"
  3276. ]
  3277. },
  3278. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3279. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  3280. "type": "package",
  3281. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3282. "files": [
  3283. ".nupkg.metadata",
  3284. ".signature.p7s",
  3285. "ThirdPartyNotices.txt",
  3286. "dotnet_library_license.txt",
  3287. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3288. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3289. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3290. ]
  3291. },
  3292. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3293. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  3294. "type": "package",
  3295. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3296. "files": [
  3297. ".nupkg.metadata",
  3298. ".signature.p7s",
  3299. "ThirdPartyNotices.txt",
  3300. "dotnet_library_license.txt",
  3301. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3302. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3303. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3304. ]
  3305. },
  3306. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3307. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  3308. "type": "package",
  3309. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3310. "files": [
  3311. ".nupkg.metadata",
  3312. ".signature.p7s",
  3313. "ThirdPartyNotices.txt",
  3314. "dotnet_library_license.txt",
  3315. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3316. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3317. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3318. ]
  3319. },
  3320. "runtime.native.System/4.3.0": {
  3321. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  3322. "type": "package",
  3323. "path": "runtime.native.system/4.3.0",
  3324. "files": [
  3325. ".nupkg.metadata",
  3326. ".signature.p7s",
  3327. "ThirdPartyNotices.txt",
  3328. "dotnet_library_license.txt",
  3329. "lib/netstandard1.0/_._",
  3330. "runtime.native.system.4.3.0.nupkg.sha512",
  3331. "runtime.native.system.nuspec"
  3332. ]
  3333. },
  3334. "runtime.native.System.IO.Compression/4.3.0": {
  3335. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  3336. "type": "package",
  3337. "path": "runtime.native.system.io.compression/4.3.0",
  3338. "files": [
  3339. ".nupkg.metadata",
  3340. ".signature.p7s",
  3341. "ThirdPartyNotices.txt",
  3342. "dotnet_library_license.txt",
  3343. "lib/netstandard1.0/_._",
  3344. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  3345. "runtime.native.system.io.compression.nuspec"
  3346. ]
  3347. },
  3348. "runtime.native.System.Net.Http/4.3.0": {
  3349. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  3350. "type": "package",
  3351. "path": "runtime.native.system.net.http/4.3.0",
  3352. "files": [
  3353. ".nupkg.metadata",
  3354. ".signature.p7s",
  3355. "ThirdPartyNotices.txt",
  3356. "dotnet_library_license.txt",
  3357. "lib/netstandard1.0/_._",
  3358. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  3359. "runtime.native.system.net.http.nuspec"
  3360. ]
  3361. },
  3362. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3363. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  3364. "type": "package",
  3365. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  3366. "files": [
  3367. ".nupkg.metadata",
  3368. ".signature.p7s",
  3369. "ThirdPartyNotices.txt",
  3370. "dotnet_library_license.txt",
  3371. "lib/netstandard1.0/_._",
  3372. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3373. "runtime.native.system.security.cryptography.apple.nuspec"
  3374. ]
  3375. },
  3376. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3377. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  3378. "type": "package",
  3379. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  3380. "files": [
  3381. ".nupkg.metadata",
  3382. ".signature.p7s",
  3383. "ThirdPartyNotices.txt",
  3384. "dotnet_library_license.txt",
  3385. "lib/netstandard1.0/_._",
  3386. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3387. "runtime.native.system.security.cryptography.openssl.nuspec"
  3388. ]
  3389. },
  3390. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3391. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  3392. "type": "package",
  3393. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3394. "files": [
  3395. ".nupkg.metadata",
  3396. ".signature.p7s",
  3397. "ThirdPartyNotices.txt",
  3398. "dotnet_library_license.txt",
  3399. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3400. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3401. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3402. ]
  3403. },
  3404. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3405. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  3406. "type": "package",
  3407. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3408. "files": [
  3409. ".nupkg.metadata",
  3410. ".signature.p7s",
  3411. "ThirdPartyNotices.txt",
  3412. "dotnet_library_license.txt",
  3413. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3414. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3415. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3416. ]
  3417. },
  3418. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3419. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  3420. "type": "package",
  3421. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  3422. "files": [
  3423. ".nupkg.metadata",
  3424. ".signature.p7s",
  3425. "ThirdPartyNotices.txt",
  3426. "dotnet_library_license.txt",
  3427. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3428. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  3429. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  3430. ]
  3431. },
  3432. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3433. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  3434. "type": "package",
  3435. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3436. "files": [
  3437. ".nupkg.metadata",
  3438. ".signature.p7s",
  3439. "ThirdPartyNotices.txt",
  3440. "dotnet_library_license.txt",
  3441. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3442. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3443. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  3444. ]
  3445. },
  3446. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3447. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  3448. "type": "package",
  3449. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3450. "files": [
  3451. ".nupkg.metadata",
  3452. ".signature.p7s",
  3453. "ThirdPartyNotices.txt",
  3454. "dotnet_library_license.txt",
  3455. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3456. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3457. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3458. ]
  3459. },
  3460. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3461. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  3462. "type": "package",
  3463. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3464. "files": [
  3465. ".nupkg.metadata",
  3466. ".signature.p7s",
  3467. "ThirdPartyNotices.txt",
  3468. "dotnet_library_license.txt",
  3469. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3470. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3471. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3472. ]
  3473. },
  3474. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3475. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  3476. "type": "package",
  3477. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3478. "files": [
  3479. ".nupkg.metadata",
  3480. ".signature.p7s",
  3481. "ThirdPartyNotices.txt",
  3482. "dotnet_library_license.txt",
  3483. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3484. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3485. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3486. ]
  3487. },
  3488. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3489. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  3490. "type": "package",
  3491. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3492. "files": [
  3493. ".nupkg.metadata",
  3494. ".signature.p7s",
  3495. "ThirdPartyNotices.txt",
  3496. "dotnet_library_license.txt",
  3497. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3498. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3499. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3500. ]
  3501. },
  3502. "Serilog/2.10.0": {
  3503. "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
  3504. "type": "package",
  3505. "path": "serilog/2.10.0",
  3506. "files": [
  3507. ".nupkg.metadata",
  3508. ".signature.p7s",
  3509. "icon.png",
  3510. "lib/net45/Serilog.dll",
  3511. "lib/net45/Serilog.xml",
  3512. "lib/net46/Serilog.dll",
  3513. "lib/net46/Serilog.xml",
  3514. "lib/netstandard1.0/Serilog.dll",
  3515. "lib/netstandard1.0/Serilog.xml",
  3516. "lib/netstandard1.3/Serilog.dll",
  3517. "lib/netstandard1.3/Serilog.xml",
  3518. "lib/netstandard2.0/Serilog.dll",
  3519. "lib/netstandard2.0/Serilog.xml",
  3520. "lib/netstandard2.1/Serilog.dll",
  3521. "lib/netstandard2.1/Serilog.xml",
  3522. "serilog.2.10.0.nupkg.sha512",
  3523. "serilog.nuspec"
  3524. ]
  3525. },
  3526. "Serilog.Sinks.File/5.0.0": {
  3527. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  3528. "type": "package",
  3529. "path": "serilog.sinks.file/5.0.0",
  3530. "files": [
  3531. ".nupkg.metadata",
  3532. ".signature.p7s",
  3533. "images/icon.png",
  3534. "lib/net45/Serilog.Sinks.File.dll",
  3535. "lib/net45/Serilog.Sinks.File.pdb",
  3536. "lib/net45/Serilog.Sinks.File.xml",
  3537. "lib/net5.0/Serilog.Sinks.File.dll",
  3538. "lib/net5.0/Serilog.Sinks.File.pdb",
  3539. "lib/net5.0/Serilog.Sinks.File.xml",
  3540. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  3541. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  3542. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  3543. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  3544. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  3545. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  3546. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  3547. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  3548. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  3549. "serilog.sinks.file.5.0.0.nupkg.sha512",
  3550. "serilog.sinks.file.nuspec"
  3551. ]
  3552. },
  3553. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  3554. "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
  3555. "type": "package",
  3556. "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
  3557. "files": [
  3558. ".nupkg.metadata",
  3559. ".signature.p7s",
  3560. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  3561. "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll",
  3562. "lib/net461/SQLitePCLRaw.batteries_v2.dll",
  3563. "lib/net461/SQLitePCLRaw.nativelibrary.dll",
  3564. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll",
  3565. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll",
  3566. "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
  3567. "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512",
  3568. "sqlitepclraw.bundle_e_sqlite3.nuspec"
  3569. ]
  3570. },
  3571. "SQLitePCLRaw.core/2.0.4": {
  3572. "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==",
  3573. "type": "package",
  3574. "path": "sqlitepclraw.core/2.0.4",
  3575. "files": [
  3576. ".nupkg.metadata",
  3577. ".signature.p7s",
  3578. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  3579. "sqlitepclraw.core.2.0.4.nupkg.sha512",
  3580. "sqlitepclraw.core.nuspec"
  3581. ]
  3582. },
  3583. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  3584. "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==",
  3585. "type": "package",
  3586. "path": "sqlitepclraw.lib.e_sqlite3/2.0.4",
  3587. "files": [
  3588. ".nupkg.metadata",
  3589. ".signature.p7s",
  3590. "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
  3591. "lib/net461/_._",
  3592. "lib/netstandard2.0/_._",
  3593. "runtimes/alpine-x64/native/libe_sqlite3.so",
  3594. "runtimes/linux-arm/native/libe_sqlite3.so",
  3595. "runtimes/linux-arm64/native/libe_sqlite3.so",
  3596. "runtimes/linux-armel/native/libe_sqlite3.so",
  3597. "runtimes/linux-mips64/native/libe_sqlite3.so",
  3598. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  3599. "runtimes/linux-x64/native/libe_sqlite3.so",
  3600. "runtimes/linux-x86/native/libe_sqlite3.so",
  3601. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  3602. "runtimes/win-arm/native/e_sqlite3.dll",
  3603. "runtimes/win-arm64/native/e_sqlite3.dll",
  3604. "runtimes/win-x64/native/e_sqlite3.dll",
  3605. "runtimes/win-x86/native/e_sqlite3.dll",
  3606. "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
  3607. "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
  3608. "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
  3609. "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
  3610. "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512",
  3611. "sqlitepclraw.lib.e_sqlite3.nuspec"
  3612. ]
  3613. },
  3614. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  3615. "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==",
  3616. "type": "package",
  3617. "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4",
  3618. "files": [
  3619. ".nupkg.metadata",
  3620. ".signature.p7s",
  3621. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll",
  3622. "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512",
  3623. "sqlitepclraw.provider.dynamic_cdecl.nuspec"
  3624. ]
  3625. },
  3626. "SqlSugarCore/5.1.3.32": {
  3627. "sha512": "Rd+N9idSgHMmAZ3c93UV/h2xMDqkR+0uFXxiJMKDwOEeqIVcG207OzoXt15/D4Sk6oxwksZuqK4AMft35QPSjA==",
  3628. "type": "package",
  3629. "path": "sqlsugarcore/5.1.3.32",
  3630. "files": [
  3631. ".nupkg.metadata",
  3632. ".signature.p7s",
  3633. "lib/netstandard2.1/SqlSugar.dll",
  3634. "sqlsugarcore.5.1.3.32.nupkg.sha512",
  3635. "sqlsugarcore.nuspec"
  3636. ]
  3637. },
  3638. "SqlSugarCore.Dm/1.0.0": {
  3639. "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==",
  3640. "type": "package",
  3641. "path": "sqlsugarcore.dm/1.0.0",
  3642. "files": [
  3643. ".nupkg.metadata",
  3644. ".signature.p7s",
  3645. "lib/netstandard2.0/DmProvider.dll",
  3646. "sqlsugarcore.dm.1.0.0.nupkg.sha512",
  3647. "sqlsugarcore.dm.nuspec"
  3648. ]
  3649. },
  3650. "SqlSugarCore.Kdbndp/1.0.0": {
  3651. "sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==",
  3652. "type": "package",
  3653. "path": "sqlsugarcore.kdbndp/1.0.0",
  3654. "files": [
  3655. ".nupkg.metadata",
  3656. ".signature.p7s",
  3657. "lib/netstandard2.0/Kdbndp.dll",
  3658. "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512",
  3659. "sqlsugarcore.kdbndp.nuspec"
  3660. ]
  3661. },
  3662. "System.AppContext/4.3.0": {
  3663. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  3664. "type": "package",
  3665. "path": "system.appcontext/4.3.0",
  3666. "files": [
  3667. ".nupkg.metadata",
  3668. ".signature.p7s",
  3669. "ThirdPartyNotices.txt",
  3670. "dotnet_library_license.txt",
  3671. "lib/MonoAndroid10/_._",
  3672. "lib/MonoTouch10/_._",
  3673. "lib/net46/System.AppContext.dll",
  3674. "lib/net463/System.AppContext.dll",
  3675. "lib/netcore50/System.AppContext.dll",
  3676. "lib/netstandard1.6/System.AppContext.dll",
  3677. "lib/xamarinios10/_._",
  3678. "lib/xamarinmac20/_._",
  3679. "lib/xamarintvos10/_._",
  3680. "lib/xamarinwatchos10/_._",
  3681. "ref/MonoAndroid10/_._",
  3682. "ref/MonoTouch10/_._",
  3683. "ref/net46/System.AppContext.dll",
  3684. "ref/net463/System.AppContext.dll",
  3685. "ref/netstandard/_._",
  3686. "ref/netstandard1.3/System.AppContext.dll",
  3687. "ref/netstandard1.3/System.AppContext.xml",
  3688. "ref/netstandard1.3/de/System.AppContext.xml",
  3689. "ref/netstandard1.3/es/System.AppContext.xml",
  3690. "ref/netstandard1.3/fr/System.AppContext.xml",
  3691. "ref/netstandard1.3/it/System.AppContext.xml",
  3692. "ref/netstandard1.3/ja/System.AppContext.xml",
  3693. "ref/netstandard1.3/ko/System.AppContext.xml",
  3694. "ref/netstandard1.3/ru/System.AppContext.xml",
  3695. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  3696. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  3697. "ref/netstandard1.6/System.AppContext.dll",
  3698. "ref/netstandard1.6/System.AppContext.xml",
  3699. "ref/netstandard1.6/de/System.AppContext.xml",
  3700. "ref/netstandard1.6/es/System.AppContext.xml",
  3701. "ref/netstandard1.6/fr/System.AppContext.xml",
  3702. "ref/netstandard1.6/it/System.AppContext.xml",
  3703. "ref/netstandard1.6/ja/System.AppContext.xml",
  3704. "ref/netstandard1.6/ko/System.AppContext.xml",
  3705. "ref/netstandard1.6/ru/System.AppContext.xml",
  3706. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  3707. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  3708. "ref/xamarinios10/_._",
  3709. "ref/xamarinmac20/_._",
  3710. "ref/xamarintvos10/_._",
  3711. "ref/xamarinwatchos10/_._",
  3712. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  3713. "system.appcontext.4.3.0.nupkg.sha512",
  3714. "system.appcontext.nuspec"
  3715. ]
  3716. },
  3717. "System.Buffers/4.5.1": {
  3718. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  3719. "type": "package",
  3720. "path": "system.buffers/4.5.1",
  3721. "files": [
  3722. ".nupkg.metadata",
  3723. ".signature.p7s",
  3724. "LICENSE.TXT",
  3725. "THIRD-PARTY-NOTICES.TXT",
  3726. "lib/net461/System.Buffers.dll",
  3727. "lib/net461/System.Buffers.xml",
  3728. "lib/netcoreapp2.0/_._",
  3729. "lib/netstandard1.1/System.Buffers.dll",
  3730. "lib/netstandard1.1/System.Buffers.xml",
  3731. "lib/netstandard2.0/System.Buffers.dll",
  3732. "lib/netstandard2.0/System.Buffers.xml",
  3733. "lib/uap10.0.16299/_._",
  3734. "ref/net45/System.Buffers.dll",
  3735. "ref/net45/System.Buffers.xml",
  3736. "ref/netcoreapp2.0/_._",
  3737. "ref/netstandard1.1/System.Buffers.dll",
  3738. "ref/netstandard1.1/System.Buffers.xml",
  3739. "ref/netstandard2.0/System.Buffers.dll",
  3740. "ref/netstandard2.0/System.Buffers.xml",
  3741. "ref/uap10.0.16299/_._",
  3742. "system.buffers.4.5.1.nupkg.sha512",
  3743. "system.buffers.nuspec",
  3744. "useSharedDesignerContext.txt",
  3745. "version.txt"
  3746. ]
  3747. },
  3748. "System.Collections/4.3.0": {
  3749. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  3750. "type": "package",
  3751. "path": "system.collections/4.3.0",
  3752. "files": [
  3753. ".nupkg.metadata",
  3754. ".signature.p7s",
  3755. "ThirdPartyNotices.txt",
  3756. "dotnet_library_license.txt",
  3757. "lib/MonoAndroid10/_._",
  3758. "lib/MonoTouch10/_._",
  3759. "lib/net45/_._",
  3760. "lib/portable-net45+win8+wp8+wpa81/_._",
  3761. "lib/win8/_._",
  3762. "lib/wp80/_._",
  3763. "lib/wpa81/_._",
  3764. "lib/xamarinios10/_._",
  3765. "lib/xamarinmac20/_._",
  3766. "lib/xamarintvos10/_._",
  3767. "lib/xamarinwatchos10/_._",
  3768. "ref/MonoAndroid10/_._",
  3769. "ref/MonoTouch10/_._",
  3770. "ref/net45/_._",
  3771. "ref/netcore50/System.Collections.dll",
  3772. "ref/netcore50/System.Collections.xml",
  3773. "ref/netcore50/de/System.Collections.xml",
  3774. "ref/netcore50/es/System.Collections.xml",
  3775. "ref/netcore50/fr/System.Collections.xml",
  3776. "ref/netcore50/it/System.Collections.xml",
  3777. "ref/netcore50/ja/System.Collections.xml",
  3778. "ref/netcore50/ko/System.Collections.xml",
  3779. "ref/netcore50/ru/System.Collections.xml",
  3780. "ref/netcore50/zh-hans/System.Collections.xml",
  3781. "ref/netcore50/zh-hant/System.Collections.xml",
  3782. "ref/netstandard1.0/System.Collections.dll",
  3783. "ref/netstandard1.0/System.Collections.xml",
  3784. "ref/netstandard1.0/de/System.Collections.xml",
  3785. "ref/netstandard1.0/es/System.Collections.xml",
  3786. "ref/netstandard1.0/fr/System.Collections.xml",
  3787. "ref/netstandard1.0/it/System.Collections.xml",
  3788. "ref/netstandard1.0/ja/System.Collections.xml",
  3789. "ref/netstandard1.0/ko/System.Collections.xml",
  3790. "ref/netstandard1.0/ru/System.Collections.xml",
  3791. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  3792. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  3793. "ref/netstandard1.3/System.Collections.dll",
  3794. "ref/netstandard1.3/System.Collections.xml",
  3795. "ref/netstandard1.3/de/System.Collections.xml",
  3796. "ref/netstandard1.3/es/System.Collections.xml",
  3797. "ref/netstandard1.3/fr/System.Collections.xml",
  3798. "ref/netstandard1.3/it/System.Collections.xml",
  3799. "ref/netstandard1.3/ja/System.Collections.xml",
  3800. "ref/netstandard1.3/ko/System.Collections.xml",
  3801. "ref/netstandard1.3/ru/System.Collections.xml",
  3802. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  3803. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  3804. "ref/portable-net45+win8+wp8+wpa81/_._",
  3805. "ref/win8/_._",
  3806. "ref/wp80/_._",
  3807. "ref/wpa81/_._",
  3808. "ref/xamarinios10/_._",
  3809. "ref/xamarinmac20/_._",
  3810. "ref/xamarintvos10/_._",
  3811. "ref/xamarinwatchos10/_._",
  3812. "system.collections.4.3.0.nupkg.sha512",
  3813. "system.collections.nuspec"
  3814. ]
  3815. },
  3816. "System.Collections.Concurrent/4.3.0": {
  3817. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  3818. "type": "package",
  3819. "path": "system.collections.concurrent/4.3.0",
  3820. "files": [
  3821. ".nupkg.metadata",
  3822. ".signature.p7s",
  3823. "ThirdPartyNotices.txt",
  3824. "dotnet_library_license.txt",
  3825. "lib/MonoAndroid10/_._",
  3826. "lib/MonoTouch10/_._",
  3827. "lib/net45/_._",
  3828. "lib/netcore50/System.Collections.Concurrent.dll",
  3829. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  3830. "lib/portable-net45+win8+wpa81/_._",
  3831. "lib/win8/_._",
  3832. "lib/wpa81/_._",
  3833. "lib/xamarinios10/_._",
  3834. "lib/xamarinmac20/_._",
  3835. "lib/xamarintvos10/_._",
  3836. "lib/xamarinwatchos10/_._",
  3837. "ref/MonoAndroid10/_._",
  3838. "ref/MonoTouch10/_._",
  3839. "ref/net45/_._",
  3840. "ref/netcore50/System.Collections.Concurrent.dll",
  3841. "ref/netcore50/System.Collections.Concurrent.xml",
  3842. "ref/netcore50/de/System.Collections.Concurrent.xml",
  3843. "ref/netcore50/es/System.Collections.Concurrent.xml",
  3844. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  3845. "ref/netcore50/it/System.Collections.Concurrent.xml",
  3846. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  3847. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  3848. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  3849. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  3850. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  3851. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  3852. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  3853. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  3854. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  3855. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  3856. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  3857. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  3858. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  3859. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  3860. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  3861. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  3862. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  3863. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  3864. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  3865. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  3866. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  3867. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  3868. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  3869. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  3870. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  3871. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  3872. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  3873. "ref/portable-net45+win8+wpa81/_._",
  3874. "ref/win8/_._",
  3875. "ref/wpa81/_._",
  3876. "ref/xamarinios10/_._",
  3877. "ref/xamarinmac20/_._",
  3878. "ref/xamarintvos10/_._",
  3879. "ref/xamarinwatchos10/_._",
  3880. "system.collections.concurrent.4.3.0.nupkg.sha512",
  3881. "system.collections.concurrent.nuspec"
  3882. ]
  3883. },
  3884. "System.Collections.NonGeneric/4.3.0": {
  3885. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  3886. "type": "package",
  3887. "path": "system.collections.nongeneric/4.3.0",
  3888. "files": [
  3889. ".nupkg.metadata",
  3890. ".signature.p7s",
  3891. "ThirdPartyNotices.txt",
  3892. "dotnet_library_license.txt",
  3893. "lib/MonoAndroid10/_._",
  3894. "lib/MonoTouch10/_._",
  3895. "lib/net46/System.Collections.NonGeneric.dll",
  3896. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  3897. "lib/xamarinios10/_._",
  3898. "lib/xamarinmac20/_._",
  3899. "lib/xamarintvos10/_._",
  3900. "lib/xamarinwatchos10/_._",
  3901. "ref/MonoAndroid10/_._",
  3902. "ref/MonoTouch10/_._",
  3903. "ref/net46/System.Collections.NonGeneric.dll",
  3904. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  3905. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  3906. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  3907. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  3908. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  3909. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  3910. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  3911. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  3912. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  3913. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  3914. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  3915. "ref/xamarinios10/_._",
  3916. "ref/xamarinmac20/_._",
  3917. "ref/xamarintvos10/_._",
  3918. "ref/xamarinwatchos10/_._",
  3919. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  3920. "system.collections.nongeneric.nuspec"
  3921. ]
  3922. },
  3923. "System.Collections.Specialized/4.3.0": {
  3924. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  3925. "type": "package",
  3926. "path": "system.collections.specialized/4.3.0",
  3927. "files": [
  3928. ".nupkg.metadata",
  3929. ".signature.p7s",
  3930. "ThirdPartyNotices.txt",
  3931. "dotnet_library_license.txt",
  3932. "lib/MonoAndroid10/_._",
  3933. "lib/MonoTouch10/_._",
  3934. "lib/net46/System.Collections.Specialized.dll",
  3935. "lib/netstandard1.3/System.Collections.Specialized.dll",
  3936. "lib/xamarinios10/_._",
  3937. "lib/xamarinmac20/_._",
  3938. "lib/xamarintvos10/_._",
  3939. "lib/xamarinwatchos10/_._",
  3940. "ref/MonoAndroid10/_._",
  3941. "ref/MonoTouch10/_._",
  3942. "ref/net46/System.Collections.Specialized.dll",
  3943. "ref/netstandard1.3/System.Collections.Specialized.dll",
  3944. "ref/netstandard1.3/System.Collections.Specialized.xml",
  3945. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  3946. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  3947. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  3948. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  3949. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  3950. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  3951. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  3952. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  3953. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  3954. "ref/xamarinios10/_._",
  3955. "ref/xamarinmac20/_._",
  3956. "ref/xamarintvos10/_._",
  3957. "ref/xamarinwatchos10/_._",
  3958. "system.collections.specialized.4.3.0.nupkg.sha512",
  3959. "system.collections.specialized.nuspec"
  3960. ]
  3961. },
  3962. "System.ComponentModel/4.3.0": {
  3963. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  3964. "type": "package",
  3965. "path": "system.componentmodel/4.3.0",
  3966. "files": [
  3967. ".nupkg.metadata",
  3968. ".signature.p7s",
  3969. "ThirdPartyNotices.txt",
  3970. "dotnet_library_license.txt",
  3971. "lib/MonoAndroid10/_._",
  3972. "lib/MonoTouch10/_._",
  3973. "lib/net45/_._",
  3974. "lib/netcore50/System.ComponentModel.dll",
  3975. "lib/netstandard1.3/System.ComponentModel.dll",
  3976. "lib/portable-net45+win8+wp8+wpa81/_._",
  3977. "lib/win8/_._",
  3978. "lib/wp80/_._",
  3979. "lib/wpa81/_._",
  3980. "lib/xamarinios10/_._",
  3981. "lib/xamarinmac20/_._",
  3982. "lib/xamarintvos10/_._",
  3983. "lib/xamarinwatchos10/_._",
  3984. "ref/MonoAndroid10/_._",
  3985. "ref/MonoTouch10/_._",
  3986. "ref/net45/_._",
  3987. "ref/netcore50/System.ComponentModel.dll",
  3988. "ref/netcore50/System.ComponentModel.xml",
  3989. "ref/netcore50/de/System.ComponentModel.xml",
  3990. "ref/netcore50/es/System.ComponentModel.xml",
  3991. "ref/netcore50/fr/System.ComponentModel.xml",
  3992. "ref/netcore50/it/System.ComponentModel.xml",
  3993. "ref/netcore50/ja/System.ComponentModel.xml",
  3994. "ref/netcore50/ko/System.ComponentModel.xml",
  3995. "ref/netcore50/ru/System.ComponentModel.xml",
  3996. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  3997. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  3998. "ref/netstandard1.0/System.ComponentModel.dll",
  3999. "ref/netstandard1.0/System.ComponentModel.xml",
  4000. "ref/netstandard1.0/de/System.ComponentModel.xml",
  4001. "ref/netstandard1.0/es/System.ComponentModel.xml",
  4002. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  4003. "ref/netstandard1.0/it/System.ComponentModel.xml",
  4004. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  4005. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  4006. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  4007. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  4008. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  4009. "ref/portable-net45+win8+wp8+wpa81/_._",
  4010. "ref/win8/_._",
  4011. "ref/wp80/_._",
  4012. "ref/wpa81/_._",
  4013. "ref/xamarinios10/_._",
  4014. "ref/xamarinmac20/_._",
  4015. "ref/xamarintvos10/_._",
  4016. "ref/xamarinwatchos10/_._",
  4017. "system.componentmodel.4.3.0.nupkg.sha512",
  4018. "system.componentmodel.nuspec"
  4019. ]
  4020. },
  4021. "System.ComponentModel.Primitives/4.3.0": {
  4022. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  4023. "type": "package",
  4024. "path": "system.componentmodel.primitives/4.3.0",
  4025. "files": [
  4026. ".nupkg.metadata",
  4027. ".signature.p7s",
  4028. "ThirdPartyNotices.txt",
  4029. "dotnet_library_license.txt",
  4030. "lib/MonoAndroid10/_._",
  4031. "lib/MonoTouch10/_._",
  4032. "lib/net45/System.ComponentModel.Primitives.dll",
  4033. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  4034. "lib/xamarinios10/_._",
  4035. "lib/xamarinmac20/_._",
  4036. "lib/xamarintvos10/_._",
  4037. "lib/xamarinwatchos10/_._",
  4038. "ref/MonoAndroid10/_._",
  4039. "ref/MonoTouch10/_._",
  4040. "ref/net45/System.ComponentModel.Primitives.dll",
  4041. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  4042. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  4043. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  4044. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  4045. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  4046. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  4047. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  4048. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  4049. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  4050. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  4051. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  4052. "ref/xamarinios10/_._",
  4053. "ref/xamarinmac20/_._",
  4054. "ref/xamarintvos10/_._",
  4055. "ref/xamarinwatchos10/_._",
  4056. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  4057. "system.componentmodel.primitives.nuspec"
  4058. ]
  4059. },
  4060. "System.ComponentModel.TypeConverter/4.3.0": {
  4061. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  4062. "type": "package",
  4063. "path": "system.componentmodel.typeconverter/4.3.0",
  4064. "files": [
  4065. ".nupkg.metadata",
  4066. ".signature.p7s",
  4067. "ThirdPartyNotices.txt",
  4068. "dotnet_library_license.txt",
  4069. "lib/MonoAndroid10/_._",
  4070. "lib/MonoTouch10/_._",
  4071. "lib/net45/System.ComponentModel.TypeConverter.dll",
  4072. "lib/net462/System.ComponentModel.TypeConverter.dll",
  4073. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4074. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4075. "lib/xamarinios10/_._",
  4076. "lib/xamarinmac20/_._",
  4077. "lib/xamarintvos10/_._",
  4078. "lib/xamarinwatchos10/_._",
  4079. "ref/MonoAndroid10/_._",
  4080. "ref/MonoTouch10/_._",
  4081. "ref/net45/System.ComponentModel.TypeConverter.dll",
  4082. "ref/net462/System.ComponentModel.TypeConverter.dll",
  4083. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4084. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  4085. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  4086. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  4087. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  4088. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  4089. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  4090. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  4091. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  4092. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  4093. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  4094. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4095. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  4096. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  4097. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  4098. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  4099. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  4100. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  4101. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  4102. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  4103. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  4104. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  4105. "ref/xamarinios10/_._",
  4106. "ref/xamarinmac20/_._",
  4107. "ref/xamarintvos10/_._",
  4108. "ref/xamarinwatchos10/_._",
  4109. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  4110. "system.componentmodel.typeconverter.nuspec"
  4111. ]
  4112. },
  4113. "System.Configuration.ConfigurationManager/4.7.0": {
  4114. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  4115. "type": "package",
  4116. "path": "system.configuration.configurationmanager/4.7.0",
  4117. "files": [
  4118. ".nupkg.metadata",
  4119. ".signature.p7s",
  4120. "LICENSE.TXT",
  4121. "THIRD-PARTY-NOTICES.TXT",
  4122. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4123. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4124. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4125. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4126. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4127. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4128. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4129. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4130. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  4131. "system.configuration.configurationmanager.nuspec",
  4132. "useSharedDesignerContext.txt",
  4133. "version.txt"
  4134. ]
  4135. },
  4136. "System.Console/4.3.0": {
  4137. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4138. "type": "package",
  4139. "path": "system.console/4.3.0",
  4140. "files": [
  4141. ".nupkg.metadata",
  4142. ".signature.p7s",
  4143. "ThirdPartyNotices.txt",
  4144. "dotnet_library_license.txt",
  4145. "lib/MonoAndroid10/_._",
  4146. "lib/MonoTouch10/_._",
  4147. "lib/net46/System.Console.dll",
  4148. "lib/xamarinios10/_._",
  4149. "lib/xamarinmac20/_._",
  4150. "lib/xamarintvos10/_._",
  4151. "lib/xamarinwatchos10/_._",
  4152. "ref/MonoAndroid10/_._",
  4153. "ref/MonoTouch10/_._",
  4154. "ref/net46/System.Console.dll",
  4155. "ref/netstandard1.3/System.Console.dll",
  4156. "ref/netstandard1.3/System.Console.xml",
  4157. "ref/netstandard1.3/de/System.Console.xml",
  4158. "ref/netstandard1.3/es/System.Console.xml",
  4159. "ref/netstandard1.3/fr/System.Console.xml",
  4160. "ref/netstandard1.3/it/System.Console.xml",
  4161. "ref/netstandard1.3/ja/System.Console.xml",
  4162. "ref/netstandard1.3/ko/System.Console.xml",
  4163. "ref/netstandard1.3/ru/System.Console.xml",
  4164. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4165. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4166. "ref/xamarinios10/_._",
  4167. "ref/xamarinmac20/_._",
  4168. "ref/xamarintvos10/_._",
  4169. "ref/xamarinwatchos10/_._",
  4170. "system.console.4.3.0.nupkg.sha512",
  4171. "system.console.nuspec"
  4172. ]
  4173. },
  4174. "System.Data.Common/4.3.0": {
  4175. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  4176. "type": "package",
  4177. "path": "system.data.common/4.3.0",
  4178. "files": [
  4179. ".nupkg.metadata",
  4180. ".signature.p7s",
  4181. "ThirdPartyNotices.txt",
  4182. "dotnet_library_license.txt",
  4183. "lib/MonoAndroid10/_._",
  4184. "lib/MonoTouch10/_._",
  4185. "lib/net451/System.Data.Common.dll",
  4186. "lib/netstandard1.2/System.Data.Common.dll",
  4187. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4188. "lib/xamarinios10/_._",
  4189. "lib/xamarinmac20/_._",
  4190. "lib/xamarintvos10/_._",
  4191. "lib/xamarinwatchos10/_._",
  4192. "ref/MonoAndroid10/_._",
  4193. "ref/MonoTouch10/_._",
  4194. "ref/net451/System.Data.Common.dll",
  4195. "ref/netstandard1.2/System.Data.Common.dll",
  4196. "ref/netstandard1.2/System.Data.Common.xml",
  4197. "ref/netstandard1.2/de/System.Data.Common.xml",
  4198. "ref/netstandard1.2/es/System.Data.Common.xml",
  4199. "ref/netstandard1.2/fr/System.Data.Common.xml",
  4200. "ref/netstandard1.2/it/System.Data.Common.xml",
  4201. "ref/netstandard1.2/ja/System.Data.Common.xml",
  4202. "ref/netstandard1.2/ko/System.Data.Common.xml",
  4203. "ref/netstandard1.2/ru/System.Data.Common.xml",
  4204. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  4205. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  4206. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4207. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  4208. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  4209. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  4210. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  4211. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  4212. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  4213. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  4214. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  4215. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  4216. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  4217. "ref/xamarinios10/_._",
  4218. "ref/xamarinmac20/_._",
  4219. "ref/xamarintvos10/_._",
  4220. "ref/xamarinwatchos10/_._",
  4221. "system.data.common.4.3.0.nupkg.sha512",
  4222. "system.data.common.nuspec"
  4223. ]
  4224. },
  4225. "System.Diagnostics.Debug/4.3.0": {
  4226. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4227. "type": "package",
  4228. "path": "system.diagnostics.debug/4.3.0",
  4229. "files": [
  4230. ".nupkg.metadata",
  4231. ".signature.p7s",
  4232. "ThirdPartyNotices.txt",
  4233. "dotnet_library_license.txt",
  4234. "lib/MonoAndroid10/_._",
  4235. "lib/MonoTouch10/_._",
  4236. "lib/net45/_._",
  4237. "lib/portable-net45+win8+wp8+wpa81/_._",
  4238. "lib/win8/_._",
  4239. "lib/wp80/_._",
  4240. "lib/wpa81/_._",
  4241. "lib/xamarinios10/_._",
  4242. "lib/xamarinmac20/_._",
  4243. "lib/xamarintvos10/_._",
  4244. "lib/xamarinwatchos10/_._",
  4245. "ref/MonoAndroid10/_._",
  4246. "ref/MonoTouch10/_._",
  4247. "ref/net45/_._",
  4248. "ref/netcore50/System.Diagnostics.Debug.dll",
  4249. "ref/netcore50/System.Diagnostics.Debug.xml",
  4250. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4251. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4252. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4253. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4254. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4255. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4256. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4257. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4258. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4259. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4260. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4261. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4262. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4263. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4264. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4265. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4266. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4267. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4268. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4269. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4270. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4271. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4272. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4273. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4274. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4275. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4276. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4277. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4278. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4279. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4280. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4281. "ref/portable-net45+win8+wp8+wpa81/_._",
  4282. "ref/win8/_._",
  4283. "ref/wp80/_._",
  4284. "ref/wpa81/_._",
  4285. "ref/xamarinios10/_._",
  4286. "ref/xamarinmac20/_._",
  4287. "ref/xamarintvos10/_._",
  4288. "ref/xamarinwatchos10/_._",
  4289. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  4290. "system.diagnostics.debug.nuspec"
  4291. ]
  4292. },
  4293. "System.Diagnostics.DiagnosticSource/4.7.1": {
  4294. "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  4295. "type": "package",
  4296. "path": "system.diagnostics.diagnosticsource/4.7.1",
  4297. "files": [
  4298. ".nupkg.metadata",
  4299. ".signature.p7s",
  4300. "Icon.png",
  4301. "LICENSE.TXT",
  4302. "THIRD-PARTY-NOTICES.TXT",
  4303. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  4304. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  4305. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  4306. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  4307. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  4308. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  4309. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  4310. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  4311. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  4312. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  4313. "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
  4314. "system.diagnostics.diagnosticsource.nuspec",
  4315. "useSharedDesignerContext.txt",
  4316. "version.txt"
  4317. ]
  4318. },
  4319. "System.Diagnostics.PerformanceCounter/4.7.0": {
  4320. "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==",
  4321. "type": "package",
  4322. "path": "system.diagnostics.performancecounter/4.7.0",
  4323. "files": [
  4324. ".nupkg.metadata",
  4325. ".signature.p7s",
  4326. "LICENSE.TXT",
  4327. "THIRD-PARTY-NOTICES.TXT",
  4328. "lib/MonoAndroid10/_._",
  4329. "lib/MonoTouch10/_._",
  4330. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  4331. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  4332. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4333. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4334. "lib/xamarinios10/_._",
  4335. "lib/xamarinmac20/_._",
  4336. "lib/xamarintvos10/_._",
  4337. "lib/xamarinwatchos10/_._",
  4338. "ref/MonoAndroid10/_._",
  4339. "ref/MonoTouch10/_._",
  4340. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  4341. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  4342. "ref/net472/System.Diagnostics.PerformanceCounter.dll",
  4343. "ref/net472/System.Diagnostics.PerformanceCounter.xml",
  4344. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4345. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4346. "ref/xamarinios10/_._",
  4347. "ref/xamarinmac20/_._",
  4348. "ref/xamarintvos10/_._",
  4349. "ref/xamarinwatchos10/_._",
  4350. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  4351. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  4352. "system.diagnostics.performancecounter.4.7.0.nupkg.sha512",
  4353. "system.diagnostics.performancecounter.nuspec",
  4354. "useSharedDesignerContext.txt",
  4355. "version.txt"
  4356. ]
  4357. },
  4358. "System.Diagnostics.Tools/4.3.0": {
  4359. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  4360. "type": "package",
  4361. "path": "system.diagnostics.tools/4.3.0",
  4362. "files": [
  4363. ".nupkg.metadata",
  4364. ".signature.p7s",
  4365. "ThirdPartyNotices.txt",
  4366. "dotnet_library_license.txt",
  4367. "lib/MonoAndroid10/_._",
  4368. "lib/MonoTouch10/_._",
  4369. "lib/net45/_._",
  4370. "lib/portable-net45+win8+wp8+wpa81/_._",
  4371. "lib/win8/_._",
  4372. "lib/wp80/_._",
  4373. "lib/wpa81/_._",
  4374. "lib/xamarinios10/_._",
  4375. "lib/xamarinmac20/_._",
  4376. "lib/xamarintvos10/_._",
  4377. "lib/xamarinwatchos10/_._",
  4378. "ref/MonoAndroid10/_._",
  4379. "ref/MonoTouch10/_._",
  4380. "ref/net45/_._",
  4381. "ref/netcore50/System.Diagnostics.Tools.dll",
  4382. "ref/netcore50/System.Diagnostics.Tools.xml",
  4383. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  4384. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  4385. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  4386. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  4387. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  4388. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  4389. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  4390. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  4391. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  4392. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  4393. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  4394. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  4395. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  4396. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  4397. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  4398. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  4399. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  4400. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  4401. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  4402. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  4403. "ref/portable-net45+win8+wp8+wpa81/_._",
  4404. "ref/win8/_._",
  4405. "ref/wp80/_._",
  4406. "ref/wpa81/_._",
  4407. "ref/xamarinios10/_._",
  4408. "ref/xamarinmac20/_._",
  4409. "ref/xamarintvos10/_._",
  4410. "ref/xamarinwatchos10/_._",
  4411. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  4412. "system.diagnostics.tools.nuspec"
  4413. ]
  4414. },
  4415. "System.Diagnostics.Tracing/4.3.0": {
  4416. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4417. "type": "package",
  4418. "path": "system.diagnostics.tracing/4.3.0",
  4419. "files": [
  4420. ".nupkg.metadata",
  4421. ".signature.p7s",
  4422. "ThirdPartyNotices.txt",
  4423. "dotnet_library_license.txt",
  4424. "lib/MonoAndroid10/_._",
  4425. "lib/MonoTouch10/_._",
  4426. "lib/net45/_._",
  4427. "lib/net462/System.Diagnostics.Tracing.dll",
  4428. "lib/portable-net45+win8+wpa81/_._",
  4429. "lib/win8/_._",
  4430. "lib/wpa81/_._",
  4431. "lib/xamarinios10/_._",
  4432. "lib/xamarinmac20/_._",
  4433. "lib/xamarintvos10/_._",
  4434. "lib/xamarinwatchos10/_._",
  4435. "ref/MonoAndroid10/_._",
  4436. "ref/MonoTouch10/_._",
  4437. "ref/net45/_._",
  4438. "ref/net462/System.Diagnostics.Tracing.dll",
  4439. "ref/netcore50/System.Diagnostics.Tracing.dll",
  4440. "ref/netcore50/System.Diagnostics.Tracing.xml",
  4441. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  4442. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  4443. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  4444. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  4445. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  4446. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  4447. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  4448. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  4449. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  4450. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  4451. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  4452. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  4453. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  4454. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  4455. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  4456. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  4457. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  4458. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  4459. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  4460. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  4461. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  4462. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  4463. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  4464. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  4465. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  4466. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  4467. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  4468. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  4469. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  4470. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  4471. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  4472. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  4473. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  4474. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  4475. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  4476. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  4477. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  4478. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  4479. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  4480. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  4481. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  4482. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  4483. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  4484. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  4485. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  4486. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  4487. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  4488. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  4489. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  4490. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  4491. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  4492. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  4493. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  4494. "ref/portable-net45+win8+wpa81/_._",
  4495. "ref/win8/_._",
  4496. "ref/wpa81/_._",
  4497. "ref/xamarinios10/_._",
  4498. "ref/xamarinmac20/_._",
  4499. "ref/xamarintvos10/_._",
  4500. "ref/xamarinwatchos10/_._",
  4501. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  4502. "system.diagnostics.tracing.nuspec"
  4503. ]
  4504. },
  4505. "System.DirectoryServices/4.7.0": {
  4506. "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
  4507. "type": "package",
  4508. "path": "system.directoryservices/4.7.0",
  4509. "files": [
  4510. ".nupkg.metadata",
  4511. ".signature.p7s",
  4512. "LICENSE.TXT",
  4513. "THIRD-PARTY-NOTICES.TXT",
  4514. "lib/net45/_._",
  4515. "lib/netstandard2.0/System.DirectoryServices.dll",
  4516. "lib/netstandard2.0/System.DirectoryServices.xml",
  4517. "ref/net45/_._",
  4518. "ref/netstandard2.0/System.DirectoryServices.dll",
  4519. "ref/netstandard2.0/System.DirectoryServices.xml",
  4520. "runtimes/win/lib/net45/_._",
  4521. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll",
  4522. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml",
  4523. "system.directoryservices.4.7.0.nupkg.sha512",
  4524. "system.directoryservices.nuspec",
  4525. "useSharedDesignerContext.txt",
  4526. "version.txt"
  4527. ]
  4528. },
  4529. "System.DirectoryServices.Protocols/4.7.0": {
  4530. "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==",
  4531. "type": "package",
  4532. "path": "system.directoryservices.protocols/4.7.0",
  4533. "files": [
  4534. ".nupkg.metadata",
  4535. ".signature.p7s",
  4536. "LICENSE.TXT",
  4537. "THIRD-PARTY-NOTICES.TXT",
  4538. "lib/net45/_._",
  4539. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
  4540. "lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
  4541. "ref/net45/_._",
  4542. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll",
  4543. "ref/netstandard2.0/System.DirectoryServices.Protocols.xml",
  4544. "runtimes/win/lib/net45/_._",
  4545. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll",
  4546. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml",
  4547. "system.directoryservices.protocols.4.7.0.nupkg.sha512",
  4548. "system.directoryservices.protocols.nuspec",
  4549. "useSharedDesignerContext.txt",
  4550. "version.txt"
  4551. ]
  4552. },
  4553. "System.Drawing.Common/4.7.0": {
  4554. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  4555. "type": "package",
  4556. "path": "system.drawing.common/4.7.0",
  4557. "files": [
  4558. ".nupkg.metadata",
  4559. ".signature.p7s",
  4560. "LICENSE.TXT",
  4561. "THIRD-PARTY-NOTICES.TXT",
  4562. "lib/MonoAndroid10/_._",
  4563. "lib/MonoTouch10/_._",
  4564. "lib/net461/System.Drawing.Common.dll",
  4565. "lib/netstandard2.0/System.Drawing.Common.dll",
  4566. "lib/xamarinios10/_._",
  4567. "lib/xamarinmac20/_._",
  4568. "lib/xamarintvos10/_._",
  4569. "lib/xamarinwatchos10/_._",
  4570. "ref/MonoAndroid10/_._",
  4571. "ref/MonoTouch10/_._",
  4572. "ref/net461/System.Drawing.Common.dll",
  4573. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4574. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4575. "ref/netstandard2.0/System.Drawing.Common.dll",
  4576. "ref/xamarinios10/_._",
  4577. "ref/xamarinmac20/_._",
  4578. "ref/xamarintvos10/_._",
  4579. "ref/xamarinwatchos10/_._",
  4580. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4581. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4582. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4583. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4584. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4585. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4586. "system.drawing.common.4.7.0.nupkg.sha512",
  4587. "system.drawing.common.nuspec",
  4588. "useSharedDesignerContext.txt",
  4589. "version.txt"
  4590. ]
  4591. },
  4592. "System.Globalization/4.3.0": {
  4593. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4594. "type": "package",
  4595. "path": "system.globalization/4.3.0",
  4596. "files": [
  4597. ".nupkg.metadata",
  4598. ".signature.p7s",
  4599. "ThirdPartyNotices.txt",
  4600. "dotnet_library_license.txt",
  4601. "lib/MonoAndroid10/_._",
  4602. "lib/MonoTouch10/_._",
  4603. "lib/net45/_._",
  4604. "lib/portable-net45+win8+wp8+wpa81/_._",
  4605. "lib/win8/_._",
  4606. "lib/wp80/_._",
  4607. "lib/wpa81/_._",
  4608. "lib/xamarinios10/_._",
  4609. "lib/xamarinmac20/_._",
  4610. "lib/xamarintvos10/_._",
  4611. "lib/xamarinwatchos10/_._",
  4612. "ref/MonoAndroid10/_._",
  4613. "ref/MonoTouch10/_._",
  4614. "ref/net45/_._",
  4615. "ref/netcore50/System.Globalization.dll",
  4616. "ref/netcore50/System.Globalization.xml",
  4617. "ref/netcore50/de/System.Globalization.xml",
  4618. "ref/netcore50/es/System.Globalization.xml",
  4619. "ref/netcore50/fr/System.Globalization.xml",
  4620. "ref/netcore50/it/System.Globalization.xml",
  4621. "ref/netcore50/ja/System.Globalization.xml",
  4622. "ref/netcore50/ko/System.Globalization.xml",
  4623. "ref/netcore50/ru/System.Globalization.xml",
  4624. "ref/netcore50/zh-hans/System.Globalization.xml",
  4625. "ref/netcore50/zh-hant/System.Globalization.xml",
  4626. "ref/netstandard1.0/System.Globalization.dll",
  4627. "ref/netstandard1.0/System.Globalization.xml",
  4628. "ref/netstandard1.0/de/System.Globalization.xml",
  4629. "ref/netstandard1.0/es/System.Globalization.xml",
  4630. "ref/netstandard1.0/fr/System.Globalization.xml",
  4631. "ref/netstandard1.0/it/System.Globalization.xml",
  4632. "ref/netstandard1.0/ja/System.Globalization.xml",
  4633. "ref/netstandard1.0/ko/System.Globalization.xml",
  4634. "ref/netstandard1.0/ru/System.Globalization.xml",
  4635. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4636. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4637. "ref/netstandard1.3/System.Globalization.dll",
  4638. "ref/netstandard1.3/System.Globalization.xml",
  4639. "ref/netstandard1.3/de/System.Globalization.xml",
  4640. "ref/netstandard1.3/es/System.Globalization.xml",
  4641. "ref/netstandard1.3/fr/System.Globalization.xml",
  4642. "ref/netstandard1.3/it/System.Globalization.xml",
  4643. "ref/netstandard1.3/ja/System.Globalization.xml",
  4644. "ref/netstandard1.3/ko/System.Globalization.xml",
  4645. "ref/netstandard1.3/ru/System.Globalization.xml",
  4646. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4647. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4648. "ref/portable-net45+win8+wp8+wpa81/_._",
  4649. "ref/win8/_._",
  4650. "ref/wp80/_._",
  4651. "ref/wpa81/_._",
  4652. "ref/xamarinios10/_._",
  4653. "ref/xamarinmac20/_._",
  4654. "ref/xamarintvos10/_._",
  4655. "ref/xamarinwatchos10/_._",
  4656. "system.globalization.4.3.0.nupkg.sha512",
  4657. "system.globalization.nuspec"
  4658. ]
  4659. },
  4660. "System.Globalization.Calendars/4.3.0": {
  4661. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  4662. "type": "package",
  4663. "path": "system.globalization.calendars/4.3.0",
  4664. "files": [
  4665. ".nupkg.metadata",
  4666. ".signature.p7s",
  4667. "ThirdPartyNotices.txt",
  4668. "dotnet_library_license.txt",
  4669. "lib/MonoAndroid10/_._",
  4670. "lib/MonoTouch10/_._",
  4671. "lib/net46/System.Globalization.Calendars.dll",
  4672. "lib/xamarinios10/_._",
  4673. "lib/xamarinmac20/_._",
  4674. "lib/xamarintvos10/_._",
  4675. "lib/xamarinwatchos10/_._",
  4676. "ref/MonoAndroid10/_._",
  4677. "ref/MonoTouch10/_._",
  4678. "ref/net46/System.Globalization.Calendars.dll",
  4679. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  4680. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  4681. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  4682. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  4683. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  4684. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  4685. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  4686. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  4687. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  4688. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  4689. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  4690. "ref/xamarinios10/_._",
  4691. "ref/xamarinmac20/_._",
  4692. "ref/xamarintvos10/_._",
  4693. "ref/xamarinwatchos10/_._",
  4694. "system.globalization.calendars.4.3.0.nupkg.sha512",
  4695. "system.globalization.calendars.nuspec"
  4696. ]
  4697. },
  4698. "System.Globalization.Extensions/4.3.0": {
  4699. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  4700. "type": "package",
  4701. "path": "system.globalization.extensions/4.3.0",
  4702. "files": [
  4703. ".nupkg.metadata",
  4704. ".signature.p7s",
  4705. "ThirdPartyNotices.txt",
  4706. "dotnet_library_license.txt",
  4707. "lib/MonoAndroid10/_._",
  4708. "lib/MonoTouch10/_._",
  4709. "lib/net46/System.Globalization.Extensions.dll",
  4710. "lib/xamarinios10/_._",
  4711. "lib/xamarinmac20/_._",
  4712. "lib/xamarintvos10/_._",
  4713. "lib/xamarinwatchos10/_._",
  4714. "ref/MonoAndroid10/_._",
  4715. "ref/MonoTouch10/_._",
  4716. "ref/net46/System.Globalization.Extensions.dll",
  4717. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  4718. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  4719. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  4720. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  4721. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  4722. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  4723. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  4724. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  4725. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  4726. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  4727. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  4728. "ref/xamarinios10/_._",
  4729. "ref/xamarinmac20/_._",
  4730. "ref/xamarintvos10/_._",
  4731. "ref/xamarinwatchos10/_._",
  4732. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4733. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  4734. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4735. "system.globalization.extensions.4.3.0.nupkg.sha512",
  4736. "system.globalization.extensions.nuspec"
  4737. ]
  4738. },
  4739. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  4740. "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==",
  4741. "type": "package",
  4742. "path": "system.identitymodel.tokens.jwt/6.8.0",
  4743. "files": [
  4744. ".nupkg.metadata",
  4745. ".signature.p7s",
  4746. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  4747. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  4748. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  4749. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  4750. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  4751. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  4752. "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512",
  4753. "system.identitymodel.tokens.jwt.nuspec"
  4754. ]
  4755. },
  4756. "System.IO/4.3.0": {
  4757. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4758. "type": "package",
  4759. "path": "system.io/4.3.0",
  4760. "files": [
  4761. ".nupkg.metadata",
  4762. ".signature.p7s",
  4763. "ThirdPartyNotices.txt",
  4764. "dotnet_library_license.txt",
  4765. "lib/MonoAndroid10/_._",
  4766. "lib/MonoTouch10/_._",
  4767. "lib/net45/_._",
  4768. "lib/net462/System.IO.dll",
  4769. "lib/portable-net45+win8+wp8+wpa81/_._",
  4770. "lib/win8/_._",
  4771. "lib/wp80/_._",
  4772. "lib/wpa81/_._",
  4773. "lib/xamarinios10/_._",
  4774. "lib/xamarinmac20/_._",
  4775. "lib/xamarintvos10/_._",
  4776. "lib/xamarinwatchos10/_._",
  4777. "ref/MonoAndroid10/_._",
  4778. "ref/MonoTouch10/_._",
  4779. "ref/net45/_._",
  4780. "ref/net462/System.IO.dll",
  4781. "ref/netcore50/System.IO.dll",
  4782. "ref/netcore50/System.IO.xml",
  4783. "ref/netcore50/de/System.IO.xml",
  4784. "ref/netcore50/es/System.IO.xml",
  4785. "ref/netcore50/fr/System.IO.xml",
  4786. "ref/netcore50/it/System.IO.xml",
  4787. "ref/netcore50/ja/System.IO.xml",
  4788. "ref/netcore50/ko/System.IO.xml",
  4789. "ref/netcore50/ru/System.IO.xml",
  4790. "ref/netcore50/zh-hans/System.IO.xml",
  4791. "ref/netcore50/zh-hant/System.IO.xml",
  4792. "ref/netstandard1.0/System.IO.dll",
  4793. "ref/netstandard1.0/System.IO.xml",
  4794. "ref/netstandard1.0/de/System.IO.xml",
  4795. "ref/netstandard1.0/es/System.IO.xml",
  4796. "ref/netstandard1.0/fr/System.IO.xml",
  4797. "ref/netstandard1.0/it/System.IO.xml",
  4798. "ref/netstandard1.0/ja/System.IO.xml",
  4799. "ref/netstandard1.0/ko/System.IO.xml",
  4800. "ref/netstandard1.0/ru/System.IO.xml",
  4801. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4802. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4803. "ref/netstandard1.3/System.IO.dll",
  4804. "ref/netstandard1.3/System.IO.xml",
  4805. "ref/netstandard1.3/de/System.IO.xml",
  4806. "ref/netstandard1.3/es/System.IO.xml",
  4807. "ref/netstandard1.3/fr/System.IO.xml",
  4808. "ref/netstandard1.3/it/System.IO.xml",
  4809. "ref/netstandard1.3/ja/System.IO.xml",
  4810. "ref/netstandard1.3/ko/System.IO.xml",
  4811. "ref/netstandard1.3/ru/System.IO.xml",
  4812. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4813. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4814. "ref/netstandard1.5/System.IO.dll",
  4815. "ref/netstandard1.5/System.IO.xml",
  4816. "ref/netstandard1.5/de/System.IO.xml",
  4817. "ref/netstandard1.5/es/System.IO.xml",
  4818. "ref/netstandard1.5/fr/System.IO.xml",
  4819. "ref/netstandard1.5/it/System.IO.xml",
  4820. "ref/netstandard1.5/ja/System.IO.xml",
  4821. "ref/netstandard1.5/ko/System.IO.xml",
  4822. "ref/netstandard1.5/ru/System.IO.xml",
  4823. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4824. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4825. "ref/portable-net45+win8+wp8+wpa81/_._",
  4826. "ref/win8/_._",
  4827. "ref/wp80/_._",
  4828. "ref/wpa81/_._",
  4829. "ref/xamarinios10/_._",
  4830. "ref/xamarinmac20/_._",
  4831. "ref/xamarintvos10/_._",
  4832. "ref/xamarinwatchos10/_._",
  4833. "system.io.4.3.0.nupkg.sha512",
  4834. "system.io.nuspec"
  4835. ]
  4836. },
  4837. "System.IO.Compression/4.3.0": {
  4838. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  4839. "type": "package",
  4840. "path": "system.io.compression/4.3.0",
  4841. "files": [
  4842. ".nupkg.metadata",
  4843. ".signature.p7s",
  4844. "ThirdPartyNotices.txt",
  4845. "dotnet_library_license.txt",
  4846. "lib/MonoAndroid10/_._",
  4847. "lib/MonoTouch10/_._",
  4848. "lib/net45/_._",
  4849. "lib/net46/System.IO.Compression.dll",
  4850. "lib/portable-net45+win8+wpa81/_._",
  4851. "lib/win8/_._",
  4852. "lib/wpa81/_._",
  4853. "lib/xamarinios10/_._",
  4854. "lib/xamarinmac20/_._",
  4855. "lib/xamarintvos10/_._",
  4856. "lib/xamarinwatchos10/_._",
  4857. "ref/MonoAndroid10/_._",
  4858. "ref/MonoTouch10/_._",
  4859. "ref/net45/_._",
  4860. "ref/net46/System.IO.Compression.dll",
  4861. "ref/netcore50/System.IO.Compression.dll",
  4862. "ref/netcore50/System.IO.Compression.xml",
  4863. "ref/netcore50/de/System.IO.Compression.xml",
  4864. "ref/netcore50/es/System.IO.Compression.xml",
  4865. "ref/netcore50/fr/System.IO.Compression.xml",
  4866. "ref/netcore50/it/System.IO.Compression.xml",
  4867. "ref/netcore50/ja/System.IO.Compression.xml",
  4868. "ref/netcore50/ko/System.IO.Compression.xml",
  4869. "ref/netcore50/ru/System.IO.Compression.xml",
  4870. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  4871. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  4872. "ref/netstandard1.1/System.IO.Compression.dll",
  4873. "ref/netstandard1.1/System.IO.Compression.xml",
  4874. "ref/netstandard1.1/de/System.IO.Compression.xml",
  4875. "ref/netstandard1.1/es/System.IO.Compression.xml",
  4876. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  4877. "ref/netstandard1.1/it/System.IO.Compression.xml",
  4878. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  4879. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  4880. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  4881. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  4882. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  4883. "ref/netstandard1.3/System.IO.Compression.dll",
  4884. "ref/netstandard1.3/System.IO.Compression.xml",
  4885. "ref/netstandard1.3/de/System.IO.Compression.xml",
  4886. "ref/netstandard1.3/es/System.IO.Compression.xml",
  4887. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  4888. "ref/netstandard1.3/it/System.IO.Compression.xml",
  4889. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  4890. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  4891. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  4892. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  4893. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  4894. "ref/portable-net45+win8+wpa81/_._",
  4895. "ref/win8/_._",
  4896. "ref/wpa81/_._",
  4897. "ref/xamarinios10/_._",
  4898. "ref/xamarinmac20/_._",
  4899. "ref/xamarintvos10/_._",
  4900. "ref/xamarinwatchos10/_._",
  4901. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  4902. "runtimes/win/lib/net46/System.IO.Compression.dll",
  4903. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  4904. "system.io.compression.4.3.0.nupkg.sha512",
  4905. "system.io.compression.nuspec"
  4906. ]
  4907. },
  4908. "System.IO.Compression.ZipFile/4.3.0": {
  4909. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  4910. "type": "package",
  4911. "path": "system.io.compression.zipfile/4.3.0",
  4912. "files": [
  4913. ".nupkg.metadata",
  4914. ".signature.p7s",
  4915. "ThirdPartyNotices.txt",
  4916. "dotnet_library_license.txt",
  4917. "lib/MonoAndroid10/_._",
  4918. "lib/MonoTouch10/_._",
  4919. "lib/net46/System.IO.Compression.ZipFile.dll",
  4920. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4921. "lib/xamarinios10/_._",
  4922. "lib/xamarinmac20/_._",
  4923. "lib/xamarintvos10/_._",
  4924. "lib/xamarinwatchos10/_._",
  4925. "ref/MonoAndroid10/_._",
  4926. "ref/MonoTouch10/_._",
  4927. "ref/net46/System.IO.Compression.ZipFile.dll",
  4928. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4929. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  4930. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  4931. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  4932. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  4933. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  4934. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  4935. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  4936. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  4937. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  4938. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  4939. "ref/xamarinios10/_._",
  4940. "ref/xamarinmac20/_._",
  4941. "ref/xamarintvos10/_._",
  4942. "ref/xamarinwatchos10/_._",
  4943. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  4944. "system.io.compression.zipfile.nuspec"
  4945. ]
  4946. },
  4947. "System.IO.FileSystem/4.3.0": {
  4948. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  4949. "type": "package",
  4950. "path": "system.io.filesystem/4.3.0",
  4951. "files": [
  4952. ".nupkg.metadata",
  4953. ".signature.p7s",
  4954. "ThirdPartyNotices.txt",
  4955. "dotnet_library_license.txt",
  4956. "lib/MonoAndroid10/_._",
  4957. "lib/MonoTouch10/_._",
  4958. "lib/net46/System.IO.FileSystem.dll",
  4959. "lib/xamarinios10/_._",
  4960. "lib/xamarinmac20/_._",
  4961. "lib/xamarintvos10/_._",
  4962. "lib/xamarinwatchos10/_._",
  4963. "ref/MonoAndroid10/_._",
  4964. "ref/MonoTouch10/_._",
  4965. "ref/net46/System.IO.FileSystem.dll",
  4966. "ref/netstandard1.3/System.IO.FileSystem.dll",
  4967. "ref/netstandard1.3/System.IO.FileSystem.xml",
  4968. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  4969. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  4970. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  4971. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  4972. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  4973. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  4974. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  4975. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  4976. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  4977. "ref/xamarinios10/_._",
  4978. "ref/xamarinmac20/_._",
  4979. "ref/xamarintvos10/_._",
  4980. "ref/xamarinwatchos10/_._",
  4981. "system.io.filesystem.4.3.0.nupkg.sha512",
  4982. "system.io.filesystem.nuspec"
  4983. ]
  4984. },
  4985. "System.IO.FileSystem.AccessControl/4.7.0": {
  4986. "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
  4987. "type": "package",
  4988. "path": "system.io.filesystem.accesscontrol/4.7.0",
  4989. "files": [
  4990. ".nupkg.metadata",
  4991. ".signature.p7s",
  4992. "LICENSE.TXT",
  4993. "THIRD-PARTY-NOTICES.TXT",
  4994. "lib/net46/System.IO.FileSystem.AccessControl.dll",
  4995. "lib/net461/System.IO.FileSystem.AccessControl.dll",
  4996. "lib/net461/System.IO.FileSystem.AccessControl.xml",
  4997. "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  4998. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  4999. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5000. "ref/net46/System.IO.FileSystem.AccessControl.dll",
  5001. "ref/net461/System.IO.FileSystem.AccessControl.dll",
  5002. "ref/net461/System.IO.FileSystem.AccessControl.xml",
  5003. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5004. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
  5005. "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
  5006. "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
  5007. "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
  5008. "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
  5009. "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
  5010. "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
  5011. "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
  5012. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
  5013. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
  5014. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5015. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5016. "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
  5017. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
  5018. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
  5019. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5020. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5021. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5022. "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512",
  5023. "system.io.filesystem.accesscontrol.nuspec",
  5024. "useSharedDesignerContext.txt",
  5025. "version.txt"
  5026. ]
  5027. },
  5028. "System.IO.FileSystem.Primitives/4.3.0": {
  5029. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5030. "type": "package",
  5031. "path": "system.io.filesystem.primitives/4.3.0",
  5032. "files": [
  5033. ".nupkg.metadata",
  5034. ".signature.p7s",
  5035. "ThirdPartyNotices.txt",
  5036. "dotnet_library_license.txt",
  5037. "lib/MonoAndroid10/_._",
  5038. "lib/MonoTouch10/_._",
  5039. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5040. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5041. "lib/xamarinios10/_._",
  5042. "lib/xamarinmac20/_._",
  5043. "lib/xamarintvos10/_._",
  5044. "lib/xamarinwatchos10/_._",
  5045. "ref/MonoAndroid10/_._",
  5046. "ref/MonoTouch10/_._",
  5047. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5048. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5049. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5050. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5051. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5052. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5053. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5054. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5055. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5056. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5057. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5058. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5059. "ref/xamarinios10/_._",
  5060. "ref/xamarinmac20/_._",
  5061. "ref/xamarintvos10/_._",
  5062. "ref/xamarinwatchos10/_._",
  5063. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5064. "system.io.filesystem.primitives.nuspec"
  5065. ]
  5066. },
  5067. "System.Linq/4.3.0": {
  5068. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5069. "type": "package",
  5070. "path": "system.linq/4.3.0",
  5071. "files": [
  5072. ".nupkg.metadata",
  5073. ".signature.p7s",
  5074. "ThirdPartyNotices.txt",
  5075. "dotnet_library_license.txt",
  5076. "lib/MonoAndroid10/_._",
  5077. "lib/MonoTouch10/_._",
  5078. "lib/net45/_._",
  5079. "lib/net463/System.Linq.dll",
  5080. "lib/netcore50/System.Linq.dll",
  5081. "lib/netstandard1.6/System.Linq.dll",
  5082. "lib/portable-net45+win8+wp8+wpa81/_._",
  5083. "lib/win8/_._",
  5084. "lib/wp80/_._",
  5085. "lib/wpa81/_._",
  5086. "lib/xamarinios10/_._",
  5087. "lib/xamarinmac20/_._",
  5088. "lib/xamarintvos10/_._",
  5089. "lib/xamarinwatchos10/_._",
  5090. "ref/MonoAndroid10/_._",
  5091. "ref/MonoTouch10/_._",
  5092. "ref/net45/_._",
  5093. "ref/net463/System.Linq.dll",
  5094. "ref/netcore50/System.Linq.dll",
  5095. "ref/netcore50/System.Linq.xml",
  5096. "ref/netcore50/de/System.Linq.xml",
  5097. "ref/netcore50/es/System.Linq.xml",
  5098. "ref/netcore50/fr/System.Linq.xml",
  5099. "ref/netcore50/it/System.Linq.xml",
  5100. "ref/netcore50/ja/System.Linq.xml",
  5101. "ref/netcore50/ko/System.Linq.xml",
  5102. "ref/netcore50/ru/System.Linq.xml",
  5103. "ref/netcore50/zh-hans/System.Linq.xml",
  5104. "ref/netcore50/zh-hant/System.Linq.xml",
  5105. "ref/netstandard1.0/System.Linq.dll",
  5106. "ref/netstandard1.0/System.Linq.xml",
  5107. "ref/netstandard1.0/de/System.Linq.xml",
  5108. "ref/netstandard1.0/es/System.Linq.xml",
  5109. "ref/netstandard1.0/fr/System.Linq.xml",
  5110. "ref/netstandard1.0/it/System.Linq.xml",
  5111. "ref/netstandard1.0/ja/System.Linq.xml",
  5112. "ref/netstandard1.0/ko/System.Linq.xml",
  5113. "ref/netstandard1.0/ru/System.Linq.xml",
  5114. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5115. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5116. "ref/netstandard1.6/System.Linq.dll",
  5117. "ref/netstandard1.6/System.Linq.xml",
  5118. "ref/netstandard1.6/de/System.Linq.xml",
  5119. "ref/netstandard1.6/es/System.Linq.xml",
  5120. "ref/netstandard1.6/fr/System.Linq.xml",
  5121. "ref/netstandard1.6/it/System.Linq.xml",
  5122. "ref/netstandard1.6/ja/System.Linq.xml",
  5123. "ref/netstandard1.6/ko/System.Linq.xml",
  5124. "ref/netstandard1.6/ru/System.Linq.xml",
  5125. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5126. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5127. "ref/portable-net45+win8+wp8+wpa81/_._",
  5128. "ref/win8/_._",
  5129. "ref/wp80/_._",
  5130. "ref/wpa81/_._",
  5131. "ref/xamarinios10/_._",
  5132. "ref/xamarinmac20/_._",
  5133. "ref/xamarintvos10/_._",
  5134. "ref/xamarinwatchos10/_._",
  5135. "system.linq.4.3.0.nupkg.sha512",
  5136. "system.linq.nuspec"
  5137. ]
  5138. },
  5139. "System.Linq.Expressions/4.3.0": {
  5140. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5141. "type": "package",
  5142. "path": "system.linq.expressions/4.3.0",
  5143. "files": [
  5144. ".nupkg.metadata",
  5145. ".signature.p7s",
  5146. "ThirdPartyNotices.txt",
  5147. "dotnet_library_license.txt",
  5148. "lib/MonoAndroid10/_._",
  5149. "lib/MonoTouch10/_._",
  5150. "lib/net45/_._",
  5151. "lib/net463/System.Linq.Expressions.dll",
  5152. "lib/netcore50/System.Linq.Expressions.dll",
  5153. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5154. "lib/portable-net45+win8+wp8+wpa81/_._",
  5155. "lib/win8/_._",
  5156. "lib/wp80/_._",
  5157. "lib/wpa81/_._",
  5158. "lib/xamarinios10/_._",
  5159. "lib/xamarinmac20/_._",
  5160. "lib/xamarintvos10/_._",
  5161. "lib/xamarinwatchos10/_._",
  5162. "ref/MonoAndroid10/_._",
  5163. "ref/MonoTouch10/_._",
  5164. "ref/net45/_._",
  5165. "ref/net463/System.Linq.Expressions.dll",
  5166. "ref/netcore50/System.Linq.Expressions.dll",
  5167. "ref/netcore50/System.Linq.Expressions.xml",
  5168. "ref/netcore50/de/System.Linq.Expressions.xml",
  5169. "ref/netcore50/es/System.Linq.Expressions.xml",
  5170. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5171. "ref/netcore50/it/System.Linq.Expressions.xml",
  5172. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5173. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5174. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5175. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5176. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5177. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5178. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5179. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5180. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5181. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5182. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5183. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5184. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5185. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5186. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5187. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5188. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5189. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5190. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5191. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5192. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5193. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5194. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5195. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5196. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5197. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5198. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5199. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5200. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5201. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5202. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5203. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5204. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5205. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5206. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5207. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5208. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5209. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5210. "ref/portable-net45+win8+wp8+wpa81/_._",
  5211. "ref/win8/_._",
  5212. "ref/wp80/_._",
  5213. "ref/wpa81/_._",
  5214. "ref/xamarinios10/_._",
  5215. "ref/xamarinmac20/_._",
  5216. "ref/xamarintvos10/_._",
  5217. "ref/xamarinwatchos10/_._",
  5218. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5219. "system.linq.expressions.4.3.0.nupkg.sha512",
  5220. "system.linq.expressions.nuspec"
  5221. ]
  5222. },
  5223. "System.Memory/4.5.4": {
  5224. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  5225. "type": "package",
  5226. "path": "system.memory/4.5.4",
  5227. "files": [
  5228. ".nupkg.metadata",
  5229. ".signature.p7s",
  5230. "LICENSE.TXT",
  5231. "THIRD-PARTY-NOTICES.TXT",
  5232. "lib/net461/System.Memory.dll",
  5233. "lib/net461/System.Memory.xml",
  5234. "lib/netcoreapp2.1/_._",
  5235. "lib/netstandard1.1/System.Memory.dll",
  5236. "lib/netstandard1.1/System.Memory.xml",
  5237. "lib/netstandard2.0/System.Memory.dll",
  5238. "lib/netstandard2.0/System.Memory.xml",
  5239. "ref/netcoreapp2.1/_._",
  5240. "system.memory.4.5.4.nupkg.sha512",
  5241. "system.memory.nuspec",
  5242. "useSharedDesignerContext.txt",
  5243. "version.txt"
  5244. ]
  5245. },
  5246. "System.Net.Http/4.3.0": {
  5247. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  5248. "type": "package",
  5249. "path": "system.net.http/4.3.0",
  5250. "files": [
  5251. ".nupkg.metadata",
  5252. ".signature.p7s",
  5253. "ThirdPartyNotices.txt",
  5254. "dotnet_library_license.txt",
  5255. "lib/Xamarinmac20/_._",
  5256. "lib/monoandroid10/_._",
  5257. "lib/monotouch10/_._",
  5258. "lib/net45/_._",
  5259. "lib/net46/System.Net.Http.dll",
  5260. "lib/portable-net45+win8+wpa81/_._",
  5261. "lib/win8/_._",
  5262. "lib/wpa81/_._",
  5263. "lib/xamarinios10/_._",
  5264. "lib/xamarintvos10/_._",
  5265. "lib/xamarinwatchos10/_._",
  5266. "ref/Xamarinmac20/_._",
  5267. "ref/monoandroid10/_._",
  5268. "ref/monotouch10/_._",
  5269. "ref/net45/_._",
  5270. "ref/net46/System.Net.Http.dll",
  5271. "ref/net46/System.Net.Http.xml",
  5272. "ref/net46/de/System.Net.Http.xml",
  5273. "ref/net46/es/System.Net.Http.xml",
  5274. "ref/net46/fr/System.Net.Http.xml",
  5275. "ref/net46/it/System.Net.Http.xml",
  5276. "ref/net46/ja/System.Net.Http.xml",
  5277. "ref/net46/ko/System.Net.Http.xml",
  5278. "ref/net46/ru/System.Net.Http.xml",
  5279. "ref/net46/zh-hans/System.Net.Http.xml",
  5280. "ref/net46/zh-hant/System.Net.Http.xml",
  5281. "ref/netcore50/System.Net.Http.dll",
  5282. "ref/netcore50/System.Net.Http.xml",
  5283. "ref/netcore50/de/System.Net.Http.xml",
  5284. "ref/netcore50/es/System.Net.Http.xml",
  5285. "ref/netcore50/fr/System.Net.Http.xml",
  5286. "ref/netcore50/it/System.Net.Http.xml",
  5287. "ref/netcore50/ja/System.Net.Http.xml",
  5288. "ref/netcore50/ko/System.Net.Http.xml",
  5289. "ref/netcore50/ru/System.Net.Http.xml",
  5290. "ref/netcore50/zh-hans/System.Net.Http.xml",
  5291. "ref/netcore50/zh-hant/System.Net.Http.xml",
  5292. "ref/netstandard1.1/System.Net.Http.dll",
  5293. "ref/netstandard1.1/System.Net.Http.xml",
  5294. "ref/netstandard1.1/de/System.Net.Http.xml",
  5295. "ref/netstandard1.1/es/System.Net.Http.xml",
  5296. "ref/netstandard1.1/fr/System.Net.Http.xml",
  5297. "ref/netstandard1.1/it/System.Net.Http.xml",
  5298. "ref/netstandard1.1/ja/System.Net.Http.xml",
  5299. "ref/netstandard1.1/ko/System.Net.Http.xml",
  5300. "ref/netstandard1.1/ru/System.Net.Http.xml",
  5301. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  5302. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  5303. "ref/netstandard1.3/System.Net.Http.dll",
  5304. "ref/netstandard1.3/System.Net.Http.xml",
  5305. "ref/netstandard1.3/de/System.Net.Http.xml",
  5306. "ref/netstandard1.3/es/System.Net.Http.xml",
  5307. "ref/netstandard1.3/fr/System.Net.Http.xml",
  5308. "ref/netstandard1.3/it/System.Net.Http.xml",
  5309. "ref/netstandard1.3/ja/System.Net.Http.xml",
  5310. "ref/netstandard1.3/ko/System.Net.Http.xml",
  5311. "ref/netstandard1.3/ru/System.Net.Http.xml",
  5312. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  5313. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  5314. "ref/portable-net45+win8+wpa81/_._",
  5315. "ref/win8/_._",
  5316. "ref/wpa81/_._",
  5317. "ref/xamarinios10/_._",
  5318. "ref/xamarintvos10/_._",
  5319. "ref/xamarinwatchos10/_._",
  5320. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  5321. "runtimes/win/lib/net46/System.Net.Http.dll",
  5322. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  5323. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  5324. "system.net.http.4.3.0.nupkg.sha512",
  5325. "system.net.http.nuspec"
  5326. ]
  5327. },
  5328. "System.Net.Primitives/4.3.0": {
  5329. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  5330. "type": "package",
  5331. "path": "system.net.primitives/4.3.0",
  5332. "files": [
  5333. ".nupkg.metadata",
  5334. ".signature.p7s",
  5335. "ThirdPartyNotices.txt",
  5336. "dotnet_library_license.txt",
  5337. "lib/MonoAndroid10/_._",
  5338. "lib/MonoTouch10/_._",
  5339. "lib/net45/_._",
  5340. "lib/portable-net45+win8+wp8+wpa81/_._",
  5341. "lib/win8/_._",
  5342. "lib/wp80/_._",
  5343. "lib/wpa81/_._",
  5344. "lib/xamarinios10/_._",
  5345. "lib/xamarinmac20/_._",
  5346. "lib/xamarintvos10/_._",
  5347. "lib/xamarinwatchos10/_._",
  5348. "ref/MonoAndroid10/_._",
  5349. "ref/MonoTouch10/_._",
  5350. "ref/net45/_._",
  5351. "ref/netcore50/System.Net.Primitives.dll",
  5352. "ref/netcore50/System.Net.Primitives.xml",
  5353. "ref/netcore50/de/System.Net.Primitives.xml",
  5354. "ref/netcore50/es/System.Net.Primitives.xml",
  5355. "ref/netcore50/fr/System.Net.Primitives.xml",
  5356. "ref/netcore50/it/System.Net.Primitives.xml",
  5357. "ref/netcore50/ja/System.Net.Primitives.xml",
  5358. "ref/netcore50/ko/System.Net.Primitives.xml",
  5359. "ref/netcore50/ru/System.Net.Primitives.xml",
  5360. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  5361. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  5362. "ref/netstandard1.0/System.Net.Primitives.dll",
  5363. "ref/netstandard1.0/System.Net.Primitives.xml",
  5364. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  5365. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  5366. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  5367. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  5368. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  5369. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  5370. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  5371. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  5372. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  5373. "ref/netstandard1.1/System.Net.Primitives.dll",
  5374. "ref/netstandard1.1/System.Net.Primitives.xml",
  5375. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  5376. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  5377. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  5378. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  5379. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  5380. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  5381. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  5382. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  5383. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  5384. "ref/netstandard1.3/System.Net.Primitives.dll",
  5385. "ref/netstandard1.3/System.Net.Primitives.xml",
  5386. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  5387. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  5388. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  5389. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  5390. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  5391. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  5392. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  5393. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  5394. "ref/netstandard1.3/zh-hant/System.Net.Primitives.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.net.primitives.4.3.0.nupkg.sha512",
  5404. "system.net.primitives.nuspec"
  5405. ]
  5406. },
  5407. "System.Net.Sockets/4.3.0": {
  5408. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  5409. "type": "package",
  5410. "path": "system.net.sockets/4.3.0",
  5411. "files": [
  5412. ".nupkg.metadata",
  5413. ".signature.p7s",
  5414. "ThirdPartyNotices.txt",
  5415. "dotnet_library_license.txt",
  5416. "lib/MonoAndroid10/_._",
  5417. "lib/MonoTouch10/_._",
  5418. "lib/net46/System.Net.Sockets.dll",
  5419. "lib/xamarinios10/_._",
  5420. "lib/xamarinmac20/_._",
  5421. "lib/xamarintvos10/_._",
  5422. "lib/xamarinwatchos10/_._",
  5423. "ref/MonoAndroid10/_._",
  5424. "ref/MonoTouch10/_._",
  5425. "ref/net46/System.Net.Sockets.dll",
  5426. "ref/netstandard1.3/System.Net.Sockets.dll",
  5427. "ref/netstandard1.3/System.Net.Sockets.xml",
  5428. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  5429. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  5430. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  5431. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  5432. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  5433. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  5434. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  5435. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  5436. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  5437. "ref/xamarinios10/_._",
  5438. "ref/xamarinmac20/_._",
  5439. "ref/xamarintvos10/_._",
  5440. "ref/xamarinwatchos10/_._",
  5441. "system.net.sockets.4.3.0.nupkg.sha512",
  5442. "system.net.sockets.nuspec"
  5443. ]
  5444. },
  5445. "System.ObjectModel/4.3.0": {
  5446. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  5447. "type": "package",
  5448. "path": "system.objectmodel/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/netcore50/System.ObjectModel.dll",
  5458. "lib/netstandard1.3/System.ObjectModel.dll",
  5459. "lib/portable-net45+win8+wp8+wpa81/_._",
  5460. "lib/win8/_._",
  5461. "lib/wp80/_._",
  5462. "lib/wpa81/_._",
  5463. "lib/xamarinios10/_._",
  5464. "lib/xamarinmac20/_._",
  5465. "lib/xamarintvos10/_._",
  5466. "lib/xamarinwatchos10/_._",
  5467. "ref/MonoAndroid10/_._",
  5468. "ref/MonoTouch10/_._",
  5469. "ref/net45/_._",
  5470. "ref/netcore50/System.ObjectModel.dll",
  5471. "ref/netcore50/System.ObjectModel.xml",
  5472. "ref/netcore50/de/System.ObjectModel.xml",
  5473. "ref/netcore50/es/System.ObjectModel.xml",
  5474. "ref/netcore50/fr/System.ObjectModel.xml",
  5475. "ref/netcore50/it/System.ObjectModel.xml",
  5476. "ref/netcore50/ja/System.ObjectModel.xml",
  5477. "ref/netcore50/ko/System.ObjectModel.xml",
  5478. "ref/netcore50/ru/System.ObjectModel.xml",
  5479. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5480. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5481. "ref/netstandard1.0/System.ObjectModel.dll",
  5482. "ref/netstandard1.0/System.ObjectModel.xml",
  5483. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5484. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5485. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5486. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5487. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5488. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5489. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5490. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5491. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5492. "ref/netstandard1.3/System.ObjectModel.dll",
  5493. "ref/netstandard1.3/System.ObjectModel.xml",
  5494. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5495. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5496. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5497. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5498. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5499. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5500. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5501. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5502. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5503. "ref/portable-net45+win8+wp8+wpa81/_._",
  5504. "ref/win8/_._",
  5505. "ref/wp80/_._",
  5506. "ref/wpa81/_._",
  5507. "ref/xamarinios10/_._",
  5508. "ref/xamarinmac20/_._",
  5509. "ref/xamarintvos10/_._",
  5510. "ref/xamarinwatchos10/_._",
  5511. "system.objectmodel.4.3.0.nupkg.sha512",
  5512. "system.objectmodel.nuspec"
  5513. ]
  5514. },
  5515. "System.Reflection/4.3.0": {
  5516. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5517. "type": "package",
  5518. "path": "system.reflection/4.3.0",
  5519. "files": [
  5520. ".nupkg.metadata",
  5521. ".signature.p7s",
  5522. "ThirdPartyNotices.txt",
  5523. "dotnet_library_license.txt",
  5524. "lib/MonoAndroid10/_._",
  5525. "lib/MonoTouch10/_._",
  5526. "lib/net45/_._",
  5527. "lib/net462/System.Reflection.dll",
  5528. "lib/portable-net45+win8+wp8+wpa81/_._",
  5529. "lib/win8/_._",
  5530. "lib/wp80/_._",
  5531. "lib/wpa81/_._",
  5532. "lib/xamarinios10/_._",
  5533. "lib/xamarinmac20/_._",
  5534. "lib/xamarintvos10/_._",
  5535. "lib/xamarinwatchos10/_._",
  5536. "ref/MonoAndroid10/_._",
  5537. "ref/MonoTouch10/_._",
  5538. "ref/net45/_._",
  5539. "ref/net462/System.Reflection.dll",
  5540. "ref/netcore50/System.Reflection.dll",
  5541. "ref/netcore50/System.Reflection.xml",
  5542. "ref/netcore50/de/System.Reflection.xml",
  5543. "ref/netcore50/es/System.Reflection.xml",
  5544. "ref/netcore50/fr/System.Reflection.xml",
  5545. "ref/netcore50/it/System.Reflection.xml",
  5546. "ref/netcore50/ja/System.Reflection.xml",
  5547. "ref/netcore50/ko/System.Reflection.xml",
  5548. "ref/netcore50/ru/System.Reflection.xml",
  5549. "ref/netcore50/zh-hans/System.Reflection.xml",
  5550. "ref/netcore50/zh-hant/System.Reflection.xml",
  5551. "ref/netstandard1.0/System.Reflection.dll",
  5552. "ref/netstandard1.0/System.Reflection.xml",
  5553. "ref/netstandard1.0/de/System.Reflection.xml",
  5554. "ref/netstandard1.0/es/System.Reflection.xml",
  5555. "ref/netstandard1.0/fr/System.Reflection.xml",
  5556. "ref/netstandard1.0/it/System.Reflection.xml",
  5557. "ref/netstandard1.0/ja/System.Reflection.xml",
  5558. "ref/netstandard1.0/ko/System.Reflection.xml",
  5559. "ref/netstandard1.0/ru/System.Reflection.xml",
  5560. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  5561. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  5562. "ref/netstandard1.3/System.Reflection.dll",
  5563. "ref/netstandard1.3/System.Reflection.xml",
  5564. "ref/netstandard1.3/de/System.Reflection.xml",
  5565. "ref/netstandard1.3/es/System.Reflection.xml",
  5566. "ref/netstandard1.3/fr/System.Reflection.xml",
  5567. "ref/netstandard1.3/it/System.Reflection.xml",
  5568. "ref/netstandard1.3/ja/System.Reflection.xml",
  5569. "ref/netstandard1.3/ko/System.Reflection.xml",
  5570. "ref/netstandard1.3/ru/System.Reflection.xml",
  5571. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  5572. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  5573. "ref/netstandard1.5/System.Reflection.dll",
  5574. "ref/netstandard1.5/System.Reflection.xml",
  5575. "ref/netstandard1.5/de/System.Reflection.xml",
  5576. "ref/netstandard1.5/es/System.Reflection.xml",
  5577. "ref/netstandard1.5/fr/System.Reflection.xml",
  5578. "ref/netstandard1.5/it/System.Reflection.xml",
  5579. "ref/netstandard1.5/ja/System.Reflection.xml",
  5580. "ref/netstandard1.5/ko/System.Reflection.xml",
  5581. "ref/netstandard1.5/ru/System.Reflection.xml",
  5582. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  5583. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  5584. "ref/portable-net45+win8+wp8+wpa81/_._",
  5585. "ref/win8/_._",
  5586. "ref/wp80/_._",
  5587. "ref/wpa81/_._",
  5588. "ref/xamarinios10/_._",
  5589. "ref/xamarinmac20/_._",
  5590. "ref/xamarintvos10/_._",
  5591. "ref/xamarinwatchos10/_._",
  5592. "system.reflection.4.3.0.nupkg.sha512",
  5593. "system.reflection.nuspec"
  5594. ]
  5595. },
  5596. "System.Reflection.Emit/4.3.0": {
  5597. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  5598. "type": "package",
  5599. "path": "system.reflection.emit/4.3.0",
  5600. "files": [
  5601. ".nupkg.metadata",
  5602. ".signature.p7s",
  5603. "ThirdPartyNotices.txt",
  5604. "dotnet_library_license.txt",
  5605. "lib/MonoAndroid10/_._",
  5606. "lib/monotouch10/_._",
  5607. "lib/net45/_._",
  5608. "lib/netcore50/System.Reflection.Emit.dll",
  5609. "lib/netstandard1.3/System.Reflection.Emit.dll",
  5610. "lib/xamarinios10/_._",
  5611. "lib/xamarinmac20/_._",
  5612. "lib/xamarintvos10/_._",
  5613. "lib/xamarinwatchos10/_._",
  5614. "ref/MonoAndroid10/_._",
  5615. "ref/net45/_._",
  5616. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5617. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5618. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5619. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5620. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5621. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5622. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5623. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5624. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5625. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5626. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5627. "ref/xamarinmac20/_._",
  5628. "system.reflection.emit.4.3.0.nupkg.sha512",
  5629. "system.reflection.emit.nuspec"
  5630. ]
  5631. },
  5632. "System.Reflection.Emit.ILGeneration/4.3.0": {
  5633. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  5634. "type": "package",
  5635. "path": "system.reflection.emit.ilgeneration/4.3.0",
  5636. "files": [
  5637. ".nupkg.metadata",
  5638. ".signature.p7s",
  5639. "ThirdPartyNotices.txt",
  5640. "dotnet_library_license.txt",
  5641. "lib/MonoAndroid10/_._",
  5642. "lib/MonoTouch10/_._",
  5643. "lib/net45/_._",
  5644. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5645. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5646. "lib/portable-net45+wp8/_._",
  5647. "lib/wp80/_._",
  5648. "lib/xamarinios10/_._",
  5649. "lib/xamarinmac20/_._",
  5650. "lib/xamarintvos10/_._",
  5651. "lib/xamarinwatchos10/_._",
  5652. "ref/MonoAndroid10/_._",
  5653. "ref/MonoTouch10/_._",
  5654. "ref/net45/_._",
  5655. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5656. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5657. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5658. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5659. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5660. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5661. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5662. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5663. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5664. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5665. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5666. "ref/portable-net45+wp8/_._",
  5667. "ref/wp80/_._",
  5668. "ref/xamarinios10/_._",
  5669. "ref/xamarinmac20/_._",
  5670. "ref/xamarintvos10/_._",
  5671. "ref/xamarinwatchos10/_._",
  5672. "runtimes/aot/lib/netcore50/_._",
  5673. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  5674. "system.reflection.emit.ilgeneration.nuspec"
  5675. ]
  5676. },
  5677. "System.Reflection.Emit.Lightweight/4.3.0": {
  5678. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  5679. "type": "package",
  5680. "path": "system.reflection.emit.lightweight/4.3.0",
  5681. "files": [
  5682. ".nupkg.metadata",
  5683. ".signature.p7s",
  5684. "ThirdPartyNotices.txt",
  5685. "dotnet_library_license.txt",
  5686. "lib/MonoAndroid10/_._",
  5687. "lib/MonoTouch10/_._",
  5688. "lib/net45/_._",
  5689. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5690. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5691. "lib/portable-net45+wp8/_._",
  5692. "lib/wp80/_._",
  5693. "lib/xamarinios10/_._",
  5694. "lib/xamarinmac20/_._",
  5695. "lib/xamarintvos10/_._",
  5696. "lib/xamarinwatchos10/_._",
  5697. "ref/MonoAndroid10/_._",
  5698. "ref/MonoTouch10/_._",
  5699. "ref/net45/_._",
  5700. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5701. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  5702. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  5703. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  5704. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  5705. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  5706. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  5707. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  5708. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  5709. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  5710. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  5711. "ref/portable-net45+wp8/_._",
  5712. "ref/wp80/_._",
  5713. "ref/xamarinios10/_._",
  5714. "ref/xamarinmac20/_._",
  5715. "ref/xamarintvos10/_._",
  5716. "ref/xamarinwatchos10/_._",
  5717. "runtimes/aot/lib/netcore50/_._",
  5718. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  5719. "system.reflection.emit.lightweight.nuspec"
  5720. ]
  5721. },
  5722. "System.Reflection.Extensions/4.3.0": {
  5723. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  5724. "type": "package",
  5725. "path": "system.reflection.extensions/4.3.0",
  5726. "files": [
  5727. ".nupkg.metadata",
  5728. ".signature.p7s",
  5729. "ThirdPartyNotices.txt",
  5730. "dotnet_library_license.txt",
  5731. "lib/MonoAndroid10/_._",
  5732. "lib/MonoTouch10/_._",
  5733. "lib/net45/_._",
  5734. "lib/portable-net45+win8+wp8+wpa81/_._",
  5735. "lib/win8/_._",
  5736. "lib/wp80/_._",
  5737. "lib/wpa81/_._",
  5738. "lib/xamarinios10/_._",
  5739. "lib/xamarinmac20/_._",
  5740. "lib/xamarintvos10/_._",
  5741. "lib/xamarinwatchos10/_._",
  5742. "ref/MonoAndroid10/_._",
  5743. "ref/MonoTouch10/_._",
  5744. "ref/net45/_._",
  5745. "ref/netcore50/System.Reflection.Extensions.dll",
  5746. "ref/netcore50/System.Reflection.Extensions.xml",
  5747. "ref/netcore50/de/System.Reflection.Extensions.xml",
  5748. "ref/netcore50/es/System.Reflection.Extensions.xml",
  5749. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  5750. "ref/netcore50/it/System.Reflection.Extensions.xml",
  5751. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  5752. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  5753. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  5754. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  5755. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  5756. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  5757. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  5758. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  5759. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  5760. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  5761. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  5762. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  5763. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  5764. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  5765. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  5766. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  5767. "ref/portable-net45+win8+wp8+wpa81/_._",
  5768. "ref/win8/_._",
  5769. "ref/wp80/_._",
  5770. "ref/wpa81/_._",
  5771. "ref/xamarinios10/_._",
  5772. "ref/xamarinmac20/_._",
  5773. "ref/xamarintvos10/_._",
  5774. "ref/xamarinwatchos10/_._",
  5775. "system.reflection.extensions.4.3.0.nupkg.sha512",
  5776. "system.reflection.extensions.nuspec"
  5777. ]
  5778. },
  5779. "System.Reflection.Primitives/4.3.0": {
  5780. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  5781. "type": "package",
  5782. "path": "system.reflection.primitives/4.3.0",
  5783. "files": [
  5784. ".nupkg.metadata",
  5785. ".signature.p7s",
  5786. "ThirdPartyNotices.txt",
  5787. "dotnet_library_license.txt",
  5788. "lib/MonoAndroid10/_._",
  5789. "lib/MonoTouch10/_._",
  5790. "lib/net45/_._",
  5791. "lib/portable-net45+win8+wp8+wpa81/_._",
  5792. "lib/win8/_._",
  5793. "lib/wp80/_._",
  5794. "lib/wpa81/_._",
  5795. "lib/xamarinios10/_._",
  5796. "lib/xamarinmac20/_._",
  5797. "lib/xamarintvos10/_._",
  5798. "lib/xamarinwatchos10/_._",
  5799. "ref/MonoAndroid10/_._",
  5800. "ref/MonoTouch10/_._",
  5801. "ref/net45/_._",
  5802. "ref/netcore50/System.Reflection.Primitives.dll",
  5803. "ref/netcore50/System.Reflection.Primitives.xml",
  5804. "ref/netcore50/de/System.Reflection.Primitives.xml",
  5805. "ref/netcore50/es/System.Reflection.Primitives.xml",
  5806. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  5807. "ref/netcore50/it/System.Reflection.Primitives.xml",
  5808. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  5809. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  5810. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  5811. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  5812. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  5813. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  5814. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  5815. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  5816. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  5817. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  5818. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  5819. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  5820. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  5821. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  5822. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  5823. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  5824. "ref/portable-net45+win8+wp8+wpa81/_._",
  5825. "ref/win8/_._",
  5826. "ref/wp80/_._",
  5827. "ref/wpa81/_._",
  5828. "ref/xamarinios10/_._",
  5829. "ref/xamarinmac20/_._",
  5830. "ref/xamarintvos10/_._",
  5831. "ref/xamarinwatchos10/_._",
  5832. "system.reflection.primitives.4.3.0.nupkg.sha512",
  5833. "system.reflection.primitives.nuspec"
  5834. ]
  5835. },
  5836. "System.Reflection.TypeExtensions/4.3.0": {
  5837. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  5838. "type": "package",
  5839. "path": "system.reflection.typeextensions/4.3.0",
  5840. "files": [
  5841. ".nupkg.metadata",
  5842. ".signature.p7s",
  5843. "ThirdPartyNotices.txt",
  5844. "dotnet_library_license.txt",
  5845. "lib/MonoAndroid10/_._",
  5846. "lib/MonoTouch10/_._",
  5847. "lib/net46/System.Reflection.TypeExtensions.dll",
  5848. "lib/net462/System.Reflection.TypeExtensions.dll",
  5849. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  5850. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5851. "lib/xamarinios10/_._",
  5852. "lib/xamarinmac20/_._",
  5853. "lib/xamarintvos10/_._",
  5854. "lib/xamarinwatchos10/_._",
  5855. "ref/MonoAndroid10/_._",
  5856. "ref/MonoTouch10/_._",
  5857. "ref/net46/System.Reflection.TypeExtensions.dll",
  5858. "ref/net462/System.Reflection.TypeExtensions.dll",
  5859. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  5860. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  5861. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  5862. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  5863. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  5864. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  5865. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  5866. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  5867. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  5868. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  5869. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  5870. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5871. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  5872. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  5873. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  5874. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  5875. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  5876. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  5877. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  5878. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  5879. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  5880. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  5881. "ref/xamarinios10/_._",
  5882. "ref/xamarinmac20/_._",
  5883. "ref/xamarintvos10/_._",
  5884. "ref/xamarinwatchos10/_._",
  5885. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  5886. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  5887. "system.reflection.typeextensions.nuspec"
  5888. ]
  5889. },
  5890. "System.Resources.ResourceManager/4.3.0": {
  5891. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  5892. "type": "package",
  5893. "path": "system.resources.resourcemanager/4.3.0",
  5894. "files": [
  5895. ".nupkg.metadata",
  5896. ".signature.p7s",
  5897. "ThirdPartyNotices.txt",
  5898. "dotnet_library_license.txt",
  5899. "lib/MonoAndroid10/_._",
  5900. "lib/MonoTouch10/_._",
  5901. "lib/net45/_._",
  5902. "lib/portable-net45+win8+wp8+wpa81/_._",
  5903. "lib/win8/_._",
  5904. "lib/wp80/_._",
  5905. "lib/wpa81/_._",
  5906. "lib/xamarinios10/_._",
  5907. "lib/xamarinmac20/_._",
  5908. "lib/xamarintvos10/_._",
  5909. "lib/xamarinwatchos10/_._",
  5910. "ref/MonoAndroid10/_._",
  5911. "ref/MonoTouch10/_._",
  5912. "ref/net45/_._",
  5913. "ref/netcore50/System.Resources.ResourceManager.dll",
  5914. "ref/netcore50/System.Resources.ResourceManager.xml",
  5915. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  5916. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  5917. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  5918. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  5919. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  5920. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  5921. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  5922. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  5923. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  5924. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  5925. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  5926. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  5927. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  5928. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  5929. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  5930. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  5931. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  5932. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  5933. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  5934. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  5935. "ref/portable-net45+win8+wp8+wpa81/_._",
  5936. "ref/win8/_._",
  5937. "ref/wp80/_._",
  5938. "ref/wpa81/_._",
  5939. "ref/xamarinios10/_._",
  5940. "ref/xamarinmac20/_._",
  5941. "ref/xamarintvos10/_._",
  5942. "ref/xamarinwatchos10/_._",
  5943. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  5944. "system.resources.resourcemanager.nuspec"
  5945. ]
  5946. },
  5947. "System.Runtime/4.3.0": {
  5948. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  5949. "type": "package",
  5950. "path": "system.runtime/4.3.0",
  5951. "files": [
  5952. ".nupkg.metadata",
  5953. ".signature.p7s",
  5954. "ThirdPartyNotices.txt",
  5955. "dotnet_library_license.txt",
  5956. "lib/MonoAndroid10/_._",
  5957. "lib/MonoTouch10/_._",
  5958. "lib/net45/_._",
  5959. "lib/net462/System.Runtime.dll",
  5960. "lib/portable-net45+win8+wp80+wpa81/_._",
  5961. "lib/win8/_._",
  5962. "lib/wp80/_._",
  5963. "lib/wpa81/_._",
  5964. "lib/xamarinios10/_._",
  5965. "lib/xamarinmac20/_._",
  5966. "lib/xamarintvos10/_._",
  5967. "lib/xamarinwatchos10/_._",
  5968. "ref/MonoAndroid10/_._",
  5969. "ref/MonoTouch10/_._",
  5970. "ref/net45/_._",
  5971. "ref/net462/System.Runtime.dll",
  5972. "ref/netcore50/System.Runtime.dll",
  5973. "ref/netcore50/System.Runtime.xml",
  5974. "ref/netcore50/de/System.Runtime.xml",
  5975. "ref/netcore50/es/System.Runtime.xml",
  5976. "ref/netcore50/fr/System.Runtime.xml",
  5977. "ref/netcore50/it/System.Runtime.xml",
  5978. "ref/netcore50/ja/System.Runtime.xml",
  5979. "ref/netcore50/ko/System.Runtime.xml",
  5980. "ref/netcore50/ru/System.Runtime.xml",
  5981. "ref/netcore50/zh-hans/System.Runtime.xml",
  5982. "ref/netcore50/zh-hant/System.Runtime.xml",
  5983. "ref/netstandard1.0/System.Runtime.dll",
  5984. "ref/netstandard1.0/System.Runtime.xml",
  5985. "ref/netstandard1.0/de/System.Runtime.xml",
  5986. "ref/netstandard1.0/es/System.Runtime.xml",
  5987. "ref/netstandard1.0/fr/System.Runtime.xml",
  5988. "ref/netstandard1.0/it/System.Runtime.xml",
  5989. "ref/netstandard1.0/ja/System.Runtime.xml",
  5990. "ref/netstandard1.0/ko/System.Runtime.xml",
  5991. "ref/netstandard1.0/ru/System.Runtime.xml",
  5992. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  5993. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  5994. "ref/netstandard1.2/System.Runtime.dll",
  5995. "ref/netstandard1.2/System.Runtime.xml",
  5996. "ref/netstandard1.2/de/System.Runtime.xml",
  5997. "ref/netstandard1.2/es/System.Runtime.xml",
  5998. "ref/netstandard1.2/fr/System.Runtime.xml",
  5999. "ref/netstandard1.2/it/System.Runtime.xml",
  6000. "ref/netstandard1.2/ja/System.Runtime.xml",
  6001. "ref/netstandard1.2/ko/System.Runtime.xml",
  6002. "ref/netstandard1.2/ru/System.Runtime.xml",
  6003. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6004. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6005. "ref/netstandard1.3/System.Runtime.dll",
  6006. "ref/netstandard1.3/System.Runtime.xml",
  6007. "ref/netstandard1.3/de/System.Runtime.xml",
  6008. "ref/netstandard1.3/es/System.Runtime.xml",
  6009. "ref/netstandard1.3/fr/System.Runtime.xml",
  6010. "ref/netstandard1.3/it/System.Runtime.xml",
  6011. "ref/netstandard1.3/ja/System.Runtime.xml",
  6012. "ref/netstandard1.3/ko/System.Runtime.xml",
  6013. "ref/netstandard1.3/ru/System.Runtime.xml",
  6014. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6015. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6016. "ref/netstandard1.5/System.Runtime.dll",
  6017. "ref/netstandard1.5/System.Runtime.xml",
  6018. "ref/netstandard1.5/de/System.Runtime.xml",
  6019. "ref/netstandard1.5/es/System.Runtime.xml",
  6020. "ref/netstandard1.5/fr/System.Runtime.xml",
  6021. "ref/netstandard1.5/it/System.Runtime.xml",
  6022. "ref/netstandard1.5/ja/System.Runtime.xml",
  6023. "ref/netstandard1.5/ko/System.Runtime.xml",
  6024. "ref/netstandard1.5/ru/System.Runtime.xml",
  6025. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6026. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6027. "ref/portable-net45+win8+wp80+wpa81/_._",
  6028. "ref/win8/_._",
  6029. "ref/wp80/_._",
  6030. "ref/wpa81/_._",
  6031. "ref/xamarinios10/_._",
  6032. "ref/xamarinmac20/_._",
  6033. "ref/xamarintvos10/_._",
  6034. "ref/xamarinwatchos10/_._",
  6035. "system.runtime.4.3.0.nupkg.sha512",
  6036. "system.runtime.nuspec"
  6037. ]
  6038. },
  6039. "System.Runtime.Caching/4.7.0": {
  6040. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  6041. "type": "package",
  6042. "path": "system.runtime.caching/4.7.0",
  6043. "files": [
  6044. ".nupkg.metadata",
  6045. ".signature.p7s",
  6046. "LICENSE.TXT",
  6047. "THIRD-PARTY-NOTICES.TXT",
  6048. "lib/MonoAndroid10/_._",
  6049. "lib/MonoTouch10/_._",
  6050. "lib/net45/_._",
  6051. "lib/netstandard2.0/System.Runtime.Caching.dll",
  6052. "lib/netstandard2.0/System.Runtime.Caching.xml",
  6053. "lib/xamarinios10/_._",
  6054. "lib/xamarinmac20/_._",
  6055. "lib/xamarintvos10/_._",
  6056. "lib/xamarinwatchos10/_._",
  6057. "ref/MonoAndroid10/_._",
  6058. "ref/MonoTouch10/_._",
  6059. "ref/net45/_._",
  6060. "ref/netstandard2.0/System.Runtime.Caching.dll",
  6061. "ref/netstandard2.0/System.Runtime.Caching.xml",
  6062. "ref/xamarinios10/_._",
  6063. "ref/xamarinmac20/_._",
  6064. "ref/xamarintvos10/_._",
  6065. "ref/xamarinwatchos10/_._",
  6066. "runtimes/win/lib/net45/_._",
  6067. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  6068. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  6069. "system.runtime.caching.4.7.0.nupkg.sha512",
  6070. "system.runtime.caching.nuspec",
  6071. "useSharedDesignerContext.txt",
  6072. "version.txt"
  6073. ]
  6074. },
  6075. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  6076. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  6077. "type": "package",
  6078. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  6079. "files": [
  6080. ".nupkg.metadata",
  6081. ".signature.p7s",
  6082. "Icon.png",
  6083. "LICENSE.TXT",
  6084. "THIRD-PARTY-NOTICES.TXT",
  6085. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  6086. "buildTransitive/netcoreapp3.1/_._",
  6087. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6088. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6089. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  6090. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  6091. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  6092. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  6093. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6094. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6095. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  6096. "system.runtime.compilerservices.unsafe.nuspec",
  6097. "useSharedDesignerContext.txt"
  6098. ]
  6099. },
  6100. "System.Runtime.Extensions/4.3.0": {
  6101. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6102. "type": "package",
  6103. "path": "system.runtime.extensions/4.3.0",
  6104. "files": [
  6105. ".nupkg.metadata",
  6106. ".signature.p7s",
  6107. "ThirdPartyNotices.txt",
  6108. "dotnet_library_license.txt",
  6109. "lib/MonoAndroid10/_._",
  6110. "lib/MonoTouch10/_._",
  6111. "lib/net45/_._",
  6112. "lib/net462/System.Runtime.Extensions.dll",
  6113. "lib/portable-net45+win8+wp8+wpa81/_._",
  6114. "lib/win8/_._",
  6115. "lib/wp80/_._",
  6116. "lib/wpa81/_._",
  6117. "lib/xamarinios10/_._",
  6118. "lib/xamarinmac20/_._",
  6119. "lib/xamarintvos10/_._",
  6120. "lib/xamarinwatchos10/_._",
  6121. "ref/MonoAndroid10/_._",
  6122. "ref/MonoTouch10/_._",
  6123. "ref/net45/_._",
  6124. "ref/net462/System.Runtime.Extensions.dll",
  6125. "ref/netcore50/System.Runtime.Extensions.dll",
  6126. "ref/netcore50/System.Runtime.Extensions.xml",
  6127. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6128. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6129. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6130. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6131. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6132. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6133. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6134. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6135. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6136. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6137. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6138. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6139. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6140. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6141. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6142. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6143. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6144. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6145. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6146. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6147. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6148. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6149. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6150. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6151. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6152. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6153. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6154. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6155. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6156. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6157. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6158. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6159. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6160. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6161. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6162. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6163. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6164. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6165. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6166. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6167. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6168. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6169. "ref/portable-net45+win8+wp8+wpa81/_._",
  6170. "ref/win8/_._",
  6171. "ref/wp80/_._",
  6172. "ref/wpa81/_._",
  6173. "ref/xamarinios10/_._",
  6174. "ref/xamarinmac20/_._",
  6175. "ref/xamarintvos10/_._",
  6176. "ref/xamarinwatchos10/_._",
  6177. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6178. "system.runtime.extensions.nuspec"
  6179. ]
  6180. },
  6181. "System.Runtime.Handles/4.3.0": {
  6182. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6183. "type": "package",
  6184. "path": "system.runtime.handles/4.3.0",
  6185. "files": [
  6186. ".nupkg.metadata",
  6187. ".signature.p7s",
  6188. "ThirdPartyNotices.txt",
  6189. "dotnet_library_license.txt",
  6190. "lib/MonoAndroid10/_._",
  6191. "lib/MonoTouch10/_._",
  6192. "lib/net46/_._",
  6193. "lib/xamarinios10/_._",
  6194. "lib/xamarinmac20/_._",
  6195. "lib/xamarintvos10/_._",
  6196. "lib/xamarinwatchos10/_._",
  6197. "ref/MonoAndroid10/_._",
  6198. "ref/MonoTouch10/_._",
  6199. "ref/net46/_._",
  6200. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6201. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6202. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6203. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6204. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6205. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6206. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6207. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6208. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6209. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6210. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6211. "ref/xamarinios10/_._",
  6212. "ref/xamarinmac20/_._",
  6213. "ref/xamarintvos10/_._",
  6214. "ref/xamarinwatchos10/_._",
  6215. "system.runtime.handles.4.3.0.nupkg.sha512",
  6216. "system.runtime.handles.nuspec"
  6217. ]
  6218. },
  6219. "System.Runtime.InteropServices/4.3.0": {
  6220. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6221. "type": "package",
  6222. "path": "system.runtime.interopservices/4.3.0",
  6223. "files": [
  6224. ".nupkg.metadata",
  6225. ".signature.p7s",
  6226. "ThirdPartyNotices.txt",
  6227. "dotnet_library_license.txt",
  6228. "lib/MonoAndroid10/_._",
  6229. "lib/MonoTouch10/_._",
  6230. "lib/net45/_._",
  6231. "lib/net462/System.Runtime.InteropServices.dll",
  6232. "lib/net463/System.Runtime.InteropServices.dll",
  6233. "lib/portable-net45+win8+wpa81/_._",
  6234. "lib/win8/_._",
  6235. "lib/wpa81/_._",
  6236. "lib/xamarinios10/_._",
  6237. "lib/xamarinmac20/_._",
  6238. "lib/xamarintvos10/_._",
  6239. "lib/xamarinwatchos10/_._",
  6240. "ref/MonoAndroid10/_._",
  6241. "ref/MonoTouch10/_._",
  6242. "ref/net45/_._",
  6243. "ref/net462/System.Runtime.InteropServices.dll",
  6244. "ref/net463/System.Runtime.InteropServices.dll",
  6245. "ref/netcore50/System.Runtime.InteropServices.dll",
  6246. "ref/netcore50/System.Runtime.InteropServices.xml",
  6247. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6248. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6249. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6250. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6251. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6252. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6253. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6254. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6255. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6256. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  6257. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6258. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6259. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6260. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6261. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6262. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6263. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6264. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6265. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6266. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6267. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6268. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6269. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6270. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6271. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6272. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6273. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6274. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6275. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6276. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6277. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6278. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6279. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6280. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6281. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6282. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6283. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6284. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6285. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6286. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6287. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6288. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6289. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6290. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6291. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6292. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6293. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6294. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6295. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6296. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6297. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6298. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6299. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6300. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6301. "ref/portable-net45+win8+wpa81/_._",
  6302. "ref/win8/_._",
  6303. "ref/wpa81/_._",
  6304. "ref/xamarinios10/_._",
  6305. "ref/xamarinmac20/_._",
  6306. "ref/xamarintvos10/_._",
  6307. "ref/xamarinwatchos10/_._",
  6308. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  6309. "system.runtime.interopservices.nuspec"
  6310. ]
  6311. },
  6312. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  6313. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  6314. "type": "package",
  6315. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  6316. "files": [
  6317. ".nupkg.metadata",
  6318. ".signature.p7s",
  6319. "ThirdPartyNotices.txt",
  6320. "dotnet_library_license.txt",
  6321. "lib/MonoAndroid10/_._",
  6322. "lib/MonoTouch10/_._",
  6323. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6324. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6325. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  6326. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  6327. "lib/xamarinios10/_._",
  6328. "lib/xamarinmac20/_._",
  6329. "lib/xamarintvos10/_._",
  6330. "lib/xamarinwatchos10/_._",
  6331. "ref/MonoAndroid10/_._",
  6332. "ref/MonoTouch10/_._",
  6333. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6334. "ref/xamarinios10/_._",
  6335. "ref/xamarinmac20/_._",
  6336. "ref/xamarintvos10/_._",
  6337. "ref/xamarinwatchos10/_._",
  6338. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6339. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6340. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6341. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6342. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6343. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  6344. "system.runtime.interopservices.runtimeinformation.nuspec"
  6345. ]
  6346. },
  6347. "System.Runtime.Numerics/4.3.0": {
  6348. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  6349. "type": "package",
  6350. "path": "system.runtime.numerics/4.3.0",
  6351. "files": [
  6352. ".nupkg.metadata",
  6353. ".signature.p7s",
  6354. "ThirdPartyNotices.txt",
  6355. "dotnet_library_license.txt",
  6356. "lib/MonoAndroid10/_._",
  6357. "lib/MonoTouch10/_._",
  6358. "lib/net45/_._",
  6359. "lib/netcore50/System.Runtime.Numerics.dll",
  6360. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  6361. "lib/portable-net45+win8+wpa81/_._",
  6362. "lib/win8/_._",
  6363. "lib/wpa81/_._",
  6364. "lib/xamarinios10/_._",
  6365. "lib/xamarinmac20/_._",
  6366. "lib/xamarintvos10/_._",
  6367. "lib/xamarinwatchos10/_._",
  6368. "ref/MonoAndroid10/_._",
  6369. "ref/MonoTouch10/_._",
  6370. "ref/net45/_._",
  6371. "ref/netcore50/System.Runtime.Numerics.dll",
  6372. "ref/netcore50/System.Runtime.Numerics.xml",
  6373. "ref/netcore50/de/System.Runtime.Numerics.xml",
  6374. "ref/netcore50/es/System.Runtime.Numerics.xml",
  6375. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  6376. "ref/netcore50/it/System.Runtime.Numerics.xml",
  6377. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  6378. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  6379. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  6380. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  6381. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  6382. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  6383. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  6384. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  6385. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  6386. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  6387. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  6388. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  6389. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  6390. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  6391. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  6392. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  6393. "ref/portable-net45+win8+wpa81/_._",
  6394. "ref/win8/_._",
  6395. "ref/wpa81/_._",
  6396. "ref/xamarinios10/_._",
  6397. "ref/xamarinmac20/_._",
  6398. "ref/xamarintvos10/_._",
  6399. "ref/xamarinwatchos10/_._",
  6400. "system.runtime.numerics.4.3.0.nupkg.sha512",
  6401. "system.runtime.numerics.nuspec"
  6402. ]
  6403. },
  6404. "System.Runtime.Serialization.Formatters/4.3.0": {
  6405. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  6406. "type": "package",
  6407. "path": "system.runtime.serialization.formatters/4.3.0",
  6408. "files": [
  6409. ".nupkg.metadata",
  6410. ".signature.p7s",
  6411. "ThirdPartyNotices.txt",
  6412. "dotnet_library_license.txt",
  6413. "lib/MonoAndroid10/_._",
  6414. "lib/MonoTouch10/_._",
  6415. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  6416. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  6417. "lib/xamarinios10/_._",
  6418. "lib/xamarinmac20/_._",
  6419. "lib/xamarintvos10/_._",
  6420. "lib/xamarinwatchos10/_._",
  6421. "ref/MonoAndroid10/_._",
  6422. "ref/MonoTouch10/_._",
  6423. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  6424. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  6425. "ref/xamarinios10/_._",
  6426. "ref/xamarinmac20/_._",
  6427. "ref/xamarintvos10/_._",
  6428. "ref/xamarinwatchos10/_._",
  6429. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  6430. "system.runtime.serialization.formatters.nuspec"
  6431. ]
  6432. },
  6433. "System.Runtime.Serialization.Primitives/4.3.0": {
  6434. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  6435. "type": "package",
  6436. "path": "system.runtime.serialization.primitives/4.3.0",
  6437. "files": [
  6438. ".nupkg.metadata",
  6439. ".signature.p7s",
  6440. "ThirdPartyNotices.txt",
  6441. "dotnet_library_license.txt",
  6442. "lib/MonoAndroid10/_._",
  6443. "lib/MonoTouch10/_._",
  6444. "lib/net45/_._",
  6445. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  6446. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6447. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6448. "lib/portable-net45+win8+wp8+wpa81/_._",
  6449. "lib/win8/_._",
  6450. "lib/wp80/_._",
  6451. "lib/wpa81/_._",
  6452. "lib/xamarinios10/_._",
  6453. "lib/xamarinmac20/_._",
  6454. "lib/xamarintvos10/_._",
  6455. "lib/xamarinwatchos10/_._",
  6456. "ref/MonoAndroid10/_._",
  6457. "ref/MonoTouch10/_._",
  6458. "ref/net45/_._",
  6459. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  6460. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  6461. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  6462. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  6463. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  6464. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  6465. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  6466. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  6467. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  6468. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  6469. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6470. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6471. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  6472. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  6473. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  6474. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  6475. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  6476. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  6477. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  6478. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  6479. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  6480. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6481. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6482. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6483. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  6484. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  6485. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  6486. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  6487. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  6488. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  6489. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  6490. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  6491. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6492. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6493. "ref/portable-net45+win8+wp8+wpa81/_._",
  6494. "ref/win8/_._",
  6495. "ref/wp80/_._",
  6496. "ref/wpa81/_._",
  6497. "ref/xamarinios10/_._",
  6498. "ref/xamarinmac20/_._",
  6499. "ref/xamarintvos10/_._",
  6500. "ref/xamarinwatchos10/_._",
  6501. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6502. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  6503. "system.runtime.serialization.primitives.nuspec"
  6504. ]
  6505. },
  6506. "System.Security.AccessControl/4.7.0": {
  6507. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  6508. "type": "package",
  6509. "path": "system.security.accesscontrol/4.7.0",
  6510. "files": [
  6511. ".nupkg.metadata",
  6512. ".signature.p7s",
  6513. "LICENSE.TXT",
  6514. "THIRD-PARTY-NOTICES.TXT",
  6515. "lib/net46/System.Security.AccessControl.dll",
  6516. "lib/net461/System.Security.AccessControl.dll",
  6517. "lib/net461/System.Security.AccessControl.xml",
  6518. "lib/netstandard1.3/System.Security.AccessControl.dll",
  6519. "lib/netstandard2.0/System.Security.AccessControl.dll",
  6520. "lib/netstandard2.0/System.Security.AccessControl.xml",
  6521. "lib/uap10.0.16299/_._",
  6522. "ref/net46/System.Security.AccessControl.dll",
  6523. "ref/net461/System.Security.AccessControl.dll",
  6524. "ref/net461/System.Security.AccessControl.xml",
  6525. "ref/netstandard1.3/System.Security.AccessControl.dll",
  6526. "ref/netstandard1.3/System.Security.AccessControl.xml",
  6527. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  6528. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  6529. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  6530. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  6531. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  6532. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  6533. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  6534. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  6535. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  6536. "ref/netstandard2.0/System.Security.AccessControl.dll",
  6537. "ref/netstandard2.0/System.Security.AccessControl.xml",
  6538. "ref/uap10.0.16299/_._",
  6539. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  6540. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  6541. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  6542. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6543. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  6544. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  6545. "runtimes/win/lib/uap10.0.16299/_._",
  6546. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  6547. "system.security.accesscontrol.nuspec",
  6548. "useSharedDesignerContext.txt",
  6549. "version.txt"
  6550. ]
  6551. },
  6552. "System.Security.Cryptography.Algorithms/4.3.0": {
  6553. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  6554. "type": "package",
  6555. "path": "system.security.cryptography.algorithms/4.3.0",
  6556. "files": [
  6557. ".nupkg.metadata",
  6558. ".signature.p7s",
  6559. "ThirdPartyNotices.txt",
  6560. "dotnet_library_license.txt",
  6561. "lib/MonoAndroid10/_._",
  6562. "lib/MonoTouch10/_._",
  6563. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  6564. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  6565. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  6566. "lib/xamarinios10/_._",
  6567. "lib/xamarinmac20/_._",
  6568. "lib/xamarintvos10/_._",
  6569. "lib/xamarinwatchos10/_._",
  6570. "ref/MonoAndroid10/_._",
  6571. "ref/MonoTouch10/_._",
  6572. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  6573. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  6574. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  6575. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  6576. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  6577. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6578. "ref/xamarinios10/_._",
  6579. "ref/xamarinmac20/_._",
  6580. "ref/xamarintvos10/_._",
  6581. "ref/xamarinwatchos10/_._",
  6582. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6583. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6584. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  6585. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  6586. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  6587. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  6588. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6589. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  6590. "system.security.cryptography.algorithms.nuspec"
  6591. ]
  6592. },
  6593. "System.Security.Cryptography.Cng/4.5.0": {
  6594. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  6595. "type": "package",
  6596. "path": "system.security.cryptography.cng/4.5.0",
  6597. "files": [
  6598. ".nupkg.metadata",
  6599. ".signature.p7s",
  6600. "LICENSE.TXT",
  6601. "THIRD-PARTY-NOTICES.TXT",
  6602. "lib/MonoAndroid10/_._",
  6603. "lib/MonoTouch10/_._",
  6604. "lib/net46/System.Security.Cryptography.Cng.dll",
  6605. "lib/net461/System.Security.Cryptography.Cng.dll",
  6606. "lib/net462/System.Security.Cryptography.Cng.dll",
  6607. "lib/net47/System.Security.Cryptography.Cng.dll",
  6608. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6609. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6610. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6611. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6612. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6613. "lib/uap10.0.16299/_._",
  6614. "lib/xamarinios10/_._",
  6615. "lib/xamarinmac20/_._",
  6616. "lib/xamarintvos10/_._",
  6617. "lib/xamarinwatchos10/_._",
  6618. "ref/MonoAndroid10/_._",
  6619. "ref/MonoTouch10/_._",
  6620. "ref/net46/System.Security.Cryptography.Cng.dll",
  6621. "ref/net461/System.Security.Cryptography.Cng.dll",
  6622. "ref/net461/System.Security.Cryptography.Cng.xml",
  6623. "ref/net462/System.Security.Cryptography.Cng.dll",
  6624. "ref/net462/System.Security.Cryptography.Cng.xml",
  6625. "ref/net47/System.Security.Cryptography.Cng.dll",
  6626. "ref/net47/System.Security.Cryptography.Cng.xml",
  6627. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6628. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  6629. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6630. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  6631. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6632. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6633. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6634. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6635. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  6636. "ref/uap10.0.16299/_._",
  6637. "ref/xamarinios10/_._",
  6638. "ref/xamarinmac20/_._",
  6639. "ref/xamarintvos10/_._",
  6640. "ref/xamarinwatchos10/_._",
  6641. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  6642. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  6643. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  6644. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  6645. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6646. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6647. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6648. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6649. "runtimes/win/lib/uap10.0.16299/_._",
  6650. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  6651. "system.security.cryptography.cng.nuspec",
  6652. "useSharedDesignerContext.txt",
  6653. "version.txt"
  6654. ]
  6655. },
  6656. "System.Security.Cryptography.Csp/4.3.0": {
  6657. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  6658. "type": "package",
  6659. "path": "system.security.cryptography.csp/4.3.0",
  6660. "files": [
  6661. ".nupkg.metadata",
  6662. ".signature.p7s",
  6663. "ThirdPartyNotices.txt",
  6664. "dotnet_library_license.txt",
  6665. "lib/MonoAndroid10/_._",
  6666. "lib/MonoTouch10/_._",
  6667. "lib/net46/System.Security.Cryptography.Csp.dll",
  6668. "lib/xamarinios10/_._",
  6669. "lib/xamarinmac20/_._",
  6670. "lib/xamarintvos10/_._",
  6671. "lib/xamarinwatchos10/_._",
  6672. "ref/MonoAndroid10/_._",
  6673. "ref/MonoTouch10/_._",
  6674. "ref/net46/System.Security.Cryptography.Csp.dll",
  6675. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6676. "ref/xamarinios10/_._",
  6677. "ref/xamarinmac20/_._",
  6678. "ref/xamarintvos10/_._",
  6679. "ref/xamarinwatchos10/_._",
  6680. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6681. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  6682. "runtimes/win/lib/netcore50/_._",
  6683. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6684. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  6685. "system.security.cryptography.csp.nuspec"
  6686. ]
  6687. },
  6688. "System.Security.Cryptography.Encoding/4.3.0": {
  6689. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  6690. "type": "package",
  6691. "path": "system.security.cryptography.encoding/4.3.0",
  6692. "files": [
  6693. ".nupkg.metadata",
  6694. ".signature.p7s",
  6695. "ThirdPartyNotices.txt",
  6696. "dotnet_library_license.txt",
  6697. "lib/MonoAndroid10/_._",
  6698. "lib/MonoTouch10/_._",
  6699. "lib/net46/System.Security.Cryptography.Encoding.dll",
  6700. "lib/xamarinios10/_._",
  6701. "lib/xamarinmac20/_._",
  6702. "lib/xamarintvos10/_._",
  6703. "lib/xamarinwatchos10/_._",
  6704. "ref/MonoAndroid10/_._",
  6705. "ref/MonoTouch10/_._",
  6706. "ref/net46/System.Security.Cryptography.Encoding.dll",
  6707. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6708. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  6709. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  6710. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  6711. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  6712. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  6713. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  6714. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  6715. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  6716. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  6717. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  6718. "ref/xamarinios10/_._",
  6719. "ref/xamarinmac20/_._",
  6720. "ref/xamarintvos10/_._",
  6721. "ref/xamarinwatchos10/_._",
  6722. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6723. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  6724. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6725. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  6726. "system.security.cryptography.encoding.nuspec"
  6727. ]
  6728. },
  6729. "System.Security.Cryptography.OpenSsl/4.3.0": {
  6730. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  6731. "type": "package",
  6732. "path": "system.security.cryptography.openssl/4.3.0",
  6733. "files": [
  6734. ".nupkg.metadata",
  6735. ".signature.p7s",
  6736. "ThirdPartyNotices.txt",
  6737. "dotnet_library_license.txt",
  6738. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6739. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6740. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6741. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6742. "system.security.cryptography.openssl.nuspec"
  6743. ]
  6744. },
  6745. "System.Security.Cryptography.Primitives/4.3.0": {
  6746. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  6747. "type": "package",
  6748. "path": "system.security.cryptography.primitives/4.3.0",
  6749. "files": [
  6750. ".nupkg.metadata",
  6751. ".signature.p7s",
  6752. "ThirdPartyNotices.txt",
  6753. "dotnet_library_license.txt",
  6754. "lib/MonoAndroid10/_._",
  6755. "lib/MonoTouch10/_._",
  6756. "lib/net46/System.Security.Cryptography.Primitives.dll",
  6757. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6758. "lib/xamarinios10/_._",
  6759. "lib/xamarinmac20/_._",
  6760. "lib/xamarintvos10/_._",
  6761. "lib/xamarinwatchos10/_._",
  6762. "ref/MonoAndroid10/_._",
  6763. "ref/MonoTouch10/_._",
  6764. "ref/net46/System.Security.Cryptography.Primitives.dll",
  6765. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6766. "ref/xamarinios10/_._",
  6767. "ref/xamarinmac20/_._",
  6768. "ref/xamarintvos10/_._",
  6769. "ref/xamarinwatchos10/_._",
  6770. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  6771. "system.security.cryptography.primitives.nuspec"
  6772. ]
  6773. },
  6774. "System.Security.Cryptography.ProtectedData/4.7.0": {
  6775. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  6776. "type": "package",
  6777. "path": "system.security.cryptography.protecteddata/4.7.0",
  6778. "files": [
  6779. ".nupkg.metadata",
  6780. ".signature.p7s",
  6781. "LICENSE.TXT",
  6782. "THIRD-PARTY-NOTICES.TXT",
  6783. "lib/MonoAndroid10/_._",
  6784. "lib/MonoTouch10/_._",
  6785. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6786. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6787. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  6788. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6789. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6790. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6791. "lib/xamarinios10/_._",
  6792. "lib/xamarinmac20/_._",
  6793. "lib/xamarintvos10/_._",
  6794. "lib/xamarinwatchos10/_._",
  6795. "ref/MonoAndroid10/_._",
  6796. "ref/MonoTouch10/_._",
  6797. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  6798. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  6799. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  6800. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6801. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6802. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6803. "ref/xamarinios10/_._",
  6804. "ref/xamarinmac20/_._",
  6805. "ref/xamarintvos10/_._",
  6806. "ref/xamarinwatchos10/_._",
  6807. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6808. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6809. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  6810. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6811. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6812. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6813. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  6814. "system.security.cryptography.protecteddata.nuspec",
  6815. "useSharedDesignerContext.txt",
  6816. "version.txt"
  6817. ]
  6818. },
  6819. "System.Security.Cryptography.X509Certificates/4.3.0": {
  6820. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  6821. "type": "package",
  6822. "path": "system.security.cryptography.x509certificates/4.3.0",
  6823. "files": [
  6824. ".nupkg.metadata",
  6825. ".signature.p7s",
  6826. "ThirdPartyNotices.txt",
  6827. "dotnet_library_license.txt",
  6828. "lib/MonoAndroid10/_._",
  6829. "lib/MonoTouch10/_._",
  6830. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6831. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6832. "lib/xamarinios10/_._",
  6833. "lib/xamarinmac20/_._",
  6834. "lib/xamarintvos10/_._",
  6835. "lib/xamarinwatchos10/_._",
  6836. "ref/MonoAndroid10/_._",
  6837. "ref/MonoTouch10/_._",
  6838. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  6839. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  6840. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  6841. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  6842. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  6843. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  6844. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  6845. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  6846. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  6847. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  6848. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  6849. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6850. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6851. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  6852. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  6853. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  6854. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  6855. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  6856. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  6857. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  6858. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  6859. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  6860. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6861. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6862. "ref/xamarinios10/_._",
  6863. "ref/xamarinmac20/_._",
  6864. "ref/xamarintvos10/_._",
  6865. "ref/xamarinwatchos10/_._",
  6866. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6867. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6868. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6869. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  6870. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6871. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  6872. "system.security.cryptography.x509certificates.nuspec"
  6873. ]
  6874. },
  6875. "System.Security.Permissions/4.7.0": {
  6876. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  6877. "type": "package",
  6878. "path": "system.security.permissions/4.7.0",
  6879. "files": [
  6880. ".nupkg.metadata",
  6881. ".signature.p7s",
  6882. "LICENSE.TXT",
  6883. "THIRD-PARTY-NOTICES.TXT",
  6884. "lib/net461/System.Security.Permissions.dll",
  6885. "lib/net461/System.Security.Permissions.xml",
  6886. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  6887. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  6888. "lib/netstandard2.0/System.Security.Permissions.dll",
  6889. "lib/netstandard2.0/System.Security.Permissions.xml",
  6890. "ref/net461/System.Security.Permissions.dll",
  6891. "ref/net461/System.Security.Permissions.xml",
  6892. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  6893. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  6894. "ref/netstandard2.0/System.Security.Permissions.dll",
  6895. "ref/netstandard2.0/System.Security.Permissions.xml",
  6896. "system.security.permissions.4.7.0.nupkg.sha512",
  6897. "system.security.permissions.nuspec",
  6898. "useSharedDesignerContext.txt",
  6899. "version.txt"
  6900. ]
  6901. },
  6902. "System.Security.Principal.Windows/4.7.0": {
  6903. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  6904. "type": "package",
  6905. "path": "system.security.principal.windows/4.7.0",
  6906. "files": [
  6907. ".nupkg.metadata",
  6908. ".signature.p7s",
  6909. "LICENSE.TXT",
  6910. "THIRD-PARTY-NOTICES.TXT",
  6911. "lib/net46/System.Security.Principal.Windows.dll",
  6912. "lib/net461/System.Security.Principal.Windows.dll",
  6913. "lib/net461/System.Security.Principal.Windows.xml",
  6914. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6915. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  6916. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  6917. "lib/uap10.0.16299/_._",
  6918. "ref/net46/System.Security.Principal.Windows.dll",
  6919. "ref/net461/System.Security.Principal.Windows.dll",
  6920. "ref/net461/System.Security.Principal.Windows.xml",
  6921. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  6922. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  6923. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  6924. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  6925. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  6926. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  6927. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  6928. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  6929. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  6930. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  6931. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  6932. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  6933. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  6934. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  6935. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  6936. "ref/uap10.0.16299/_._",
  6937. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6938. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6939. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6940. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6941. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  6942. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  6943. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  6944. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6945. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6946. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6947. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6948. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6949. "runtimes/win/lib/uap10.0.16299/_._",
  6950. "system.security.principal.windows.4.7.0.nupkg.sha512",
  6951. "system.security.principal.windows.nuspec",
  6952. "useSharedDesignerContext.txt",
  6953. "version.txt"
  6954. ]
  6955. },
  6956. "System.Text.Encoding/4.3.0": {
  6957. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  6958. "type": "package",
  6959. "path": "system.text.encoding/4.3.0",
  6960. "files": [
  6961. ".nupkg.metadata",
  6962. ".signature.p7s",
  6963. "ThirdPartyNotices.txt",
  6964. "dotnet_library_license.txt",
  6965. "lib/MonoAndroid10/_._",
  6966. "lib/MonoTouch10/_._",
  6967. "lib/net45/_._",
  6968. "lib/portable-net45+win8+wp8+wpa81/_._",
  6969. "lib/win8/_._",
  6970. "lib/wp80/_._",
  6971. "lib/wpa81/_._",
  6972. "lib/xamarinios10/_._",
  6973. "lib/xamarinmac20/_._",
  6974. "lib/xamarintvos10/_._",
  6975. "lib/xamarinwatchos10/_._",
  6976. "ref/MonoAndroid10/_._",
  6977. "ref/MonoTouch10/_._",
  6978. "ref/net45/_._",
  6979. "ref/netcore50/System.Text.Encoding.dll",
  6980. "ref/netcore50/System.Text.Encoding.xml",
  6981. "ref/netcore50/de/System.Text.Encoding.xml",
  6982. "ref/netcore50/es/System.Text.Encoding.xml",
  6983. "ref/netcore50/fr/System.Text.Encoding.xml",
  6984. "ref/netcore50/it/System.Text.Encoding.xml",
  6985. "ref/netcore50/ja/System.Text.Encoding.xml",
  6986. "ref/netcore50/ko/System.Text.Encoding.xml",
  6987. "ref/netcore50/ru/System.Text.Encoding.xml",
  6988. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  6989. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  6990. "ref/netstandard1.0/System.Text.Encoding.dll",
  6991. "ref/netstandard1.0/System.Text.Encoding.xml",
  6992. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  6993. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  6994. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  6995. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  6996. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  6997. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  6998. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  6999. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7000. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7001. "ref/netstandard1.3/System.Text.Encoding.dll",
  7002. "ref/netstandard1.3/System.Text.Encoding.xml",
  7003. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7004. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7005. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7006. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7007. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7008. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7009. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7010. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7011. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7012. "ref/portable-net45+win8+wp8+wpa81/_._",
  7013. "ref/win8/_._",
  7014. "ref/wp80/_._",
  7015. "ref/wpa81/_._",
  7016. "ref/xamarinios10/_._",
  7017. "ref/xamarinmac20/_._",
  7018. "ref/xamarintvos10/_._",
  7019. "ref/xamarinwatchos10/_._",
  7020. "system.text.encoding.4.3.0.nupkg.sha512",
  7021. "system.text.encoding.nuspec"
  7022. ]
  7023. },
  7024. "System.Text.Encoding.CodePages/4.7.0": {
  7025. "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  7026. "type": "package",
  7027. "path": "system.text.encoding.codepages/4.7.0",
  7028. "files": [
  7029. ".nupkg.metadata",
  7030. ".signature.p7s",
  7031. "LICENSE.TXT",
  7032. "THIRD-PARTY-NOTICES.TXT",
  7033. "lib/MonoAndroid10/_._",
  7034. "lib/MonoTouch10/_._",
  7035. "lib/net46/System.Text.Encoding.CodePages.dll",
  7036. "lib/net461/System.Text.Encoding.CodePages.dll",
  7037. "lib/net461/System.Text.Encoding.CodePages.xml",
  7038. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7039. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7040. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7041. "lib/xamarinios10/_._",
  7042. "lib/xamarinmac20/_._",
  7043. "lib/xamarintvos10/_._",
  7044. "lib/xamarinwatchos10/_._",
  7045. "ref/MonoAndroid10/_._",
  7046. "ref/MonoTouch10/_._",
  7047. "ref/xamarinios10/_._",
  7048. "ref/xamarinmac20/_._",
  7049. "ref/xamarintvos10/_._",
  7050. "ref/xamarinwatchos10/_._",
  7051. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7052. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  7053. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7054. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  7055. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7056. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7057. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7058. "system.text.encoding.codepages.4.7.0.nupkg.sha512",
  7059. "system.text.encoding.codepages.nuspec",
  7060. "useSharedDesignerContext.txt",
  7061. "version.txt"
  7062. ]
  7063. },
  7064. "System.Text.Encoding.Extensions/4.3.0": {
  7065. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7066. "type": "package",
  7067. "path": "system.text.encoding.extensions/4.3.0",
  7068. "files": [
  7069. ".nupkg.metadata",
  7070. ".signature.p7s",
  7071. "ThirdPartyNotices.txt",
  7072. "dotnet_library_license.txt",
  7073. "lib/MonoAndroid10/_._",
  7074. "lib/MonoTouch10/_._",
  7075. "lib/net45/_._",
  7076. "lib/portable-net45+win8+wp8+wpa81/_._",
  7077. "lib/win8/_._",
  7078. "lib/wp80/_._",
  7079. "lib/wpa81/_._",
  7080. "lib/xamarinios10/_._",
  7081. "lib/xamarinmac20/_._",
  7082. "lib/xamarintvos10/_._",
  7083. "lib/xamarinwatchos10/_._",
  7084. "ref/MonoAndroid10/_._",
  7085. "ref/MonoTouch10/_._",
  7086. "ref/net45/_._",
  7087. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7088. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7089. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7090. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7091. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7092. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7093. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7094. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7095. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7096. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7097. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7098. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7099. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7100. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7101. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7102. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7103. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7104. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7105. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7106. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7107. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7108. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7109. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7110. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7111. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7112. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7113. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7114. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7115. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7116. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7117. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7118. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7119. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7120. "ref/portable-net45+win8+wp8+wpa81/_._",
  7121. "ref/win8/_._",
  7122. "ref/wp80/_._",
  7123. "ref/wpa81/_._",
  7124. "ref/xamarinios10/_._",
  7125. "ref/xamarinmac20/_._",
  7126. "ref/xamarintvos10/_._",
  7127. "ref/xamarinwatchos10/_._",
  7128. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7129. "system.text.encoding.extensions.nuspec"
  7130. ]
  7131. },
  7132. "System.Text.Json/4.7.1": {
  7133. "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
  7134. "type": "package",
  7135. "path": "system.text.json/4.7.1",
  7136. "files": [
  7137. ".nupkg.metadata",
  7138. ".signature.p7s",
  7139. "Icon.png",
  7140. "LICENSE.TXT",
  7141. "THIRD-PARTY-NOTICES.TXT",
  7142. "lib/net461/System.Text.Json.dll",
  7143. "lib/net461/System.Text.Json.xml",
  7144. "lib/netcoreapp3.0/System.Text.Json.dll",
  7145. "lib/netcoreapp3.0/System.Text.Json.xml",
  7146. "lib/netstandard2.0/System.Text.Json.dll",
  7147. "lib/netstandard2.0/System.Text.Json.xml",
  7148. "system.text.json.4.7.1.nupkg.sha512",
  7149. "system.text.json.nuspec",
  7150. "useSharedDesignerContext.txt",
  7151. "version.txt"
  7152. ]
  7153. },
  7154. "System.Text.RegularExpressions/4.3.0": {
  7155. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7156. "type": "package",
  7157. "path": "system.text.regularexpressions/4.3.0",
  7158. "files": [
  7159. ".nupkg.metadata",
  7160. ".signature.p7s",
  7161. "ThirdPartyNotices.txt",
  7162. "dotnet_library_license.txt",
  7163. "lib/MonoAndroid10/_._",
  7164. "lib/MonoTouch10/_._",
  7165. "lib/net45/_._",
  7166. "lib/net463/System.Text.RegularExpressions.dll",
  7167. "lib/netcore50/System.Text.RegularExpressions.dll",
  7168. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7169. "lib/portable-net45+win8+wp8+wpa81/_._",
  7170. "lib/win8/_._",
  7171. "lib/wp80/_._",
  7172. "lib/wpa81/_._",
  7173. "lib/xamarinios10/_._",
  7174. "lib/xamarinmac20/_._",
  7175. "lib/xamarintvos10/_._",
  7176. "lib/xamarinwatchos10/_._",
  7177. "ref/MonoAndroid10/_._",
  7178. "ref/MonoTouch10/_._",
  7179. "ref/net45/_._",
  7180. "ref/net463/System.Text.RegularExpressions.dll",
  7181. "ref/netcore50/System.Text.RegularExpressions.dll",
  7182. "ref/netcore50/System.Text.RegularExpressions.xml",
  7183. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7184. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7185. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7186. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7187. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7188. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7189. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7190. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7191. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7192. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7193. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7194. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7195. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7196. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7197. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7198. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7199. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7200. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7201. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7202. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7203. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7204. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7205. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7206. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7207. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7208. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7209. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7210. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7211. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7212. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7213. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7214. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7215. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7216. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7217. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7218. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7219. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7220. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7221. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7222. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7223. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7224. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7225. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7226. "ref/portable-net45+win8+wp8+wpa81/_._",
  7227. "ref/win8/_._",
  7228. "ref/wp80/_._",
  7229. "ref/wpa81/_._",
  7230. "ref/xamarinios10/_._",
  7231. "ref/xamarinmac20/_._",
  7232. "ref/xamarintvos10/_._",
  7233. "ref/xamarinwatchos10/_._",
  7234. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7235. "system.text.regularexpressions.nuspec"
  7236. ]
  7237. },
  7238. "System.Threading/4.3.0": {
  7239. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7240. "type": "package",
  7241. "path": "system.threading/4.3.0",
  7242. "files": [
  7243. ".nupkg.metadata",
  7244. ".signature.p7s",
  7245. "ThirdPartyNotices.txt",
  7246. "dotnet_library_license.txt",
  7247. "lib/MonoAndroid10/_._",
  7248. "lib/MonoTouch10/_._",
  7249. "lib/net45/_._",
  7250. "lib/netcore50/System.Threading.dll",
  7251. "lib/netstandard1.3/System.Threading.dll",
  7252. "lib/portable-net45+win8+wp8+wpa81/_._",
  7253. "lib/win8/_._",
  7254. "lib/wp80/_._",
  7255. "lib/wpa81/_._",
  7256. "lib/xamarinios10/_._",
  7257. "lib/xamarinmac20/_._",
  7258. "lib/xamarintvos10/_._",
  7259. "lib/xamarinwatchos10/_._",
  7260. "ref/MonoAndroid10/_._",
  7261. "ref/MonoTouch10/_._",
  7262. "ref/net45/_._",
  7263. "ref/netcore50/System.Threading.dll",
  7264. "ref/netcore50/System.Threading.xml",
  7265. "ref/netcore50/de/System.Threading.xml",
  7266. "ref/netcore50/es/System.Threading.xml",
  7267. "ref/netcore50/fr/System.Threading.xml",
  7268. "ref/netcore50/it/System.Threading.xml",
  7269. "ref/netcore50/ja/System.Threading.xml",
  7270. "ref/netcore50/ko/System.Threading.xml",
  7271. "ref/netcore50/ru/System.Threading.xml",
  7272. "ref/netcore50/zh-hans/System.Threading.xml",
  7273. "ref/netcore50/zh-hant/System.Threading.xml",
  7274. "ref/netstandard1.0/System.Threading.dll",
  7275. "ref/netstandard1.0/System.Threading.xml",
  7276. "ref/netstandard1.0/de/System.Threading.xml",
  7277. "ref/netstandard1.0/es/System.Threading.xml",
  7278. "ref/netstandard1.0/fr/System.Threading.xml",
  7279. "ref/netstandard1.0/it/System.Threading.xml",
  7280. "ref/netstandard1.0/ja/System.Threading.xml",
  7281. "ref/netstandard1.0/ko/System.Threading.xml",
  7282. "ref/netstandard1.0/ru/System.Threading.xml",
  7283. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7284. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7285. "ref/netstandard1.3/System.Threading.dll",
  7286. "ref/netstandard1.3/System.Threading.xml",
  7287. "ref/netstandard1.3/de/System.Threading.xml",
  7288. "ref/netstandard1.3/es/System.Threading.xml",
  7289. "ref/netstandard1.3/fr/System.Threading.xml",
  7290. "ref/netstandard1.3/it/System.Threading.xml",
  7291. "ref/netstandard1.3/ja/System.Threading.xml",
  7292. "ref/netstandard1.3/ko/System.Threading.xml",
  7293. "ref/netstandard1.3/ru/System.Threading.xml",
  7294. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7295. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7296. "ref/portable-net45+win8+wp8+wpa81/_._",
  7297. "ref/win8/_._",
  7298. "ref/wp80/_._",
  7299. "ref/wpa81/_._",
  7300. "ref/xamarinios10/_._",
  7301. "ref/xamarinmac20/_._",
  7302. "ref/xamarintvos10/_._",
  7303. "ref/xamarinwatchos10/_._",
  7304. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7305. "system.threading.4.3.0.nupkg.sha512",
  7306. "system.threading.nuspec"
  7307. ]
  7308. },
  7309. "System.Threading.Tasks/4.3.0": {
  7310. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7311. "type": "package",
  7312. "path": "system.threading.tasks/4.3.0",
  7313. "files": [
  7314. ".nupkg.metadata",
  7315. ".signature.p7s",
  7316. "ThirdPartyNotices.txt",
  7317. "dotnet_library_license.txt",
  7318. "lib/MonoAndroid10/_._",
  7319. "lib/MonoTouch10/_._",
  7320. "lib/net45/_._",
  7321. "lib/portable-net45+win8+wp8+wpa81/_._",
  7322. "lib/win8/_._",
  7323. "lib/wp80/_._",
  7324. "lib/wpa81/_._",
  7325. "lib/xamarinios10/_._",
  7326. "lib/xamarinmac20/_._",
  7327. "lib/xamarintvos10/_._",
  7328. "lib/xamarinwatchos10/_._",
  7329. "ref/MonoAndroid10/_._",
  7330. "ref/MonoTouch10/_._",
  7331. "ref/net45/_._",
  7332. "ref/netcore50/System.Threading.Tasks.dll",
  7333. "ref/netcore50/System.Threading.Tasks.xml",
  7334. "ref/netcore50/de/System.Threading.Tasks.xml",
  7335. "ref/netcore50/es/System.Threading.Tasks.xml",
  7336. "ref/netcore50/fr/System.Threading.Tasks.xml",
  7337. "ref/netcore50/it/System.Threading.Tasks.xml",
  7338. "ref/netcore50/ja/System.Threading.Tasks.xml",
  7339. "ref/netcore50/ko/System.Threading.Tasks.xml",
  7340. "ref/netcore50/ru/System.Threading.Tasks.xml",
  7341. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  7342. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  7343. "ref/netstandard1.0/System.Threading.Tasks.dll",
  7344. "ref/netstandard1.0/System.Threading.Tasks.xml",
  7345. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  7346. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  7347. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  7348. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  7349. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  7350. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  7351. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  7352. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  7353. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  7354. "ref/netstandard1.3/System.Threading.Tasks.dll",
  7355. "ref/netstandard1.3/System.Threading.Tasks.xml",
  7356. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  7357. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  7358. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  7359. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  7360. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  7361. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  7362. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  7363. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  7364. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  7365. "ref/portable-net45+win8+wp8+wpa81/_._",
  7366. "ref/win8/_._",
  7367. "ref/wp80/_._",
  7368. "ref/wpa81/_._",
  7369. "ref/xamarinios10/_._",
  7370. "ref/xamarinmac20/_._",
  7371. "ref/xamarintvos10/_._",
  7372. "ref/xamarinwatchos10/_._",
  7373. "system.threading.tasks.4.3.0.nupkg.sha512",
  7374. "system.threading.tasks.nuspec"
  7375. ]
  7376. },
  7377. "System.Threading.Tasks.Extensions/4.3.0": {
  7378. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  7379. "type": "package",
  7380. "path": "system.threading.tasks.extensions/4.3.0",
  7381. "files": [
  7382. ".nupkg.metadata",
  7383. ".signature.p7s",
  7384. "ThirdPartyNotices.txt",
  7385. "dotnet_library_license.txt",
  7386. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  7387. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  7388. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  7389. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  7390. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  7391. "system.threading.tasks.extensions.nuspec"
  7392. ]
  7393. },
  7394. "System.Threading.Timer/4.3.0": {
  7395. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  7396. "type": "package",
  7397. "path": "system.threading.timer/4.3.0",
  7398. "files": [
  7399. ".nupkg.metadata",
  7400. ".signature.p7s",
  7401. "ThirdPartyNotices.txt",
  7402. "dotnet_library_license.txt",
  7403. "lib/MonoAndroid10/_._",
  7404. "lib/MonoTouch10/_._",
  7405. "lib/net451/_._",
  7406. "lib/portable-net451+win81+wpa81/_._",
  7407. "lib/win81/_._",
  7408. "lib/wpa81/_._",
  7409. "lib/xamarinios10/_._",
  7410. "lib/xamarinmac20/_._",
  7411. "lib/xamarintvos10/_._",
  7412. "lib/xamarinwatchos10/_._",
  7413. "ref/MonoAndroid10/_._",
  7414. "ref/MonoTouch10/_._",
  7415. "ref/net451/_._",
  7416. "ref/netcore50/System.Threading.Timer.dll",
  7417. "ref/netcore50/System.Threading.Timer.xml",
  7418. "ref/netcore50/de/System.Threading.Timer.xml",
  7419. "ref/netcore50/es/System.Threading.Timer.xml",
  7420. "ref/netcore50/fr/System.Threading.Timer.xml",
  7421. "ref/netcore50/it/System.Threading.Timer.xml",
  7422. "ref/netcore50/ja/System.Threading.Timer.xml",
  7423. "ref/netcore50/ko/System.Threading.Timer.xml",
  7424. "ref/netcore50/ru/System.Threading.Timer.xml",
  7425. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  7426. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  7427. "ref/netstandard1.2/System.Threading.Timer.dll",
  7428. "ref/netstandard1.2/System.Threading.Timer.xml",
  7429. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  7430. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  7431. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  7432. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  7433. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  7434. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  7435. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  7436. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  7437. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  7438. "ref/portable-net451+win81+wpa81/_._",
  7439. "ref/win81/_._",
  7440. "ref/wpa81/_._",
  7441. "ref/xamarinios10/_._",
  7442. "ref/xamarinmac20/_._",
  7443. "ref/xamarintvos10/_._",
  7444. "ref/xamarinwatchos10/_._",
  7445. "system.threading.timer.4.3.0.nupkg.sha512",
  7446. "system.threading.timer.nuspec"
  7447. ]
  7448. },
  7449. "System.Windows.Extensions/4.7.0": {
  7450. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  7451. "type": "package",
  7452. "path": "system.windows.extensions/4.7.0",
  7453. "files": [
  7454. ".nupkg.metadata",
  7455. ".signature.p7s",
  7456. "LICENSE.TXT",
  7457. "THIRD-PARTY-NOTICES.TXT",
  7458. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  7459. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  7460. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  7461. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  7462. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  7463. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  7464. "system.windows.extensions.4.7.0.nupkg.sha512",
  7465. "system.windows.extensions.nuspec",
  7466. "useSharedDesignerContext.txt",
  7467. "version.txt"
  7468. ]
  7469. },
  7470. "System.Xml.ReaderWriter/4.3.0": {
  7471. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  7472. "type": "package",
  7473. "path": "system.xml.readerwriter/4.3.0",
  7474. "files": [
  7475. ".nupkg.metadata",
  7476. ".signature.p7s",
  7477. "ThirdPartyNotices.txt",
  7478. "dotnet_library_license.txt",
  7479. "lib/MonoAndroid10/_._",
  7480. "lib/MonoTouch10/_._",
  7481. "lib/net45/_._",
  7482. "lib/net46/System.Xml.ReaderWriter.dll",
  7483. "lib/netcore50/System.Xml.ReaderWriter.dll",
  7484. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  7485. "lib/portable-net45+win8+wp8+wpa81/_._",
  7486. "lib/win8/_._",
  7487. "lib/wp80/_._",
  7488. "lib/wpa81/_._",
  7489. "lib/xamarinios10/_._",
  7490. "lib/xamarinmac20/_._",
  7491. "lib/xamarintvos10/_._",
  7492. "lib/xamarinwatchos10/_._",
  7493. "ref/MonoAndroid10/_._",
  7494. "ref/MonoTouch10/_._",
  7495. "ref/net45/_._",
  7496. "ref/net46/System.Xml.ReaderWriter.dll",
  7497. "ref/netcore50/System.Xml.ReaderWriter.dll",
  7498. "ref/netcore50/System.Xml.ReaderWriter.xml",
  7499. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  7500. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  7501. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  7502. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  7503. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  7504. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  7505. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  7506. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  7507. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  7508. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  7509. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  7510. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  7511. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  7512. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  7513. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  7514. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  7515. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  7516. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  7517. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  7518. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  7519. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  7520. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  7521. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  7522. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  7523. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  7524. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  7525. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  7526. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  7527. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  7528. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  7529. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  7530. "ref/portable-net45+win8+wp8+wpa81/_._",
  7531. "ref/win8/_._",
  7532. "ref/wp80/_._",
  7533. "ref/wpa81/_._",
  7534. "ref/xamarinios10/_._",
  7535. "ref/xamarinmac20/_._",
  7536. "ref/xamarintvos10/_._",
  7537. "ref/xamarinwatchos10/_._",
  7538. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  7539. "system.xml.readerwriter.nuspec"
  7540. ]
  7541. },
  7542. "System.Xml.XDocument/4.3.0": {
  7543. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  7544. "type": "package",
  7545. "path": "system.xml.xdocument/4.3.0",
  7546. "files": [
  7547. ".nupkg.metadata",
  7548. ".signature.p7s",
  7549. "ThirdPartyNotices.txt",
  7550. "dotnet_library_license.txt",
  7551. "lib/MonoAndroid10/_._",
  7552. "lib/MonoTouch10/_._",
  7553. "lib/net45/_._",
  7554. "lib/netcore50/System.Xml.XDocument.dll",
  7555. "lib/netstandard1.3/System.Xml.XDocument.dll",
  7556. "lib/portable-net45+win8+wp8+wpa81/_._",
  7557. "lib/win8/_._",
  7558. "lib/wp80/_._",
  7559. "lib/wpa81/_._",
  7560. "lib/xamarinios10/_._",
  7561. "lib/xamarinmac20/_._",
  7562. "lib/xamarintvos10/_._",
  7563. "lib/xamarinwatchos10/_._",
  7564. "ref/MonoAndroid10/_._",
  7565. "ref/MonoTouch10/_._",
  7566. "ref/net45/_._",
  7567. "ref/netcore50/System.Xml.XDocument.dll",
  7568. "ref/netcore50/System.Xml.XDocument.xml",
  7569. "ref/netcore50/de/System.Xml.XDocument.xml",
  7570. "ref/netcore50/es/System.Xml.XDocument.xml",
  7571. "ref/netcore50/fr/System.Xml.XDocument.xml",
  7572. "ref/netcore50/it/System.Xml.XDocument.xml",
  7573. "ref/netcore50/ja/System.Xml.XDocument.xml",
  7574. "ref/netcore50/ko/System.Xml.XDocument.xml",
  7575. "ref/netcore50/ru/System.Xml.XDocument.xml",
  7576. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  7577. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  7578. "ref/netstandard1.0/System.Xml.XDocument.dll",
  7579. "ref/netstandard1.0/System.Xml.XDocument.xml",
  7580. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  7581. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  7582. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  7583. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  7584. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  7585. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  7586. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  7587. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  7588. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  7589. "ref/netstandard1.3/System.Xml.XDocument.dll",
  7590. "ref/netstandard1.3/System.Xml.XDocument.xml",
  7591. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  7592. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  7593. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  7594. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  7595. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  7596. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  7597. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  7598. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  7599. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  7600. "ref/portable-net45+win8+wp8+wpa81/_._",
  7601. "ref/win8/_._",
  7602. "ref/wp80/_._",
  7603. "ref/wpa81/_._",
  7604. "ref/xamarinios10/_._",
  7605. "ref/xamarinmac20/_._",
  7606. "ref/xamarintvos10/_._",
  7607. "ref/xamarinwatchos10/_._",
  7608. "system.xml.xdocument.4.3.0.nupkg.sha512",
  7609. "system.xml.xdocument.nuspec"
  7610. ]
  7611. },
  7612. "System.Xml.XmlDocument/4.3.0": {
  7613. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  7614. "type": "package",
  7615. "path": "system.xml.xmldocument/4.3.0",
  7616. "files": [
  7617. ".nupkg.metadata",
  7618. ".signature.p7s",
  7619. "ThirdPartyNotices.txt",
  7620. "dotnet_library_license.txt",
  7621. "lib/MonoAndroid10/_._",
  7622. "lib/MonoTouch10/_._",
  7623. "lib/net46/System.Xml.XmlDocument.dll",
  7624. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  7625. "lib/xamarinios10/_._",
  7626. "lib/xamarinmac20/_._",
  7627. "lib/xamarintvos10/_._",
  7628. "lib/xamarinwatchos10/_._",
  7629. "ref/MonoAndroid10/_._",
  7630. "ref/MonoTouch10/_._",
  7631. "ref/net46/System.Xml.XmlDocument.dll",
  7632. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  7633. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  7634. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  7635. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  7636. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  7637. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  7638. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  7639. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  7640. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  7641. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  7642. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  7643. "ref/xamarinios10/_._",
  7644. "ref/xamarinmac20/_._",
  7645. "ref/xamarintvos10/_._",
  7646. "ref/xamarinwatchos10/_._",
  7647. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  7648. "system.xml.xmldocument.nuspec"
  7649. ]
  7650. }
  7651. },
  7652. "projectFileDependencyGroups": {
  7653. "net6.0": [
  7654. "AutoMapper >= 12.0.0",
  7655. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 12.0.0",
  7656. "Autofac >= 6.4.0",
  7657. "Autofac.Extensions.DependencyInjection >= 8.0.0",
  7658. "Serilog.Sinks.File >= 5.0.0",
  7659. "SqlSugarCore >= 5.1.3.32"
  7660. ]
  7661. },
  7662. "packageFolders": {
  7663. "C:\\Users\\Administrator\\.nuget\\packages\\": {}
  7664. },
  7665. "project": {
  7666. "version": "1.0.0",
  7667. "restore": {
  7668. "projectUniqueName": "E:\\OA2023\\OASystem\\OASystem.Domain\\OASystem.Domain.csproj",
  7669. "projectName": "OASystem.Domain",
  7670. "projectPath": "E:\\OA2023\\OASystem\\OASystem.Domain\\OASystem.Domain.csproj",
  7671. "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
  7672. "outputPath": "E:\\OA2023\\OASystem\\OASystem.Domain\\obj\\",
  7673. "projectStyle": "PackageReference",
  7674. "configFilePaths": [
  7675. "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
  7676. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  7677. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  7678. ],
  7679. "originalTargetFrameworks": [
  7680. "net6.0"
  7681. ],
  7682. "sources": {
  7683. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  7684. "https://api.nuget.org/v3/index.json": {}
  7685. },
  7686. "frameworks": {
  7687. "net6.0": {
  7688. "targetAlias": "net6.0",
  7689. "projectReferences": {}
  7690. }
  7691. },
  7692. "warningProperties": {
  7693. "warnAsError": [
  7694. "NU1605"
  7695. ]
  7696. }
  7697. },
  7698. "frameworks": {
  7699. "net6.0": {
  7700. "targetAlias": "net6.0",
  7701. "dependencies": {
  7702. "AutoMapper": {
  7703. "target": "Package",
  7704. "version": "[12.0.0, )"
  7705. },
  7706. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  7707. "target": "Package",
  7708. "version": "[12.0.0, )"
  7709. },
  7710. "Autofac": {
  7711. "target": "Package",
  7712. "version": "[6.4.0, )"
  7713. },
  7714. "Autofac.Extensions.DependencyInjection": {
  7715. "target": "Package",
  7716. "version": "[8.0.0, )"
  7717. },
  7718. "Serilog.Sinks.File": {
  7719. "target": "Package",
  7720. "version": "[5.0.0, )"
  7721. },
  7722. "SqlSugarCore": {
  7723. "target": "Package",
  7724. "version": "[5.1.3.32, )"
  7725. }
  7726. },
  7727. "imports": [
  7728. "net461",
  7729. "net462",
  7730. "net47",
  7731. "net471",
  7732. "net472",
  7733. "net48",
  7734. "net481"
  7735. ],
  7736. "assetTargetFallback": true,
  7737. "warn": true,
  7738. "frameworkReferences": {
  7739. "Microsoft.NETCore.App": {
  7740. "privateAssets": "all"
  7741. }
  7742. },
  7743. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
  7744. }
  7745. }
  7746. }
  7747. }