project.assets.json 318 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765
  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. "OASystem.Domain/1.0.0": {
  2452. "type": "project",
  2453. "framework": ".NETCoreApp,Version=v6.0",
  2454. "dependencies": {
  2455. "AutoMapper": "12.0.0",
  2456. "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.0",
  2457. "Autofac": "6.4.0",
  2458. "Autofac.Extensions.DependencyInjection": "8.0.0",
  2459. "Serilog.Sinks.File": "5.0.0",
  2460. "SqlSugarCore": "5.1.3.32"
  2461. },
  2462. "compile": {
  2463. "bin/placeholder/OASystem.Domain.dll": {}
  2464. },
  2465. "runtime": {
  2466. "bin/placeholder/OASystem.Domain.dll": {}
  2467. }
  2468. }
  2469. }
  2470. },
  2471. "libraries": {
  2472. "Autofac/6.4.0": {
  2473. "sha512": "tkFxl6wAPuwVhrlN8wuNADnd+k2tv4ReP7ZZSL0vjfcN0RcfC9v25ogxK6b03HC7D4NwWjSLf1G/zTG8Bw43wQ==",
  2474. "type": "package",
  2475. "path": "autofac/6.4.0",
  2476. "files": [
  2477. ".nupkg.metadata",
  2478. ".signature.p7s",
  2479. "README.md",
  2480. "autofac.6.4.0.nupkg.sha512",
  2481. "autofac.nuspec",
  2482. "icon.png",
  2483. "lib/net5.0/Autofac.dll",
  2484. "lib/net5.0/Autofac.xml",
  2485. "lib/net6.0/Autofac.dll",
  2486. "lib/net6.0/Autofac.xml",
  2487. "lib/netstandard2.0/Autofac.dll",
  2488. "lib/netstandard2.0/Autofac.xml",
  2489. "lib/netstandard2.1/Autofac.dll",
  2490. "lib/netstandard2.1/Autofac.xml"
  2491. ]
  2492. },
  2493. "Autofac.Extensions.DependencyInjection/8.0.0": {
  2494. "sha512": "nGrXNpQX2FiZpIBydK9cxZnnoqP/cUd3k/53uRERYEqLtWzKtE15R6L+j5q5ax5Rv/+3wAIkOaPePkahfqrwjg==",
  2495. "type": "package",
  2496. "path": "autofac.extensions.dependencyinjection/8.0.0",
  2497. "files": [
  2498. ".nupkg.metadata",
  2499. ".signature.p7s",
  2500. "autofac.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  2501. "autofac.extensions.dependencyinjection.nuspec",
  2502. "icon.png",
  2503. "lib/net5.0/Autofac.Extensions.DependencyInjection.dll",
  2504. "lib/net5.0/Autofac.Extensions.DependencyInjection.xml",
  2505. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll",
  2506. "lib/net6.0/Autofac.Extensions.DependencyInjection.xml",
  2507. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  2508. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  2509. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  2510. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  2511. ]
  2512. },
  2513. "AutoMapper/12.0.0": {
  2514. "sha512": "0Rmg0zI5AFu1O/y//o9VGyhxKjhggWpk9mOA1tp0DEVx40c61bs+lnQv+0jUq8XbniF7FKgIVvI1perqiMtLrA==",
  2515. "type": "package",
  2516. "path": "automapper/12.0.0",
  2517. "files": [
  2518. ".nupkg.metadata",
  2519. ".signature.p7s",
  2520. "README.md",
  2521. "automapper.12.0.0.nupkg.sha512",
  2522. "automapper.nuspec",
  2523. "icon.png",
  2524. "lib/netstandard2.1/AutoMapper.dll",
  2525. "lib/netstandard2.1/AutoMapper.xml"
  2526. ]
  2527. },
  2528. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.0": {
  2529. "sha512": "XCJ4E3oKrbRl1qY9Mr+7uyC0xZj1+bqQjmQRWTiTKiVuuXTny+7YFWHi20tPjwkMukLbicN6yGlDy5PZ4wyi1w==",
  2530. "type": "package",
  2531. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.0",
  2532. "files": [
  2533. ".nupkg.metadata",
  2534. ".signature.p7s",
  2535. "README.md",
  2536. "automapper.extensions.microsoft.dependencyinjection.12.0.0.nupkg.sha512",
  2537. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2538. "icon.png",
  2539. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2540. ]
  2541. },
  2542. "BouncyCastle.NetCore/1.8.5": {
  2543. "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  2544. "type": "package",
  2545. "path": "bouncycastle.netcore/1.8.5",
  2546. "files": [
  2547. ".nupkg.metadata",
  2548. ".signature.p7s",
  2549. "bouncycastle.netcore.1.8.5.nupkg.sha512",
  2550. "bouncycastle.netcore.nuspec",
  2551. "lib/Mono/BouncyCastle.Crypto.dll",
  2552. "lib/Mono/BouncyCastle.Crypto.xml",
  2553. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2554. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2555. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2556. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2557. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2558. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2559. "lib/net20/BouncyCastle.Crypto.dll",
  2560. "lib/net20/BouncyCastle.Crypto.xml",
  2561. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2562. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2563. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2564. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2565. ]
  2566. },
  2567. "Google.Protobuf/3.19.4": {
  2568. "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==",
  2569. "type": "package",
  2570. "path": "google.protobuf/3.19.4",
  2571. "files": [
  2572. ".nupkg.metadata",
  2573. ".signature.p7s",
  2574. "google.protobuf.3.19.4.nupkg.sha512",
  2575. "google.protobuf.nuspec",
  2576. "lib/net45/Google.Protobuf.dll",
  2577. "lib/net45/Google.Protobuf.pdb",
  2578. "lib/net45/Google.Protobuf.xml",
  2579. "lib/net5.0/Google.Protobuf.dll",
  2580. "lib/net5.0/Google.Protobuf.pdb",
  2581. "lib/net5.0/Google.Protobuf.xml",
  2582. "lib/netstandard1.1/Google.Protobuf.dll",
  2583. "lib/netstandard1.1/Google.Protobuf.pdb",
  2584. "lib/netstandard1.1/Google.Protobuf.xml",
  2585. "lib/netstandard2.0/Google.Protobuf.dll",
  2586. "lib/netstandard2.0/Google.Protobuf.pdb",
  2587. "lib/netstandard2.0/Google.Protobuf.xml"
  2588. ]
  2589. },
  2590. "K4os.Compression.LZ4/1.2.6": {
  2591. "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
  2592. "type": "package",
  2593. "path": "k4os.compression.lz4/1.2.6",
  2594. "files": [
  2595. ".nupkg.metadata",
  2596. ".signature.p7s",
  2597. "k4os.compression.lz4.1.2.6.nupkg.sha512",
  2598. "k4os.compression.lz4.nuspec",
  2599. "lib/net45/K4os.Compression.LZ4.dll",
  2600. "lib/net45/K4os.Compression.LZ4.xml",
  2601. "lib/net46/K4os.Compression.LZ4.dll",
  2602. "lib/net46/K4os.Compression.LZ4.xml",
  2603. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2604. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2605. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2606. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2607. ]
  2608. },
  2609. "K4os.Compression.LZ4.Streams/1.2.6": {
  2610. "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
  2611. "type": "package",
  2612. "path": "k4os.compression.lz4.streams/1.2.6",
  2613. "files": [
  2614. ".nupkg.metadata",
  2615. ".signature.p7s",
  2616. "k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
  2617. "k4os.compression.lz4.streams.nuspec",
  2618. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2619. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2620. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2621. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2622. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2623. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2624. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2625. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
  2626. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
  2627. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
  2628. ]
  2629. },
  2630. "K4os.Hash.xxHash/1.0.6": {
  2631. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2632. "type": "package",
  2633. "path": "k4os.hash.xxhash/1.0.6",
  2634. "files": [
  2635. ".nupkg.metadata",
  2636. ".signature.p7s",
  2637. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2638. "k4os.hash.xxhash.nuspec",
  2639. "lib/net45/K4os.Hash.xxHash.dll",
  2640. "lib/net45/K4os.Hash.xxHash.xml",
  2641. "lib/net46/K4os.Hash.xxHash.dll",
  2642. "lib/net46/K4os.Hash.xxHash.xml",
  2643. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2644. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2645. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2646. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2647. ]
  2648. },
  2649. "Microsoft.CSharp/4.7.0": {
  2650. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2651. "type": "package",
  2652. "path": "microsoft.csharp/4.7.0",
  2653. "files": [
  2654. ".nupkg.metadata",
  2655. ".signature.p7s",
  2656. "LICENSE.TXT",
  2657. "THIRD-PARTY-NOTICES.TXT",
  2658. "lib/MonoAndroid10/_._",
  2659. "lib/MonoTouch10/_._",
  2660. "lib/net45/_._",
  2661. "lib/netcore50/Microsoft.CSharp.dll",
  2662. "lib/netcoreapp2.0/_._",
  2663. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2664. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2665. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2666. "lib/portable-net45+win8+wp8+wpa81/_._",
  2667. "lib/uap10.0.16299/_._",
  2668. "lib/win8/_._",
  2669. "lib/wp80/_._",
  2670. "lib/wpa81/_._",
  2671. "lib/xamarinios10/_._",
  2672. "lib/xamarinmac20/_._",
  2673. "lib/xamarintvos10/_._",
  2674. "lib/xamarinwatchos10/_._",
  2675. "microsoft.csharp.4.7.0.nupkg.sha512",
  2676. "microsoft.csharp.nuspec",
  2677. "ref/MonoAndroid10/_._",
  2678. "ref/MonoTouch10/_._",
  2679. "ref/net45/_._",
  2680. "ref/netcore50/Microsoft.CSharp.dll",
  2681. "ref/netcore50/Microsoft.CSharp.xml",
  2682. "ref/netcore50/de/Microsoft.CSharp.xml",
  2683. "ref/netcore50/es/Microsoft.CSharp.xml",
  2684. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2685. "ref/netcore50/it/Microsoft.CSharp.xml",
  2686. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2687. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2688. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2689. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2690. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2691. "ref/netcoreapp2.0/_._",
  2692. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2693. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2694. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2695. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2696. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2697. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2698. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2699. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2700. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2701. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2702. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2703. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2704. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2705. "ref/portable-net45+win8+wp8+wpa81/_._",
  2706. "ref/uap10.0.16299/_._",
  2707. "ref/win8/_._",
  2708. "ref/wp80/_._",
  2709. "ref/wpa81/_._",
  2710. "ref/xamarinios10/_._",
  2711. "ref/xamarinmac20/_._",
  2712. "ref/xamarintvos10/_._",
  2713. "ref/xamarinwatchos10/_._",
  2714. "useSharedDesignerContext.txt",
  2715. "version.txt"
  2716. ]
  2717. },
  2718. "Microsoft.Data.SqlClient/2.1.1": {
  2719. "sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==",
  2720. "type": "package",
  2721. "path": "microsoft.data.sqlclient/2.1.1",
  2722. "files": [
  2723. ".nupkg.metadata",
  2724. ".signature.p7s",
  2725. "dotnet.png",
  2726. "lib/net46/Microsoft.Data.SqlClient.dll",
  2727. "lib/net46/Microsoft.Data.SqlClient.pdb",
  2728. "lib/net46/Microsoft.Data.SqlClient.xml",
  2729. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  2730. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  2731. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  2732. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  2733. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  2734. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  2735. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2736. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  2737. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2738. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2739. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2740. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2741. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2742. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2743. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2744. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2745. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2746. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2747. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2748. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2749. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2750. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2751. "microsoft.data.sqlclient.2.1.1.nupkg.sha512",
  2752. "microsoft.data.sqlclient.nuspec",
  2753. "ref/net46/Microsoft.Data.SqlClient.dll",
  2754. "ref/net46/Microsoft.Data.SqlClient.pdb",
  2755. "ref/net46/Microsoft.Data.SqlClient.xml",
  2756. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2757. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2758. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2759. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2760. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2761. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2762. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2763. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2764. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2765. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2766. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2767. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2768. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2769. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2770. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2771. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2772. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2773. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2774. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2775. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2776. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  2777. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  2778. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2779. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2780. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2781. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2782. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2783. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2784. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2785. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  2786. ]
  2787. },
  2788. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  2789. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  2790. "type": "package",
  2791. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  2792. "files": [
  2793. ".nupkg.metadata",
  2794. ".signature.p7s",
  2795. "LICENSE.txt",
  2796. "dotnet.png",
  2797. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  2798. "microsoft.data.sqlclient.sni.runtime.nuspec",
  2799. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  2800. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  2801. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  2802. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  2803. ]
  2804. },
  2805. "Microsoft.Data.Sqlite/5.0.5": {
  2806. "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==",
  2807. "type": "package",
  2808. "path": "microsoft.data.sqlite/5.0.5",
  2809. "files": [
  2810. ".nupkg.metadata",
  2811. ".signature.p7s",
  2812. "Icon.png",
  2813. "lib/netstandard2.0/_._",
  2814. "microsoft.data.sqlite.5.0.5.nupkg.sha512",
  2815. "microsoft.data.sqlite.nuspec"
  2816. ]
  2817. },
  2818. "Microsoft.Data.Sqlite.Core/5.0.5": {
  2819. "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==",
  2820. "type": "package",
  2821. "path": "microsoft.data.sqlite.core/5.0.5",
  2822. "files": [
  2823. ".nupkg.metadata",
  2824. ".signature.p7s",
  2825. "Icon.png",
  2826. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  2827. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  2828. "microsoft.data.sqlite.core.5.0.5.nupkg.sha512",
  2829. "microsoft.data.sqlite.core.nuspec"
  2830. ]
  2831. },
  2832. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  2833. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  2834. "type": "package",
  2835. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  2836. "files": [
  2837. ".nupkg.metadata",
  2838. ".signature.p7s",
  2839. "Icon.png",
  2840. "LICENSE.TXT",
  2841. "THIRD-PARTY-NOTICES.TXT",
  2842. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2843. "buildTransitive/netcoreapp3.1/_._",
  2844. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2845. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2846. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2847. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2848. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2849. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2850. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2851. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2852. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  2853. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2854. "useSharedDesignerContext.txt"
  2855. ]
  2856. },
  2857. "Microsoft.Extensions.Options/6.0.0": {
  2858. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  2859. "type": "package",
  2860. "path": "microsoft.extensions.options/6.0.0",
  2861. "files": [
  2862. ".nupkg.metadata",
  2863. ".signature.p7s",
  2864. "Icon.png",
  2865. "LICENSE.TXT",
  2866. "THIRD-PARTY-NOTICES.TXT",
  2867. "lib/net461/Microsoft.Extensions.Options.dll",
  2868. "lib/net461/Microsoft.Extensions.Options.xml",
  2869. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2870. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2871. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  2872. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  2873. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  2874. "microsoft.extensions.options.nuspec",
  2875. "useSharedDesignerContext.txt"
  2876. ]
  2877. },
  2878. "Microsoft.Extensions.Primitives/6.0.0": {
  2879. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  2880. "type": "package",
  2881. "path": "microsoft.extensions.primitives/6.0.0",
  2882. "files": [
  2883. ".nupkg.metadata",
  2884. ".signature.p7s",
  2885. "Icon.png",
  2886. "LICENSE.TXT",
  2887. "THIRD-PARTY-NOTICES.TXT",
  2888. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  2889. "buildTransitive/netcoreapp3.1/_._",
  2890. "lib/net461/Microsoft.Extensions.Primitives.dll",
  2891. "lib/net461/Microsoft.Extensions.Primitives.xml",
  2892. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  2893. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  2894. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  2895. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  2896. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2897. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2898. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  2899. "microsoft.extensions.primitives.nuspec",
  2900. "useSharedDesignerContext.txt"
  2901. ]
  2902. },
  2903. "Microsoft.Identity.Client/4.21.1": {
  2904. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  2905. "type": "package",
  2906. "path": "microsoft.identity.client/4.21.1",
  2907. "files": [
  2908. ".nupkg.metadata",
  2909. ".signature.p7s",
  2910. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  2911. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  2912. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  2913. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  2914. "lib/net45/Microsoft.Identity.Client.dll",
  2915. "lib/net45/Microsoft.Identity.Client.xml",
  2916. "lib/net461/Microsoft.Identity.Client.dll",
  2917. "lib/net461/Microsoft.Identity.Client.xml",
  2918. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  2919. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  2920. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  2921. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  2922. "lib/uap10.0/Microsoft.Identity.Client.dll",
  2923. "lib/uap10.0/Microsoft.Identity.Client.pri",
  2924. "lib/uap10.0/Microsoft.Identity.Client.xml",
  2925. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  2926. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  2927. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  2928. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  2929. "microsoft.identity.client.4.21.1.nupkg.sha512",
  2930. "microsoft.identity.client.nuspec",
  2931. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  2932. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  2933. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  2934. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  2935. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  2936. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  2937. "ref/net45/Microsoft.Identity.Client.dll",
  2938. "ref/net45/Microsoft.Identity.Client.xml",
  2939. "ref/net461/Microsoft.Identity.Client.dll",
  2940. "ref/net461/Microsoft.Identity.Client.xml",
  2941. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  2942. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  2943. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  2944. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  2945. "ref/uap10.0/Microsoft.Identity.Client.dll",
  2946. "ref/uap10.0/Microsoft.Identity.Client.xml",
  2947. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  2948. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  2949. ]
  2950. },
  2951. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  2952. "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==",
  2953. "type": "package",
  2954. "path": "microsoft.identitymodel.jsonwebtokens/6.8.0",
  2955. "files": [
  2956. ".nupkg.metadata",
  2957. ".signature.p7s",
  2958. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  2959. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  2960. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  2961. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  2962. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  2963. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  2964. "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512",
  2965. "microsoft.identitymodel.jsonwebtokens.nuspec"
  2966. ]
  2967. },
  2968. "Microsoft.IdentityModel.Logging/6.8.0": {
  2969. "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",
  2970. "type": "package",
  2971. "path": "microsoft.identitymodel.logging/6.8.0",
  2972. "files": [
  2973. ".nupkg.metadata",
  2974. ".signature.p7s",
  2975. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  2976. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  2977. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  2978. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  2979. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  2980. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  2981. "microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
  2982. "microsoft.identitymodel.logging.nuspec"
  2983. ]
  2984. },
  2985. "Microsoft.IdentityModel.Protocols/6.8.0": {
  2986. "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==",
  2987. "type": "package",
  2988. "path": "microsoft.identitymodel.protocols/6.8.0",
  2989. "files": [
  2990. ".nupkg.metadata",
  2991. ".signature.p7s",
  2992. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  2993. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  2994. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  2995. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  2996. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  2997. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  2998. "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512",
  2999. "microsoft.identitymodel.protocols.nuspec"
  3000. ]
  3001. },
  3002. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  3003. "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==",
  3004. "type": "package",
  3005. "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0",
  3006. "files": [
  3007. ".nupkg.metadata",
  3008. ".signature.p7s",
  3009. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3010. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3011. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3012. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3013. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3014. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3015. "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512",
  3016. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3017. ]
  3018. },
  3019. "Microsoft.IdentityModel.Tokens/6.8.0": {
  3020. "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",
  3021. "type": "package",
  3022. "path": "microsoft.identitymodel.tokens/6.8.0",
  3023. "files": [
  3024. ".nupkg.metadata",
  3025. ".signature.p7s",
  3026. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3027. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3028. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3029. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3030. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3031. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3032. "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
  3033. "microsoft.identitymodel.tokens.nuspec"
  3034. ]
  3035. },
  3036. "Microsoft.NETCore.Platforms/3.1.0": {
  3037. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  3038. "type": "package",
  3039. "path": "microsoft.netcore.platforms/3.1.0",
  3040. "files": [
  3041. ".nupkg.metadata",
  3042. ".signature.p7s",
  3043. "LICENSE.TXT",
  3044. "THIRD-PARTY-NOTICES.TXT",
  3045. "lib/netstandard1.0/_._",
  3046. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  3047. "microsoft.netcore.platforms.nuspec",
  3048. "runtime.json",
  3049. "useSharedDesignerContext.txt",
  3050. "version.txt"
  3051. ]
  3052. },
  3053. "Microsoft.NETCore.Targets/1.1.0": {
  3054. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3055. "type": "package",
  3056. "path": "microsoft.netcore.targets/1.1.0",
  3057. "files": [
  3058. ".nupkg.metadata",
  3059. ".signature.p7s",
  3060. "ThirdPartyNotices.txt",
  3061. "dotnet_library_license.txt",
  3062. "lib/netstandard1.0/_._",
  3063. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3064. "microsoft.netcore.targets.nuspec",
  3065. "runtime.json"
  3066. ]
  3067. },
  3068. "Microsoft.Win32.Primitives/4.3.0": {
  3069. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3070. "type": "package",
  3071. "path": "microsoft.win32.primitives/4.3.0",
  3072. "files": [
  3073. ".nupkg.metadata",
  3074. ".signature.p7s",
  3075. "ThirdPartyNotices.txt",
  3076. "dotnet_library_license.txt",
  3077. "lib/MonoAndroid10/_._",
  3078. "lib/MonoTouch10/_._",
  3079. "lib/net46/Microsoft.Win32.Primitives.dll",
  3080. "lib/xamarinios10/_._",
  3081. "lib/xamarinmac20/_._",
  3082. "lib/xamarintvos10/_._",
  3083. "lib/xamarinwatchos10/_._",
  3084. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3085. "microsoft.win32.primitives.nuspec",
  3086. "ref/MonoAndroid10/_._",
  3087. "ref/MonoTouch10/_._",
  3088. "ref/net46/Microsoft.Win32.Primitives.dll",
  3089. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3090. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3091. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3092. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3093. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3094. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3095. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3096. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3097. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3098. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3099. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3100. "ref/xamarinios10/_._",
  3101. "ref/xamarinmac20/_._",
  3102. "ref/xamarintvos10/_._",
  3103. "ref/xamarinwatchos10/_._"
  3104. ]
  3105. },
  3106. "Microsoft.Win32.Registry/4.7.0": {
  3107. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  3108. "type": "package",
  3109. "path": "microsoft.win32.registry/4.7.0",
  3110. "files": [
  3111. ".nupkg.metadata",
  3112. ".signature.p7s",
  3113. "LICENSE.TXT",
  3114. "THIRD-PARTY-NOTICES.TXT",
  3115. "lib/net46/Microsoft.Win32.Registry.dll",
  3116. "lib/net461/Microsoft.Win32.Registry.dll",
  3117. "lib/net461/Microsoft.Win32.Registry.xml",
  3118. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3119. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3120. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3121. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  3122. "microsoft.win32.registry.nuspec",
  3123. "ref/net46/Microsoft.Win32.Registry.dll",
  3124. "ref/net461/Microsoft.Win32.Registry.dll",
  3125. "ref/net461/Microsoft.Win32.Registry.xml",
  3126. "ref/net472/Microsoft.Win32.Registry.dll",
  3127. "ref/net472/Microsoft.Win32.Registry.xml",
  3128. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3129. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3130. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3131. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3132. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3133. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3134. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3135. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3136. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3137. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3138. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3139. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3140. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3141. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3142. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3143. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3144. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3145. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3146. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3147. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3148. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3149. "useSharedDesignerContext.txt",
  3150. "version.txt"
  3151. ]
  3152. },
  3153. "Microsoft.Win32.SystemEvents/4.7.0": {
  3154. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  3155. "type": "package",
  3156. "path": "microsoft.win32.systemevents/4.7.0",
  3157. "files": [
  3158. ".nupkg.metadata",
  3159. ".signature.p7s",
  3160. "LICENSE.TXT",
  3161. "THIRD-PARTY-NOTICES.TXT",
  3162. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3163. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3164. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3165. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3166. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  3167. "microsoft.win32.systemevents.nuspec",
  3168. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3169. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3170. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  3171. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  3172. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3173. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3174. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3175. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3176. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3177. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3178. "useSharedDesignerContext.txt",
  3179. "version.txt"
  3180. ]
  3181. },
  3182. "MySql.Data/8.0.29": {
  3183. "sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==",
  3184. "type": "package",
  3185. "path": "mysql.data/8.0.29",
  3186. "files": [
  3187. ".nupkg.metadata",
  3188. ".signature.p7s",
  3189. "lib/net452/MySql.Data.dll",
  3190. "lib/net452/MySql.Data.xml",
  3191. "lib/net452/Ubiety.Dns.Core.dll",
  3192. "lib/net452/ZstdNet.dll",
  3193. "lib/net48/MySql.Data.dll",
  3194. "lib/net48/MySql.Data.xml",
  3195. "lib/net48/Ubiety.Dns.Core.dll",
  3196. "lib/net48/ZstdNet.dll",
  3197. "lib/net5.0/MySql.Data.dll",
  3198. "lib/net5.0/MySql.Data.xml",
  3199. "lib/net5.0/Ubiety.Dns.Core.dll",
  3200. "lib/net5.0/ZstdNet.dll",
  3201. "lib/net6.0/MySql.Data.dll",
  3202. "lib/net6.0/MySql.Data.xml",
  3203. "lib/net6.0/Ubiety.Dns.Core.dll",
  3204. "lib/net6.0/ZstdNet.dll",
  3205. "lib/netstandard2.0/MySql.Data.dll",
  3206. "lib/netstandard2.0/MySql.Data.xml",
  3207. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  3208. "lib/netstandard2.0/ZstdNet.dll",
  3209. "lib/netstandard2.1/MySql.Data.dll",
  3210. "lib/netstandard2.1/MySql.Data.xml",
  3211. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  3212. "lib/netstandard2.1/ZstdNet.dll",
  3213. "mysql.data.8.0.29.nupkg.sha512",
  3214. "mysql.data.nuspec"
  3215. ]
  3216. },
  3217. "NETStandard.Library/1.6.1": {
  3218. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  3219. "type": "package",
  3220. "path": "netstandard.library/1.6.1",
  3221. "files": [
  3222. ".nupkg.metadata",
  3223. ".signature.p7s",
  3224. "ThirdPartyNotices.txt",
  3225. "dotnet_library_license.txt",
  3226. "netstandard.library.1.6.1.nupkg.sha512",
  3227. "netstandard.library.nuspec"
  3228. ]
  3229. },
  3230. "Newtonsoft.Json/10.0.3": {
  3231. "sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
  3232. "type": "package",
  3233. "path": "newtonsoft.json/10.0.3",
  3234. "hasTools": true,
  3235. "files": [
  3236. ".nupkg.metadata",
  3237. ".signature.p7s",
  3238. "LICENSE.md",
  3239. "lib/net20/Newtonsoft.Json.dll",
  3240. "lib/net20/Newtonsoft.Json.xml",
  3241. "lib/net35/Newtonsoft.Json.dll",
  3242. "lib/net35/Newtonsoft.Json.xml",
  3243. "lib/net40/Newtonsoft.Json.dll",
  3244. "lib/net40/Newtonsoft.Json.xml",
  3245. "lib/net45/Newtonsoft.Json.dll",
  3246. "lib/net45/Newtonsoft.Json.xml",
  3247. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3248. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3249. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3250. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3251. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3252. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3253. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  3254. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  3255. "newtonsoft.json.10.0.3.nupkg.sha512",
  3256. "newtonsoft.json.nuspec",
  3257. "tools/install.ps1"
  3258. ]
  3259. },
  3260. "Npgsql/5.0.7": {
  3261. "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==",
  3262. "type": "package",
  3263. "path": "npgsql/5.0.7",
  3264. "files": [
  3265. ".nupkg.metadata",
  3266. ".signature.p7s",
  3267. "lib/net5.0/Npgsql.dll",
  3268. "lib/net5.0/Npgsql.xml",
  3269. "lib/netcoreapp3.1/Npgsql.dll",
  3270. "lib/netcoreapp3.1/Npgsql.xml",
  3271. "lib/netstandard2.0/Npgsql.dll",
  3272. "lib/netstandard2.0/Npgsql.xml",
  3273. "lib/netstandard2.1/Npgsql.dll",
  3274. "lib/netstandard2.1/Npgsql.xml",
  3275. "npgsql.5.0.7.nupkg.sha512",
  3276. "npgsql.nuspec",
  3277. "postgresql.png"
  3278. ]
  3279. },
  3280. "Oracle.ManagedDataAccess.Core/3.21.1": {
  3281. "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==",
  3282. "type": "package",
  3283. "path": "oracle.manageddataaccess.core/3.21.1",
  3284. "files": [
  3285. ".nupkg.metadata",
  3286. ".signature.p7s",
  3287. "PerfCounters/register_odpc_perfmon_counters.ps1",
  3288. "PerfCounters/unregister_odpc_perfmon_counters.ps1",
  3289. "info.txt",
  3290. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll",
  3291. "oracle.manageddataaccess.core.3.21.1.nupkg.sha512",
  3292. "oracle.manageddataaccess.core.nuspec",
  3293. "readme.txt"
  3294. ]
  3295. },
  3296. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3297. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  3298. "type": "package",
  3299. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3300. "files": [
  3301. ".nupkg.metadata",
  3302. ".signature.p7s",
  3303. "ThirdPartyNotices.txt",
  3304. "dotnet_library_license.txt",
  3305. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3306. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3307. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3308. ]
  3309. },
  3310. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3311. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  3312. "type": "package",
  3313. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3314. "files": [
  3315. ".nupkg.metadata",
  3316. ".signature.p7s",
  3317. "ThirdPartyNotices.txt",
  3318. "dotnet_library_license.txt",
  3319. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3320. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3321. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3322. ]
  3323. },
  3324. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3325. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  3326. "type": "package",
  3327. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3328. "files": [
  3329. ".nupkg.metadata",
  3330. ".signature.p7s",
  3331. "ThirdPartyNotices.txt",
  3332. "dotnet_library_license.txt",
  3333. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3334. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3335. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3336. ]
  3337. },
  3338. "runtime.native.System/4.3.0": {
  3339. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  3340. "type": "package",
  3341. "path": "runtime.native.system/4.3.0",
  3342. "files": [
  3343. ".nupkg.metadata",
  3344. ".signature.p7s",
  3345. "ThirdPartyNotices.txt",
  3346. "dotnet_library_license.txt",
  3347. "lib/netstandard1.0/_._",
  3348. "runtime.native.system.4.3.0.nupkg.sha512",
  3349. "runtime.native.system.nuspec"
  3350. ]
  3351. },
  3352. "runtime.native.System.IO.Compression/4.3.0": {
  3353. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  3354. "type": "package",
  3355. "path": "runtime.native.system.io.compression/4.3.0",
  3356. "files": [
  3357. ".nupkg.metadata",
  3358. ".signature.p7s",
  3359. "ThirdPartyNotices.txt",
  3360. "dotnet_library_license.txt",
  3361. "lib/netstandard1.0/_._",
  3362. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  3363. "runtime.native.system.io.compression.nuspec"
  3364. ]
  3365. },
  3366. "runtime.native.System.Net.Http/4.3.0": {
  3367. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  3368. "type": "package",
  3369. "path": "runtime.native.system.net.http/4.3.0",
  3370. "files": [
  3371. ".nupkg.metadata",
  3372. ".signature.p7s",
  3373. "ThirdPartyNotices.txt",
  3374. "dotnet_library_license.txt",
  3375. "lib/netstandard1.0/_._",
  3376. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  3377. "runtime.native.system.net.http.nuspec"
  3378. ]
  3379. },
  3380. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3381. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  3382. "type": "package",
  3383. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  3384. "files": [
  3385. ".nupkg.metadata",
  3386. ".signature.p7s",
  3387. "ThirdPartyNotices.txt",
  3388. "dotnet_library_license.txt",
  3389. "lib/netstandard1.0/_._",
  3390. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3391. "runtime.native.system.security.cryptography.apple.nuspec"
  3392. ]
  3393. },
  3394. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3395. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  3396. "type": "package",
  3397. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  3398. "files": [
  3399. ".nupkg.metadata",
  3400. ".signature.p7s",
  3401. "ThirdPartyNotices.txt",
  3402. "dotnet_library_license.txt",
  3403. "lib/netstandard1.0/_._",
  3404. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3405. "runtime.native.system.security.cryptography.openssl.nuspec"
  3406. ]
  3407. },
  3408. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3409. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  3410. "type": "package",
  3411. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3412. "files": [
  3413. ".nupkg.metadata",
  3414. ".signature.p7s",
  3415. "ThirdPartyNotices.txt",
  3416. "dotnet_library_license.txt",
  3417. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3418. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3419. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3420. ]
  3421. },
  3422. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3423. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  3424. "type": "package",
  3425. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3426. "files": [
  3427. ".nupkg.metadata",
  3428. ".signature.p7s",
  3429. "ThirdPartyNotices.txt",
  3430. "dotnet_library_license.txt",
  3431. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3432. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3433. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3434. ]
  3435. },
  3436. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3437. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  3438. "type": "package",
  3439. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  3440. "files": [
  3441. ".nupkg.metadata",
  3442. ".signature.p7s",
  3443. "ThirdPartyNotices.txt",
  3444. "dotnet_library_license.txt",
  3445. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  3446. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  3447. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  3448. ]
  3449. },
  3450. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3451. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  3452. "type": "package",
  3453. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3454. "files": [
  3455. ".nupkg.metadata",
  3456. ".signature.p7s",
  3457. "ThirdPartyNotices.txt",
  3458. "dotnet_library_license.txt",
  3459. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3460. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3461. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  3462. ]
  3463. },
  3464. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3465. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  3466. "type": "package",
  3467. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3468. "files": [
  3469. ".nupkg.metadata",
  3470. ".signature.p7s",
  3471. "ThirdPartyNotices.txt",
  3472. "dotnet_library_license.txt",
  3473. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3474. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3475. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3476. ]
  3477. },
  3478. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3479. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  3480. "type": "package",
  3481. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3482. "files": [
  3483. ".nupkg.metadata",
  3484. ".signature.p7s",
  3485. "ThirdPartyNotices.txt",
  3486. "dotnet_library_license.txt",
  3487. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3488. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3489. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3490. ]
  3491. },
  3492. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3493. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  3494. "type": "package",
  3495. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3496. "files": [
  3497. ".nupkg.metadata",
  3498. ".signature.p7s",
  3499. "ThirdPartyNotices.txt",
  3500. "dotnet_library_license.txt",
  3501. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3502. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3503. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3504. ]
  3505. },
  3506. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  3507. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  3508. "type": "package",
  3509. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  3510. "files": [
  3511. ".nupkg.metadata",
  3512. ".signature.p7s",
  3513. "ThirdPartyNotices.txt",
  3514. "dotnet_library_license.txt",
  3515. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  3516. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  3517. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  3518. ]
  3519. },
  3520. "Serilog/2.10.0": {
  3521. "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
  3522. "type": "package",
  3523. "path": "serilog/2.10.0",
  3524. "files": [
  3525. ".nupkg.metadata",
  3526. ".signature.p7s",
  3527. "icon.png",
  3528. "lib/net45/Serilog.dll",
  3529. "lib/net45/Serilog.xml",
  3530. "lib/net46/Serilog.dll",
  3531. "lib/net46/Serilog.xml",
  3532. "lib/netstandard1.0/Serilog.dll",
  3533. "lib/netstandard1.0/Serilog.xml",
  3534. "lib/netstandard1.3/Serilog.dll",
  3535. "lib/netstandard1.3/Serilog.xml",
  3536. "lib/netstandard2.0/Serilog.dll",
  3537. "lib/netstandard2.0/Serilog.xml",
  3538. "lib/netstandard2.1/Serilog.dll",
  3539. "lib/netstandard2.1/Serilog.xml",
  3540. "serilog.2.10.0.nupkg.sha512",
  3541. "serilog.nuspec"
  3542. ]
  3543. },
  3544. "Serilog.Sinks.File/5.0.0": {
  3545. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  3546. "type": "package",
  3547. "path": "serilog.sinks.file/5.0.0",
  3548. "files": [
  3549. ".nupkg.metadata",
  3550. ".signature.p7s",
  3551. "images/icon.png",
  3552. "lib/net45/Serilog.Sinks.File.dll",
  3553. "lib/net45/Serilog.Sinks.File.pdb",
  3554. "lib/net45/Serilog.Sinks.File.xml",
  3555. "lib/net5.0/Serilog.Sinks.File.dll",
  3556. "lib/net5.0/Serilog.Sinks.File.pdb",
  3557. "lib/net5.0/Serilog.Sinks.File.xml",
  3558. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  3559. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  3560. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  3561. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  3562. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  3563. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  3564. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  3565. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  3566. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  3567. "serilog.sinks.file.5.0.0.nupkg.sha512",
  3568. "serilog.sinks.file.nuspec"
  3569. ]
  3570. },
  3571. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  3572. "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
  3573. "type": "package",
  3574. "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
  3575. "files": [
  3576. ".nupkg.metadata",
  3577. ".signature.p7s",
  3578. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  3579. "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll",
  3580. "lib/net461/SQLitePCLRaw.batteries_v2.dll",
  3581. "lib/net461/SQLitePCLRaw.nativelibrary.dll",
  3582. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll",
  3583. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll",
  3584. "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
  3585. "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512",
  3586. "sqlitepclraw.bundle_e_sqlite3.nuspec"
  3587. ]
  3588. },
  3589. "SQLitePCLRaw.core/2.0.4": {
  3590. "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==",
  3591. "type": "package",
  3592. "path": "sqlitepclraw.core/2.0.4",
  3593. "files": [
  3594. ".nupkg.metadata",
  3595. ".signature.p7s",
  3596. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  3597. "sqlitepclraw.core.2.0.4.nupkg.sha512",
  3598. "sqlitepclraw.core.nuspec"
  3599. ]
  3600. },
  3601. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  3602. "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==",
  3603. "type": "package",
  3604. "path": "sqlitepclraw.lib.e_sqlite3/2.0.4",
  3605. "files": [
  3606. ".nupkg.metadata",
  3607. ".signature.p7s",
  3608. "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
  3609. "lib/net461/_._",
  3610. "lib/netstandard2.0/_._",
  3611. "runtimes/alpine-x64/native/libe_sqlite3.so",
  3612. "runtimes/linux-arm/native/libe_sqlite3.so",
  3613. "runtimes/linux-arm64/native/libe_sqlite3.so",
  3614. "runtimes/linux-armel/native/libe_sqlite3.so",
  3615. "runtimes/linux-mips64/native/libe_sqlite3.so",
  3616. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  3617. "runtimes/linux-x64/native/libe_sqlite3.so",
  3618. "runtimes/linux-x86/native/libe_sqlite3.so",
  3619. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  3620. "runtimes/win-arm/native/e_sqlite3.dll",
  3621. "runtimes/win-arm64/native/e_sqlite3.dll",
  3622. "runtimes/win-x64/native/e_sqlite3.dll",
  3623. "runtimes/win-x86/native/e_sqlite3.dll",
  3624. "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
  3625. "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
  3626. "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
  3627. "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
  3628. "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512",
  3629. "sqlitepclraw.lib.e_sqlite3.nuspec"
  3630. ]
  3631. },
  3632. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  3633. "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==",
  3634. "type": "package",
  3635. "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4",
  3636. "files": [
  3637. ".nupkg.metadata",
  3638. ".signature.p7s",
  3639. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll",
  3640. "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512",
  3641. "sqlitepclraw.provider.dynamic_cdecl.nuspec"
  3642. ]
  3643. },
  3644. "SqlSugarCore/5.1.3.32": {
  3645. "sha512": "Rd+N9idSgHMmAZ3c93UV/h2xMDqkR+0uFXxiJMKDwOEeqIVcG207OzoXt15/D4Sk6oxwksZuqK4AMft35QPSjA==",
  3646. "type": "package",
  3647. "path": "sqlsugarcore/5.1.3.32",
  3648. "files": [
  3649. ".nupkg.metadata",
  3650. ".signature.p7s",
  3651. "lib/netstandard2.1/SqlSugar.dll",
  3652. "sqlsugarcore.5.1.3.32.nupkg.sha512",
  3653. "sqlsugarcore.nuspec"
  3654. ]
  3655. },
  3656. "SqlSugarCore.Dm/1.0.0": {
  3657. "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==",
  3658. "type": "package",
  3659. "path": "sqlsugarcore.dm/1.0.0",
  3660. "files": [
  3661. ".nupkg.metadata",
  3662. ".signature.p7s",
  3663. "lib/netstandard2.0/DmProvider.dll",
  3664. "sqlsugarcore.dm.1.0.0.nupkg.sha512",
  3665. "sqlsugarcore.dm.nuspec"
  3666. ]
  3667. },
  3668. "SqlSugarCore.Kdbndp/1.0.0": {
  3669. "sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==",
  3670. "type": "package",
  3671. "path": "sqlsugarcore.kdbndp/1.0.0",
  3672. "files": [
  3673. ".nupkg.metadata",
  3674. ".signature.p7s",
  3675. "lib/netstandard2.0/Kdbndp.dll",
  3676. "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512",
  3677. "sqlsugarcore.kdbndp.nuspec"
  3678. ]
  3679. },
  3680. "System.AppContext/4.3.0": {
  3681. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  3682. "type": "package",
  3683. "path": "system.appcontext/4.3.0",
  3684. "files": [
  3685. ".nupkg.metadata",
  3686. ".signature.p7s",
  3687. "ThirdPartyNotices.txt",
  3688. "dotnet_library_license.txt",
  3689. "lib/MonoAndroid10/_._",
  3690. "lib/MonoTouch10/_._",
  3691. "lib/net46/System.AppContext.dll",
  3692. "lib/net463/System.AppContext.dll",
  3693. "lib/netcore50/System.AppContext.dll",
  3694. "lib/netstandard1.6/System.AppContext.dll",
  3695. "lib/xamarinios10/_._",
  3696. "lib/xamarinmac20/_._",
  3697. "lib/xamarintvos10/_._",
  3698. "lib/xamarinwatchos10/_._",
  3699. "ref/MonoAndroid10/_._",
  3700. "ref/MonoTouch10/_._",
  3701. "ref/net46/System.AppContext.dll",
  3702. "ref/net463/System.AppContext.dll",
  3703. "ref/netstandard/_._",
  3704. "ref/netstandard1.3/System.AppContext.dll",
  3705. "ref/netstandard1.3/System.AppContext.xml",
  3706. "ref/netstandard1.3/de/System.AppContext.xml",
  3707. "ref/netstandard1.3/es/System.AppContext.xml",
  3708. "ref/netstandard1.3/fr/System.AppContext.xml",
  3709. "ref/netstandard1.3/it/System.AppContext.xml",
  3710. "ref/netstandard1.3/ja/System.AppContext.xml",
  3711. "ref/netstandard1.3/ko/System.AppContext.xml",
  3712. "ref/netstandard1.3/ru/System.AppContext.xml",
  3713. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  3714. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  3715. "ref/netstandard1.6/System.AppContext.dll",
  3716. "ref/netstandard1.6/System.AppContext.xml",
  3717. "ref/netstandard1.6/de/System.AppContext.xml",
  3718. "ref/netstandard1.6/es/System.AppContext.xml",
  3719. "ref/netstandard1.6/fr/System.AppContext.xml",
  3720. "ref/netstandard1.6/it/System.AppContext.xml",
  3721. "ref/netstandard1.6/ja/System.AppContext.xml",
  3722. "ref/netstandard1.6/ko/System.AppContext.xml",
  3723. "ref/netstandard1.6/ru/System.AppContext.xml",
  3724. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  3725. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  3726. "ref/xamarinios10/_._",
  3727. "ref/xamarinmac20/_._",
  3728. "ref/xamarintvos10/_._",
  3729. "ref/xamarinwatchos10/_._",
  3730. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  3731. "system.appcontext.4.3.0.nupkg.sha512",
  3732. "system.appcontext.nuspec"
  3733. ]
  3734. },
  3735. "System.Buffers/4.5.1": {
  3736. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  3737. "type": "package",
  3738. "path": "system.buffers/4.5.1",
  3739. "files": [
  3740. ".nupkg.metadata",
  3741. ".signature.p7s",
  3742. "LICENSE.TXT",
  3743. "THIRD-PARTY-NOTICES.TXT",
  3744. "lib/net461/System.Buffers.dll",
  3745. "lib/net461/System.Buffers.xml",
  3746. "lib/netcoreapp2.0/_._",
  3747. "lib/netstandard1.1/System.Buffers.dll",
  3748. "lib/netstandard1.1/System.Buffers.xml",
  3749. "lib/netstandard2.0/System.Buffers.dll",
  3750. "lib/netstandard2.0/System.Buffers.xml",
  3751. "lib/uap10.0.16299/_._",
  3752. "ref/net45/System.Buffers.dll",
  3753. "ref/net45/System.Buffers.xml",
  3754. "ref/netcoreapp2.0/_._",
  3755. "ref/netstandard1.1/System.Buffers.dll",
  3756. "ref/netstandard1.1/System.Buffers.xml",
  3757. "ref/netstandard2.0/System.Buffers.dll",
  3758. "ref/netstandard2.0/System.Buffers.xml",
  3759. "ref/uap10.0.16299/_._",
  3760. "system.buffers.4.5.1.nupkg.sha512",
  3761. "system.buffers.nuspec",
  3762. "useSharedDesignerContext.txt",
  3763. "version.txt"
  3764. ]
  3765. },
  3766. "System.Collections/4.3.0": {
  3767. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  3768. "type": "package",
  3769. "path": "system.collections/4.3.0",
  3770. "files": [
  3771. ".nupkg.metadata",
  3772. ".signature.p7s",
  3773. "ThirdPartyNotices.txt",
  3774. "dotnet_library_license.txt",
  3775. "lib/MonoAndroid10/_._",
  3776. "lib/MonoTouch10/_._",
  3777. "lib/net45/_._",
  3778. "lib/portable-net45+win8+wp8+wpa81/_._",
  3779. "lib/win8/_._",
  3780. "lib/wp80/_._",
  3781. "lib/wpa81/_._",
  3782. "lib/xamarinios10/_._",
  3783. "lib/xamarinmac20/_._",
  3784. "lib/xamarintvos10/_._",
  3785. "lib/xamarinwatchos10/_._",
  3786. "ref/MonoAndroid10/_._",
  3787. "ref/MonoTouch10/_._",
  3788. "ref/net45/_._",
  3789. "ref/netcore50/System.Collections.dll",
  3790. "ref/netcore50/System.Collections.xml",
  3791. "ref/netcore50/de/System.Collections.xml",
  3792. "ref/netcore50/es/System.Collections.xml",
  3793. "ref/netcore50/fr/System.Collections.xml",
  3794. "ref/netcore50/it/System.Collections.xml",
  3795. "ref/netcore50/ja/System.Collections.xml",
  3796. "ref/netcore50/ko/System.Collections.xml",
  3797. "ref/netcore50/ru/System.Collections.xml",
  3798. "ref/netcore50/zh-hans/System.Collections.xml",
  3799. "ref/netcore50/zh-hant/System.Collections.xml",
  3800. "ref/netstandard1.0/System.Collections.dll",
  3801. "ref/netstandard1.0/System.Collections.xml",
  3802. "ref/netstandard1.0/de/System.Collections.xml",
  3803. "ref/netstandard1.0/es/System.Collections.xml",
  3804. "ref/netstandard1.0/fr/System.Collections.xml",
  3805. "ref/netstandard1.0/it/System.Collections.xml",
  3806. "ref/netstandard1.0/ja/System.Collections.xml",
  3807. "ref/netstandard1.0/ko/System.Collections.xml",
  3808. "ref/netstandard1.0/ru/System.Collections.xml",
  3809. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  3810. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  3811. "ref/netstandard1.3/System.Collections.dll",
  3812. "ref/netstandard1.3/System.Collections.xml",
  3813. "ref/netstandard1.3/de/System.Collections.xml",
  3814. "ref/netstandard1.3/es/System.Collections.xml",
  3815. "ref/netstandard1.3/fr/System.Collections.xml",
  3816. "ref/netstandard1.3/it/System.Collections.xml",
  3817. "ref/netstandard1.3/ja/System.Collections.xml",
  3818. "ref/netstandard1.3/ko/System.Collections.xml",
  3819. "ref/netstandard1.3/ru/System.Collections.xml",
  3820. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  3821. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  3822. "ref/portable-net45+win8+wp8+wpa81/_._",
  3823. "ref/win8/_._",
  3824. "ref/wp80/_._",
  3825. "ref/wpa81/_._",
  3826. "ref/xamarinios10/_._",
  3827. "ref/xamarinmac20/_._",
  3828. "ref/xamarintvos10/_._",
  3829. "ref/xamarinwatchos10/_._",
  3830. "system.collections.4.3.0.nupkg.sha512",
  3831. "system.collections.nuspec"
  3832. ]
  3833. },
  3834. "System.Collections.Concurrent/4.3.0": {
  3835. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  3836. "type": "package",
  3837. "path": "system.collections.concurrent/4.3.0",
  3838. "files": [
  3839. ".nupkg.metadata",
  3840. ".signature.p7s",
  3841. "ThirdPartyNotices.txt",
  3842. "dotnet_library_license.txt",
  3843. "lib/MonoAndroid10/_._",
  3844. "lib/MonoTouch10/_._",
  3845. "lib/net45/_._",
  3846. "lib/netcore50/System.Collections.Concurrent.dll",
  3847. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  3848. "lib/portable-net45+win8+wpa81/_._",
  3849. "lib/win8/_._",
  3850. "lib/wpa81/_._",
  3851. "lib/xamarinios10/_._",
  3852. "lib/xamarinmac20/_._",
  3853. "lib/xamarintvos10/_._",
  3854. "lib/xamarinwatchos10/_._",
  3855. "ref/MonoAndroid10/_._",
  3856. "ref/MonoTouch10/_._",
  3857. "ref/net45/_._",
  3858. "ref/netcore50/System.Collections.Concurrent.dll",
  3859. "ref/netcore50/System.Collections.Concurrent.xml",
  3860. "ref/netcore50/de/System.Collections.Concurrent.xml",
  3861. "ref/netcore50/es/System.Collections.Concurrent.xml",
  3862. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  3863. "ref/netcore50/it/System.Collections.Concurrent.xml",
  3864. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  3865. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  3866. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  3867. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  3868. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  3869. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  3870. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  3871. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  3872. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  3873. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  3874. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  3875. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  3876. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  3877. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  3878. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  3879. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  3880. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  3881. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  3882. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  3883. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  3884. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  3885. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  3886. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  3887. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  3888. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  3889. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  3890. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  3891. "ref/portable-net45+win8+wpa81/_._",
  3892. "ref/win8/_._",
  3893. "ref/wpa81/_._",
  3894. "ref/xamarinios10/_._",
  3895. "ref/xamarinmac20/_._",
  3896. "ref/xamarintvos10/_._",
  3897. "ref/xamarinwatchos10/_._",
  3898. "system.collections.concurrent.4.3.0.nupkg.sha512",
  3899. "system.collections.concurrent.nuspec"
  3900. ]
  3901. },
  3902. "System.Collections.NonGeneric/4.3.0": {
  3903. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  3904. "type": "package",
  3905. "path": "system.collections.nongeneric/4.3.0",
  3906. "files": [
  3907. ".nupkg.metadata",
  3908. ".signature.p7s",
  3909. "ThirdPartyNotices.txt",
  3910. "dotnet_library_license.txt",
  3911. "lib/MonoAndroid10/_._",
  3912. "lib/MonoTouch10/_._",
  3913. "lib/net46/System.Collections.NonGeneric.dll",
  3914. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  3915. "lib/xamarinios10/_._",
  3916. "lib/xamarinmac20/_._",
  3917. "lib/xamarintvos10/_._",
  3918. "lib/xamarinwatchos10/_._",
  3919. "ref/MonoAndroid10/_._",
  3920. "ref/MonoTouch10/_._",
  3921. "ref/net46/System.Collections.NonGeneric.dll",
  3922. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  3923. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  3924. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  3925. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  3926. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  3927. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  3928. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  3929. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  3930. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  3931. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  3932. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  3933. "ref/xamarinios10/_._",
  3934. "ref/xamarinmac20/_._",
  3935. "ref/xamarintvos10/_._",
  3936. "ref/xamarinwatchos10/_._",
  3937. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  3938. "system.collections.nongeneric.nuspec"
  3939. ]
  3940. },
  3941. "System.Collections.Specialized/4.3.0": {
  3942. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  3943. "type": "package",
  3944. "path": "system.collections.specialized/4.3.0",
  3945. "files": [
  3946. ".nupkg.metadata",
  3947. ".signature.p7s",
  3948. "ThirdPartyNotices.txt",
  3949. "dotnet_library_license.txt",
  3950. "lib/MonoAndroid10/_._",
  3951. "lib/MonoTouch10/_._",
  3952. "lib/net46/System.Collections.Specialized.dll",
  3953. "lib/netstandard1.3/System.Collections.Specialized.dll",
  3954. "lib/xamarinios10/_._",
  3955. "lib/xamarinmac20/_._",
  3956. "lib/xamarintvos10/_._",
  3957. "lib/xamarinwatchos10/_._",
  3958. "ref/MonoAndroid10/_._",
  3959. "ref/MonoTouch10/_._",
  3960. "ref/net46/System.Collections.Specialized.dll",
  3961. "ref/netstandard1.3/System.Collections.Specialized.dll",
  3962. "ref/netstandard1.3/System.Collections.Specialized.xml",
  3963. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  3964. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  3965. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  3966. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  3967. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  3968. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  3969. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  3970. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  3971. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  3972. "ref/xamarinios10/_._",
  3973. "ref/xamarinmac20/_._",
  3974. "ref/xamarintvos10/_._",
  3975. "ref/xamarinwatchos10/_._",
  3976. "system.collections.specialized.4.3.0.nupkg.sha512",
  3977. "system.collections.specialized.nuspec"
  3978. ]
  3979. },
  3980. "System.ComponentModel/4.3.0": {
  3981. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  3982. "type": "package",
  3983. "path": "system.componentmodel/4.3.0",
  3984. "files": [
  3985. ".nupkg.metadata",
  3986. ".signature.p7s",
  3987. "ThirdPartyNotices.txt",
  3988. "dotnet_library_license.txt",
  3989. "lib/MonoAndroid10/_._",
  3990. "lib/MonoTouch10/_._",
  3991. "lib/net45/_._",
  3992. "lib/netcore50/System.ComponentModel.dll",
  3993. "lib/netstandard1.3/System.ComponentModel.dll",
  3994. "lib/portable-net45+win8+wp8+wpa81/_._",
  3995. "lib/win8/_._",
  3996. "lib/wp80/_._",
  3997. "lib/wpa81/_._",
  3998. "lib/xamarinios10/_._",
  3999. "lib/xamarinmac20/_._",
  4000. "lib/xamarintvos10/_._",
  4001. "lib/xamarinwatchos10/_._",
  4002. "ref/MonoAndroid10/_._",
  4003. "ref/MonoTouch10/_._",
  4004. "ref/net45/_._",
  4005. "ref/netcore50/System.ComponentModel.dll",
  4006. "ref/netcore50/System.ComponentModel.xml",
  4007. "ref/netcore50/de/System.ComponentModel.xml",
  4008. "ref/netcore50/es/System.ComponentModel.xml",
  4009. "ref/netcore50/fr/System.ComponentModel.xml",
  4010. "ref/netcore50/it/System.ComponentModel.xml",
  4011. "ref/netcore50/ja/System.ComponentModel.xml",
  4012. "ref/netcore50/ko/System.ComponentModel.xml",
  4013. "ref/netcore50/ru/System.ComponentModel.xml",
  4014. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  4015. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  4016. "ref/netstandard1.0/System.ComponentModel.dll",
  4017. "ref/netstandard1.0/System.ComponentModel.xml",
  4018. "ref/netstandard1.0/de/System.ComponentModel.xml",
  4019. "ref/netstandard1.0/es/System.ComponentModel.xml",
  4020. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  4021. "ref/netstandard1.0/it/System.ComponentModel.xml",
  4022. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  4023. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  4024. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  4025. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  4026. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  4027. "ref/portable-net45+win8+wp8+wpa81/_._",
  4028. "ref/win8/_._",
  4029. "ref/wp80/_._",
  4030. "ref/wpa81/_._",
  4031. "ref/xamarinios10/_._",
  4032. "ref/xamarinmac20/_._",
  4033. "ref/xamarintvos10/_._",
  4034. "ref/xamarinwatchos10/_._",
  4035. "system.componentmodel.4.3.0.nupkg.sha512",
  4036. "system.componentmodel.nuspec"
  4037. ]
  4038. },
  4039. "System.ComponentModel.Primitives/4.3.0": {
  4040. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  4041. "type": "package",
  4042. "path": "system.componentmodel.primitives/4.3.0",
  4043. "files": [
  4044. ".nupkg.metadata",
  4045. ".signature.p7s",
  4046. "ThirdPartyNotices.txt",
  4047. "dotnet_library_license.txt",
  4048. "lib/MonoAndroid10/_._",
  4049. "lib/MonoTouch10/_._",
  4050. "lib/net45/System.ComponentModel.Primitives.dll",
  4051. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  4052. "lib/xamarinios10/_._",
  4053. "lib/xamarinmac20/_._",
  4054. "lib/xamarintvos10/_._",
  4055. "lib/xamarinwatchos10/_._",
  4056. "ref/MonoAndroid10/_._",
  4057. "ref/MonoTouch10/_._",
  4058. "ref/net45/System.ComponentModel.Primitives.dll",
  4059. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  4060. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  4061. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  4062. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  4063. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  4064. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  4065. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  4066. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  4067. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  4068. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  4069. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  4070. "ref/xamarinios10/_._",
  4071. "ref/xamarinmac20/_._",
  4072. "ref/xamarintvos10/_._",
  4073. "ref/xamarinwatchos10/_._",
  4074. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  4075. "system.componentmodel.primitives.nuspec"
  4076. ]
  4077. },
  4078. "System.ComponentModel.TypeConverter/4.3.0": {
  4079. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  4080. "type": "package",
  4081. "path": "system.componentmodel.typeconverter/4.3.0",
  4082. "files": [
  4083. ".nupkg.metadata",
  4084. ".signature.p7s",
  4085. "ThirdPartyNotices.txt",
  4086. "dotnet_library_license.txt",
  4087. "lib/MonoAndroid10/_._",
  4088. "lib/MonoTouch10/_._",
  4089. "lib/net45/System.ComponentModel.TypeConverter.dll",
  4090. "lib/net462/System.ComponentModel.TypeConverter.dll",
  4091. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4092. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4093. "lib/xamarinios10/_._",
  4094. "lib/xamarinmac20/_._",
  4095. "lib/xamarintvos10/_._",
  4096. "lib/xamarinwatchos10/_._",
  4097. "ref/MonoAndroid10/_._",
  4098. "ref/MonoTouch10/_._",
  4099. "ref/net45/System.ComponentModel.TypeConverter.dll",
  4100. "ref/net462/System.ComponentModel.TypeConverter.dll",
  4101. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4102. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  4103. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  4104. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  4105. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  4106. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  4107. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  4108. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  4109. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  4110. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  4111. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  4112. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4113. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  4114. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  4115. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  4116. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  4117. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  4118. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  4119. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  4120. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  4121. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  4122. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  4123. "ref/xamarinios10/_._",
  4124. "ref/xamarinmac20/_._",
  4125. "ref/xamarintvos10/_._",
  4126. "ref/xamarinwatchos10/_._",
  4127. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  4128. "system.componentmodel.typeconverter.nuspec"
  4129. ]
  4130. },
  4131. "System.Configuration.ConfigurationManager/4.7.0": {
  4132. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  4133. "type": "package",
  4134. "path": "system.configuration.configurationmanager/4.7.0",
  4135. "files": [
  4136. ".nupkg.metadata",
  4137. ".signature.p7s",
  4138. "LICENSE.TXT",
  4139. "THIRD-PARTY-NOTICES.TXT",
  4140. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4141. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4142. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4143. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4144. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4145. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4146. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4147. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4148. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  4149. "system.configuration.configurationmanager.nuspec",
  4150. "useSharedDesignerContext.txt",
  4151. "version.txt"
  4152. ]
  4153. },
  4154. "System.Console/4.3.0": {
  4155. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4156. "type": "package",
  4157. "path": "system.console/4.3.0",
  4158. "files": [
  4159. ".nupkg.metadata",
  4160. ".signature.p7s",
  4161. "ThirdPartyNotices.txt",
  4162. "dotnet_library_license.txt",
  4163. "lib/MonoAndroid10/_._",
  4164. "lib/MonoTouch10/_._",
  4165. "lib/net46/System.Console.dll",
  4166. "lib/xamarinios10/_._",
  4167. "lib/xamarinmac20/_._",
  4168. "lib/xamarintvos10/_._",
  4169. "lib/xamarinwatchos10/_._",
  4170. "ref/MonoAndroid10/_._",
  4171. "ref/MonoTouch10/_._",
  4172. "ref/net46/System.Console.dll",
  4173. "ref/netstandard1.3/System.Console.dll",
  4174. "ref/netstandard1.3/System.Console.xml",
  4175. "ref/netstandard1.3/de/System.Console.xml",
  4176. "ref/netstandard1.3/es/System.Console.xml",
  4177. "ref/netstandard1.3/fr/System.Console.xml",
  4178. "ref/netstandard1.3/it/System.Console.xml",
  4179. "ref/netstandard1.3/ja/System.Console.xml",
  4180. "ref/netstandard1.3/ko/System.Console.xml",
  4181. "ref/netstandard1.3/ru/System.Console.xml",
  4182. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4183. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4184. "ref/xamarinios10/_._",
  4185. "ref/xamarinmac20/_._",
  4186. "ref/xamarintvos10/_._",
  4187. "ref/xamarinwatchos10/_._",
  4188. "system.console.4.3.0.nupkg.sha512",
  4189. "system.console.nuspec"
  4190. ]
  4191. },
  4192. "System.Data.Common/4.3.0": {
  4193. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  4194. "type": "package",
  4195. "path": "system.data.common/4.3.0",
  4196. "files": [
  4197. ".nupkg.metadata",
  4198. ".signature.p7s",
  4199. "ThirdPartyNotices.txt",
  4200. "dotnet_library_license.txt",
  4201. "lib/MonoAndroid10/_._",
  4202. "lib/MonoTouch10/_._",
  4203. "lib/net451/System.Data.Common.dll",
  4204. "lib/netstandard1.2/System.Data.Common.dll",
  4205. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4206. "lib/xamarinios10/_._",
  4207. "lib/xamarinmac20/_._",
  4208. "lib/xamarintvos10/_._",
  4209. "lib/xamarinwatchos10/_._",
  4210. "ref/MonoAndroid10/_._",
  4211. "ref/MonoTouch10/_._",
  4212. "ref/net451/System.Data.Common.dll",
  4213. "ref/netstandard1.2/System.Data.Common.dll",
  4214. "ref/netstandard1.2/System.Data.Common.xml",
  4215. "ref/netstandard1.2/de/System.Data.Common.xml",
  4216. "ref/netstandard1.2/es/System.Data.Common.xml",
  4217. "ref/netstandard1.2/fr/System.Data.Common.xml",
  4218. "ref/netstandard1.2/it/System.Data.Common.xml",
  4219. "ref/netstandard1.2/ja/System.Data.Common.xml",
  4220. "ref/netstandard1.2/ko/System.Data.Common.xml",
  4221. "ref/netstandard1.2/ru/System.Data.Common.xml",
  4222. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  4223. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  4224. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4225. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  4226. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  4227. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  4228. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  4229. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  4230. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  4231. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  4232. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  4233. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  4234. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  4235. "ref/xamarinios10/_._",
  4236. "ref/xamarinmac20/_._",
  4237. "ref/xamarintvos10/_._",
  4238. "ref/xamarinwatchos10/_._",
  4239. "system.data.common.4.3.0.nupkg.sha512",
  4240. "system.data.common.nuspec"
  4241. ]
  4242. },
  4243. "System.Diagnostics.Debug/4.3.0": {
  4244. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4245. "type": "package",
  4246. "path": "system.diagnostics.debug/4.3.0",
  4247. "files": [
  4248. ".nupkg.metadata",
  4249. ".signature.p7s",
  4250. "ThirdPartyNotices.txt",
  4251. "dotnet_library_license.txt",
  4252. "lib/MonoAndroid10/_._",
  4253. "lib/MonoTouch10/_._",
  4254. "lib/net45/_._",
  4255. "lib/portable-net45+win8+wp8+wpa81/_._",
  4256. "lib/win8/_._",
  4257. "lib/wp80/_._",
  4258. "lib/wpa81/_._",
  4259. "lib/xamarinios10/_._",
  4260. "lib/xamarinmac20/_._",
  4261. "lib/xamarintvos10/_._",
  4262. "lib/xamarinwatchos10/_._",
  4263. "ref/MonoAndroid10/_._",
  4264. "ref/MonoTouch10/_._",
  4265. "ref/net45/_._",
  4266. "ref/netcore50/System.Diagnostics.Debug.dll",
  4267. "ref/netcore50/System.Diagnostics.Debug.xml",
  4268. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4269. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4270. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4271. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4272. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4273. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4274. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4275. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4276. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4277. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4278. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4279. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4280. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4281. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4282. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4283. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4284. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4285. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4286. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4287. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4288. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4289. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4290. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4291. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4292. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4293. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4294. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4295. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4296. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4297. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4298. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4299. "ref/portable-net45+win8+wp8+wpa81/_._",
  4300. "ref/win8/_._",
  4301. "ref/wp80/_._",
  4302. "ref/wpa81/_._",
  4303. "ref/xamarinios10/_._",
  4304. "ref/xamarinmac20/_._",
  4305. "ref/xamarintvos10/_._",
  4306. "ref/xamarinwatchos10/_._",
  4307. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  4308. "system.diagnostics.debug.nuspec"
  4309. ]
  4310. },
  4311. "System.Diagnostics.DiagnosticSource/4.7.1": {
  4312. "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  4313. "type": "package",
  4314. "path": "system.diagnostics.diagnosticsource/4.7.1",
  4315. "files": [
  4316. ".nupkg.metadata",
  4317. ".signature.p7s",
  4318. "Icon.png",
  4319. "LICENSE.TXT",
  4320. "THIRD-PARTY-NOTICES.TXT",
  4321. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  4322. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  4323. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  4324. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  4325. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  4326. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  4327. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  4328. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  4329. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  4330. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  4331. "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
  4332. "system.diagnostics.diagnosticsource.nuspec",
  4333. "useSharedDesignerContext.txt",
  4334. "version.txt"
  4335. ]
  4336. },
  4337. "System.Diagnostics.PerformanceCounter/4.7.0": {
  4338. "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==",
  4339. "type": "package",
  4340. "path": "system.diagnostics.performancecounter/4.7.0",
  4341. "files": [
  4342. ".nupkg.metadata",
  4343. ".signature.p7s",
  4344. "LICENSE.TXT",
  4345. "THIRD-PARTY-NOTICES.TXT",
  4346. "lib/MonoAndroid10/_._",
  4347. "lib/MonoTouch10/_._",
  4348. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  4349. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  4350. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4351. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4352. "lib/xamarinios10/_._",
  4353. "lib/xamarinmac20/_._",
  4354. "lib/xamarintvos10/_._",
  4355. "lib/xamarinwatchos10/_._",
  4356. "ref/MonoAndroid10/_._",
  4357. "ref/MonoTouch10/_._",
  4358. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  4359. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  4360. "ref/net472/System.Diagnostics.PerformanceCounter.dll",
  4361. "ref/net472/System.Diagnostics.PerformanceCounter.xml",
  4362. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  4363. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  4364. "ref/xamarinios10/_._",
  4365. "ref/xamarinmac20/_._",
  4366. "ref/xamarintvos10/_._",
  4367. "ref/xamarinwatchos10/_._",
  4368. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  4369. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  4370. "system.diagnostics.performancecounter.4.7.0.nupkg.sha512",
  4371. "system.diagnostics.performancecounter.nuspec",
  4372. "useSharedDesignerContext.txt",
  4373. "version.txt"
  4374. ]
  4375. },
  4376. "System.Diagnostics.Tools/4.3.0": {
  4377. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  4378. "type": "package",
  4379. "path": "system.diagnostics.tools/4.3.0",
  4380. "files": [
  4381. ".nupkg.metadata",
  4382. ".signature.p7s",
  4383. "ThirdPartyNotices.txt",
  4384. "dotnet_library_license.txt",
  4385. "lib/MonoAndroid10/_._",
  4386. "lib/MonoTouch10/_._",
  4387. "lib/net45/_._",
  4388. "lib/portable-net45+win8+wp8+wpa81/_._",
  4389. "lib/win8/_._",
  4390. "lib/wp80/_._",
  4391. "lib/wpa81/_._",
  4392. "lib/xamarinios10/_._",
  4393. "lib/xamarinmac20/_._",
  4394. "lib/xamarintvos10/_._",
  4395. "lib/xamarinwatchos10/_._",
  4396. "ref/MonoAndroid10/_._",
  4397. "ref/MonoTouch10/_._",
  4398. "ref/net45/_._",
  4399. "ref/netcore50/System.Diagnostics.Tools.dll",
  4400. "ref/netcore50/System.Diagnostics.Tools.xml",
  4401. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  4402. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  4403. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  4404. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  4405. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  4406. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  4407. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  4408. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  4409. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  4410. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  4411. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  4412. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  4413. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  4414. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  4415. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  4416. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  4417. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  4418. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  4419. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  4420. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  4421. "ref/portable-net45+win8+wp8+wpa81/_._",
  4422. "ref/win8/_._",
  4423. "ref/wp80/_._",
  4424. "ref/wpa81/_._",
  4425. "ref/xamarinios10/_._",
  4426. "ref/xamarinmac20/_._",
  4427. "ref/xamarintvos10/_._",
  4428. "ref/xamarinwatchos10/_._",
  4429. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  4430. "system.diagnostics.tools.nuspec"
  4431. ]
  4432. },
  4433. "System.Diagnostics.Tracing/4.3.0": {
  4434. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4435. "type": "package",
  4436. "path": "system.diagnostics.tracing/4.3.0",
  4437. "files": [
  4438. ".nupkg.metadata",
  4439. ".signature.p7s",
  4440. "ThirdPartyNotices.txt",
  4441. "dotnet_library_license.txt",
  4442. "lib/MonoAndroid10/_._",
  4443. "lib/MonoTouch10/_._",
  4444. "lib/net45/_._",
  4445. "lib/net462/System.Diagnostics.Tracing.dll",
  4446. "lib/portable-net45+win8+wpa81/_._",
  4447. "lib/win8/_._",
  4448. "lib/wpa81/_._",
  4449. "lib/xamarinios10/_._",
  4450. "lib/xamarinmac20/_._",
  4451. "lib/xamarintvos10/_._",
  4452. "lib/xamarinwatchos10/_._",
  4453. "ref/MonoAndroid10/_._",
  4454. "ref/MonoTouch10/_._",
  4455. "ref/net45/_._",
  4456. "ref/net462/System.Diagnostics.Tracing.dll",
  4457. "ref/netcore50/System.Diagnostics.Tracing.dll",
  4458. "ref/netcore50/System.Diagnostics.Tracing.xml",
  4459. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  4460. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  4461. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  4462. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  4463. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  4464. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  4465. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  4466. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  4467. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  4468. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  4469. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  4470. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  4471. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  4472. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  4473. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  4474. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  4475. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  4476. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  4477. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  4478. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  4479. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  4480. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  4481. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  4482. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  4483. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  4484. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  4485. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  4486. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  4487. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  4488. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  4489. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  4490. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  4491. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  4492. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  4493. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  4494. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  4495. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  4496. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  4497. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  4498. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  4499. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  4500. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  4501. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  4502. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  4503. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  4504. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  4505. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  4506. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  4507. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  4508. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  4509. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  4510. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  4511. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  4512. "ref/portable-net45+win8+wpa81/_._",
  4513. "ref/win8/_._",
  4514. "ref/wpa81/_._",
  4515. "ref/xamarinios10/_._",
  4516. "ref/xamarinmac20/_._",
  4517. "ref/xamarintvos10/_._",
  4518. "ref/xamarinwatchos10/_._",
  4519. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  4520. "system.diagnostics.tracing.nuspec"
  4521. ]
  4522. },
  4523. "System.DirectoryServices/4.7.0": {
  4524. "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
  4525. "type": "package",
  4526. "path": "system.directoryservices/4.7.0",
  4527. "files": [
  4528. ".nupkg.metadata",
  4529. ".signature.p7s",
  4530. "LICENSE.TXT",
  4531. "THIRD-PARTY-NOTICES.TXT",
  4532. "lib/net45/_._",
  4533. "lib/netstandard2.0/System.DirectoryServices.dll",
  4534. "lib/netstandard2.0/System.DirectoryServices.xml",
  4535. "ref/net45/_._",
  4536. "ref/netstandard2.0/System.DirectoryServices.dll",
  4537. "ref/netstandard2.0/System.DirectoryServices.xml",
  4538. "runtimes/win/lib/net45/_._",
  4539. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll",
  4540. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml",
  4541. "system.directoryservices.4.7.0.nupkg.sha512",
  4542. "system.directoryservices.nuspec",
  4543. "useSharedDesignerContext.txt",
  4544. "version.txt"
  4545. ]
  4546. },
  4547. "System.DirectoryServices.Protocols/4.7.0": {
  4548. "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==",
  4549. "type": "package",
  4550. "path": "system.directoryservices.protocols/4.7.0",
  4551. "files": [
  4552. ".nupkg.metadata",
  4553. ".signature.p7s",
  4554. "LICENSE.TXT",
  4555. "THIRD-PARTY-NOTICES.TXT",
  4556. "lib/net45/_._",
  4557. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
  4558. "lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
  4559. "ref/net45/_._",
  4560. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll",
  4561. "ref/netstandard2.0/System.DirectoryServices.Protocols.xml",
  4562. "runtimes/win/lib/net45/_._",
  4563. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll",
  4564. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml",
  4565. "system.directoryservices.protocols.4.7.0.nupkg.sha512",
  4566. "system.directoryservices.protocols.nuspec",
  4567. "useSharedDesignerContext.txt",
  4568. "version.txt"
  4569. ]
  4570. },
  4571. "System.Drawing.Common/4.7.0": {
  4572. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  4573. "type": "package",
  4574. "path": "system.drawing.common/4.7.0",
  4575. "files": [
  4576. ".nupkg.metadata",
  4577. ".signature.p7s",
  4578. "LICENSE.TXT",
  4579. "THIRD-PARTY-NOTICES.TXT",
  4580. "lib/MonoAndroid10/_._",
  4581. "lib/MonoTouch10/_._",
  4582. "lib/net461/System.Drawing.Common.dll",
  4583. "lib/netstandard2.0/System.Drawing.Common.dll",
  4584. "lib/xamarinios10/_._",
  4585. "lib/xamarinmac20/_._",
  4586. "lib/xamarintvos10/_._",
  4587. "lib/xamarinwatchos10/_._",
  4588. "ref/MonoAndroid10/_._",
  4589. "ref/MonoTouch10/_._",
  4590. "ref/net461/System.Drawing.Common.dll",
  4591. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4592. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4593. "ref/netstandard2.0/System.Drawing.Common.dll",
  4594. "ref/xamarinios10/_._",
  4595. "ref/xamarinmac20/_._",
  4596. "ref/xamarintvos10/_._",
  4597. "ref/xamarinwatchos10/_._",
  4598. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4599. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4600. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4601. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4602. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4603. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4604. "system.drawing.common.4.7.0.nupkg.sha512",
  4605. "system.drawing.common.nuspec",
  4606. "useSharedDesignerContext.txt",
  4607. "version.txt"
  4608. ]
  4609. },
  4610. "System.Globalization/4.3.0": {
  4611. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4612. "type": "package",
  4613. "path": "system.globalization/4.3.0",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. ".signature.p7s",
  4617. "ThirdPartyNotices.txt",
  4618. "dotnet_library_license.txt",
  4619. "lib/MonoAndroid10/_._",
  4620. "lib/MonoTouch10/_._",
  4621. "lib/net45/_._",
  4622. "lib/portable-net45+win8+wp8+wpa81/_._",
  4623. "lib/win8/_._",
  4624. "lib/wp80/_._",
  4625. "lib/wpa81/_._",
  4626. "lib/xamarinios10/_._",
  4627. "lib/xamarinmac20/_._",
  4628. "lib/xamarintvos10/_._",
  4629. "lib/xamarinwatchos10/_._",
  4630. "ref/MonoAndroid10/_._",
  4631. "ref/MonoTouch10/_._",
  4632. "ref/net45/_._",
  4633. "ref/netcore50/System.Globalization.dll",
  4634. "ref/netcore50/System.Globalization.xml",
  4635. "ref/netcore50/de/System.Globalization.xml",
  4636. "ref/netcore50/es/System.Globalization.xml",
  4637. "ref/netcore50/fr/System.Globalization.xml",
  4638. "ref/netcore50/it/System.Globalization.xml",
  4639. "ref/netcore50/ja/System.Globalization.xml",
  4640. "ref/netcore50/ko/System.Globalization.xml",
  4641. "ref/netcore50/ru/System.Globalization.xml",
  4642. "ref/netcore50/zh-hans/System.Globalization.xml",
  4643. "ref/netcore50/zh-hant/System.Globalization.xml",
  4644. "ref/netstandard1.0/System.Globalization.dll",
  4645. "ref/netstandard1.0/System.Globalization.xml",
  4646. "ref/netstandard1.0/de/System.Globalization.xml",
  4647. "ref/netstandard1.0/es/System.Globalization.xml",
  4648. "ref/netstandard1.0/fr/System.Globalization.xml",
  4649. "ref/netstandard1.0/it/System.Globalization.xml",
  4650. "ref/netstandard1.0/ja/System.Globalization.xml",
  4651. "ref/netstandard1.0/ko/System.Globalization.xml",
  4652. "ref/netstandard1.0/ru/System.Globalization.xml",
  4653. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4654. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4655. "ref/netstandard1.3/System.Globalization.dll",
  4656. "ref/netstandard1.3/System.Globalization.xml",
  4657. "ref/netstandard1.3/de/System.Globalization.xml",
  4658. "ref/netstandard1.3/es/System.Globalization.xml",
  4659. "ref/netstandard1.3/fr/System.Globalization.xml",
  4660. "ref/netstandard1.3/it/System.Globalization.xml",
  4661. "ref/netstandard1.3/ja/System.Globalization.xml",
  4662. "ref/netstandard1.3/ko/System.Globalization.xml",
  4663. "ref/netstandard1.3/ru/System.Globalization.xml",
  4664. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4665. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4666. "ref/portable-net45+win8+wp8+wpa81/_._",
  4667. "ref/win8/_._",
  4668. "ref/wp80/_._",
  4669. "ref/wpa81/_._",
  4670. "ref/xamarinios10/_._",
  4671. "ref/xamarinmac20/_._",
  4672. "ref/xamarintvos10/_._",
  4673. "ref/xamarinwatchos10/_._",
  4674. "system.globalization.4.3.0.nupkg.sha512",
  4675. "system.globalization.nuspec"
  4676. ]
  4677. },
  4678. "System.Globalization.Calendars/4.3.0": {
  4679. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  4680. "type": "package",
  4681. "path": "system.globalization.calendars/4.3.0",
  4682. "files": [
  4683. ".nupkg.metadata",
  4684. ".signature.p7s",
  4685. "ThirdPartyNotices.txt",
  4686. "dotnet_library_license.txt",
  4687. "lib/MonoAndroid10/_._",
  4688. "lib/MonoTouch10/_._",
  4689. "lib/net46/System.Globalization.Calendars.dll",
  4690. "lib/xamarinios10/_._",
  4691. "lib/xamarinmac20/_._",
  4692. "lib/xamarintvos10/_._",
  4693. "lib/xamarinwatchos10/_._",
  4694. "ref/MonoAndroid10/_._",
  4695. "ref/MonoTouch10/_._",
  4696. "ref/net46/System.Globalization.Calendars.dll",
  4697. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  4698. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  4699. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  4700. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  4701. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  4702. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  4703. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  4704. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  4705. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  4706. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  4707. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  4708. "ref/xamarinios10/_._",
  4709. "ref/xamarinmac20/_._",
  4710. "ref/xamarintvos10/_._",
  4711. "ref/xamarinwatchos10/_._",
  4712. "system.globalization.calendars.4.3.0.nupkg.sha512",
  4713. "system.globalization.calendars.nuspec"
  4714. ]
  4715. },
  4716. "System.Globalization.Extensions/4.3.0": {
  4717. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  4718. "type": "package",
  4719. "path": "system.globalization.extensions/4.3.0",
  4720. "files": [
  4721. ".nupkg.metadata",
  4722. ".signature.p7s",
  4723. "ThirdPartyNotices.txt",
  4724. "dotnet_library_license.txt",
  4725. "lib/MonoAndroid10/_._",
  4726. "lib/MonoTouch10/_._",
  4727. "lib/net46/System.Globalization.Extensions.dll",
  4728. "lib/xamarinios10/_._",
  4729. "lib/xamarinmac20/_._",
  4730. "lib/xamarintvos10/_._",
  4731. "lib/xamarinwatchos10/_._",
  4732. "ref/MonoAndroid10/_._",
  4733. "ref/MonoTouch10/_._",
  4734. "ref/net46/System.Globalization.Extensions.dll",
  4735. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  4736. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  4737. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  4738. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  4739. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  4740. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  4741. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  4742. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  4743. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  4744. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  4745. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  4746. "ref/xamarinios10/_._",
  4747. "ref/xamarinmac20/_._",
  4748. "ref/xamarintvos10/_._",
  4749. "ref/xamarinwatchos10/_._",
  4750. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4751. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  4752. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  4753. "system.globalization.extensions.4.3.0.nupkg.sha512",
  4754. "system.globalization.extensions.nuspec"
  4755. ]
  4756. },
  4757. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  4758. "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==",
  4759. "type": "package",
  4760. "path": "system.identitymodel.tokens.jwt/6.8.0",
  4761. "files": [
  4762. ".nupkg.metadata",
  4763. ".signature.p7s",
  4764. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  4765. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  4766. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  4767. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  4768. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  4769. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  4770. "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512",
  4771. "system.identitymodel.tokens.jwt.nuspec"
  4772. ]
  4773. },
  4774. "System.IO/4.3.0": {
  4775. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4776. "type": "package",
  4777. "path": "system.io/4.3.0",
  4778. "files": [
  4779. ".nupkg.metadata",
  4780. ".signature.p7s",
  4781. "ThirdPartyNotices.txt",
  4782. "dotnet_library_license.txt",
  4783. "lib/MonoAndroid10/_._",
  4784. "lib/MonoTouch10/_._",
  4785. "lib/net45/_._",
  4786. "lib/net462/System.IO.dll",
  4787. "lib/portable-net45+win8+wp8+wpa81/_._",
  4788. "lib/win8/_._",
  4789. "lib/wp80/_._",
  4790. "lib/wpa81/_._",
  4791. "lib/xamarinios10/_._",
  4792. "lib/xamarinmac20/_._",
  4793. "lib/xamarintvos10/_._",
  4794. "lib/xamarinwatchos10/_._",
  4795. "ref/MonoAndroid10/_._",
  4796. "ref/MonoTouch10/_._",
  4797. "ref/net45/_._",
  4798. "ref/net462/System.IO.dll",
  4799. "ref/netcore50/System.IO.dll",
  4800. "ref/netcore50/System.IO.xml",
  4801. "ref/netcore50/de/System.IO.xml",
  4802. "ref/netcore50/es/System.IO.xml",
  4803. "ref/netcore50/fr/System.IO.xml",
  4804. "ref/netcore50/it/System.IO.xml",
  4805. "ref/netcore50/ja/System.IO.xml",
  4806. "ref/netcore50/ko/System.IO.xml",
  4807. "ref/netcore50/ru/System.IO.xml",
  4808. "ref/netcore50/zh-hans/System.IO.xml",
  4809. "ref/netcore50/zh-hant/System.IO.xml",
  4810. "ref/netstandard1.0/System.IO.dll",
  4811. "ref/netstandard1.0/System.IO.xml",
  4812. "ref/netstandard1.0/de/System.IO.xml",
  4813. "ref/netstandard1.0/es/System.IO.xml",
  4814. "ref/netstandard1.0/fr/System.IO.xml",
  4815. "ref/netstandard1.0/it/System.IO.xml",
  4816. "ref/netstandard1.0/ja/System.IO.xml",
  4817. "ref/netstandard1.0/ko/System.IO.xml",
  4818. "ref/netstandard1.0/ru/System.IO.xml",
  4819. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4820. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4821. "ref/netstandard1.3/System.IO.dll",
  4822. "ref/netstandard1.3/System.IO.xml",
  4823. "ref/netstandard1.3/de/System.IO.xml",
  4824. "ref/netstandard1.3/es/System.IO.xml",
  4825. "ref/netstandard1.3/fr/System.IO.xml",
  4826. "ref/netstandard1.3/it/System.IO.xml",
  4827. "ref/netstandard1.3/ja/System.IO.xml",
  4828. "ref/netstandard1.3/ko/System.IO.xml",
  4829. "ref/netstandard1.3/ru/System.IO.xml",
  4830. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4831. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4832. "ref/netstandard1.5/System.IO.dll",
  4833. "ref/netstandard1.5/System.IO.xml",
  4834. "ref/netstandard1.5/de/System.IO.xml",
  4835. "ref/netstandard1.5/es/System.IO.xml",
  4836. "ref/netstandard1.5/fr/System.IO.xml",
  4837. "ref/netstandard1.5/it/System.IO.xml",
  4838. "ref/netstandard1.5/ja/System.IO.xml",
  4839. "ref/netstandard1.5/ko/System.IO.xml",
  4840. "ref/netstandard1.5/ru/System.IO.xml",
  4841. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4842. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4843. "ref/portable-net45+win8+wp8+wpa81/_._",
  4844. "ref/win8/_._",
  4845. "ref/wp80/_._",
  4846. "ref/wpa81/_._",
  4847. "ref/xamarinios10/_._",
  4848. "ref/xamarinmac20/_._",
  4849. "ref/xamarintvos10/_._",
  4850. "ref/xamarinwatchos10/_._",
  4851. "system.io.4.3.0.nupkg.sha512",
  4852. "system.io.nuspec"
  4853. ]
  4854. },
  4855. "System.IO.Compression/4.3.0": {
  4856. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  4857. "type": "package",
  4858. "path": "system.io.compression/4.3.0",
  4859. "files": [
  4860. ".nupkg.metadata",
  4861. ".signature.p7s",
  4862. "ThirdPartyNotices.txt",
  4863. "dotnet_library_license.txt",
  4864. "lib/MonoAndroid10/_._",
  4865. "lib/MonoTouch10/_._",
  4866. "lib/net45/_._",
  4867. "lib/net46/System.IO.Compression.dll",
  4868. "lib/portable-net45+win8+wpa81/_._",
  4869. "lib/win8/_._",
  4870. "lib/wpa81/_._",
  4871. "lib/xamarinios10/_._",
  4872. "lib/xamarinmac20/_._",
  4873. "lib/xamarintvos10/_._",
  4874. "lib/xamarinwatchos10/_._",
  4875. "ref/MonoAndroid10/_._",
  4876. "ref/MonoTouch10/_._",
  4877. "ref/net45/_._",
  4878. "ref/net46/System.IO.Compression.dll",
  4879. "ref/netcore50/System.IO.Compression.dll",
  4880. "ref/netcore50/System.IO.Compression.xml",
  4881. "ref/netcore50/de/System.IO.Compression.xml",
  4882. "ref/netcore50/es/System.IO.Compression.xml",
  4883. "ref/netcore50/fr/System.IO.Compression.xml",
  4884. "ref/netcore50/it/System.IO.Compression.xml",
  4885. "ref/netcore50/ja/System.IO.Compression.xml",
  4886. "ref/netcore50/ko/System.IO.Compression.xml",
  4887. "ref/netcore50/ru/System.IO.Compression.xml",
  4888. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  4889. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  4890. "ref/netstandard1.1/System.IO.Compression.dll",
  4891. "ref/netstandard1.1/System.IO.Compression.xml",
  4892. "ref/netstandard1.1/de/System.IO.Compression.xml",
  4893. "ref/netstandard1.1/es/System.IO.Compression.xml",
  4894. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  4895. "ref/netstandard1.1/it/System.IO.Compression.xml",
  4896. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  4897. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  4898. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  4899. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  4900. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  4901. "ref/netstandard1.3/System.IO.Compression.dll",
  4902. "ref/netstandard1.3/System.IO.Compression.xml",
  4903. "ref/netstandard1.3/de/System.IO.Compression.xml",
  4904. "ref/netstandard1.3/es/System.IO.Compression.xml",
  4905. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  4906. "ref/netstandard1.3/it/System.IO.Compression.xml",
  4907. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  4908. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  4909. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  4910. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  4911. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  4912. "ref/portable-net45+win8+wpa81/_._",
  4913. "ref/win8/_._",
  4914. "ref/wpa81/_._",
  4915. "ref/xamarinios10/_._",
  4916. "ref/xamarinmac20/_._",
  4917. "ref/xamarintvos10/_._",
  4918. "ref/xamarinwatchos10/_._",
  4919. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  4920. "runtimes/win/lib/net46/System.IO.Compression.dll",
  4921. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  4922. "system.io.compression.4.3.0.nupkg.sha512",
  4923. "system.io.compression.nuspec"
  4924. ]
  4925. },
  4926. "System.IO.Compression.ZipFile/4.3.0": {
  4927. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  4928. "type": "package",
  4929. "path": "system.io.compression.zipfile/4.3.0",
  4930. "files": [
  4931. ".nupkg.metadata",
  4932. ".signature.p7s",
  4933. "ThirdPartyNotices.txt",
  4934. "dotnet_library_license.txt",
  4935. "lib/MonoAndroid10/_._",
  4936. "lib/MonoTouch10/_._",
  4937. "lib/net46/System.IO.Compression.ZipFile.dll",
  4938. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4939. "lib/xamarinios10/_._",
  4940. "lib/xamarinmac20/_._",
  4941. "lib/xamarintvos10/_._",
  4942. "lib/xamarinwatchos10/_._",
  4943. "ref/MonoAndroid10/_._",
  4944. "ref/MonoTouch10/_._",
  4945. "ref/net46/System.IO.Compression.ZipFile.dll",
  4946. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  4947. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  4948. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  4949. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  4950. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  4951. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  4952. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  4953. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  4954. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  4955. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  4956. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  4957. "ref/xamarinios10/_._",
  4958. "ref/xamarinmac20/_._",
  4959. "ref/xamarintvos10/_._",
  4960. "ref/xamarinwatchos10/_._",
  4961. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  4962. "system.io.compression.zipfile.nuspec"
  4963. ]
  4964. },
  4965. "System.IO.FileSystem/4.3.0": {
  4966. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  4967. "type": "package",
  4968. "path": "system.io.filesystem/4.3.0",
  4969. "files": [
  4970. ".nupkg.metadata",
  4971. ".signature.p7s",
  4972. "ThirdPartyNotices.txt",
  4973. "dotnet_library_license.txt",
  4974. "lib/MonoAndroid10/_._",
  4975. "lib/MonoTouch10/_._",
  4976. "lib/net46/System.IO.FileSystem.dll",
  4977. "lib/xamarinios10/_._",
  4978. "lib/xamarinmac20/_._",
  4979. "lib/xamarintvos10/_._",
  4980. "lib/xamarinwatchos10/_._",
  4981. "ref/MonoAndroid10/_._",
  4982. "ref/MonoTouch10/_._",
  4983. "ref/net46/System.IO.FileSystem.dll",
  4984. "ref/netstandard1.3/System.IO.FileSystem.dll",
  4985. "ref/netstandard1.3/System.IO.FileSystem.xml",
  4986. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  4987. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  4988. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  4989. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  4990. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  4991. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  4992. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  4993. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  4994. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  4995. "ref/xamarinios10/_._",
  4996. "ref/xamarinmac20/_._",
  4997. "ref/xamarintvos10/_._",
  4998. "ref/xamarinwatchos10/_._",
  4999. "system.io.filesystem.4.3.0.nupkg.sha512",
  5000. "system.io.filesystem.nuspec"
  5001. ]
  5002. },
  5003. "System.IO.FileSystem.AccessControl/4.7.0": {
  5004. "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
  5005. "type": "package",
  5006. "path": "system.io.filesystem.accesscontrol/4.7.0",
  5007. "files": [
  5008. ".nupkg.metadata",
  5009. ".signature.p7s",
  5010. "LICENSE.TXT",
  5011. "THIRD-PARTY-NOTICES.TXT",
  5012. "lib/net46/System.IO.FileSystem.AccessControl.dll",
  5013. "lib/net461/System.IO.FileSystem.AccessControl.dll",
  5014. "lib/net461/System.IO.FileSystem.AccessControl.xml",
  5015. "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5016. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5017. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5018. "ref/net46/System.IO.FileSystem.AccessControl.dll",
  5019. "ref/net461/System.IO.FileSystem.AccessControl.dll",
  5020. "ref/net461/System.IO.FileSystem.AccessControl.xml",
  5021. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5022. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
  5023. "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
  5024. "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
  5025. "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
  5026. "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
  5027. "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
  5028. "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
  5029. "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
  5030. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
  5031. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
  5032. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5033. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5034. "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
  5035. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
  5036. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
  5037. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5038. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5039. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5040. "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512",
  5041. "system.io.filesystem.accesscontrol.nuspec",
  5042. "useSharedDesignerContext.txt",
  5043. "version.txt"
  5044. ]
  5045. },
  5046. "System.IO.FileSystem.Primitives/4.3.0": {
  5047. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5048. "type": "package",
  5049. "path": "system.io.filesystem.primitives/4.3.0",
  5050. "files": [
  5051. ".nupkg.metadata",
  5052. ".signature.p7s",
  5053. "ThirdPartyNotices.txt",
  5054. "dotnet_library_license.txt",
  5055. "lib/MonoAndroid10/_._",
  5056. "lib/MonoTouch10/_._",
  5057. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5058. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5059. "lib/xamarinios10/_._",
  5060. "lib/xamarinmac20/_._",
  5061. "lib/xamarintvos10/_._",
  5062. "lib/xamarinwatchos10/_._",
  5063. "ref/MonoAndroid10/_._",
  5064. "ref/MonoTouch10/_._",
  5065. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5066. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5067. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5068. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5069. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5070. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5071. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5072. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5073. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5074. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5075. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5076. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5077. "ref/xamarinios10/_._",
  5078. "ref/xamarinmac20/_._",
  5079. "ref/xamarintvos10/_._",
  5080. "ref/xamarinwatchos10/_._",
  5081. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5082. "system.io.filesystem.primitives.nuspec"
  5083. ]
  5084. },
  5085. "System.Linq/4.3.0": {
  5086. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5087. "type": "package",
  5088. "path": "system.linq/4.3.0",
  5089. "files": [
  5090. ".nupkg.metadata",
  5091. ".signature.p7s",
  5092. "ThirdPartyNotices.txt",
  5093. "dotnet_library_license.txt",
  5094. "lib/MonoAndroid10/_._",
  5095. "lib/MonoTouch10/_._",
  5096. "lib/net45/_._",
  5097. "lib/net463/System.Linq.dll",
  5098. "lib/netcore50/System.Linq.dll",
  5099. "lib/netstandard1.6/System.Linq.dll",
  5100. "lib/portable-net45+win8+wp8+wpa81/_._",
  5101. "lib/win8/_._",
  5102. "lib/wp80/_._",
  5103. "lib/wpa81/_._",
  5104. "lib/xamarinios10/_._",
  5105. "lib/xamarinmac20/_._",
  5106. "lib/xamarintvos10/_._",
  5107. "lib/xamarinwatchos10/_._",
  5108. "ref/MonoAndroid10/_._",
  5109. "ref/MonoTouch10/_._",
  5110. "ref/net45/_._",
  5111. "ref/net463/System.Linq.dll",
  5112. "ref/netcore50/System.Linq.dll",
  5113. "ref/netcore50/System.Linq.xml",
  5114. "ref/netcore50/de/System.Linq.xml",
  5115. "ref/netcore50/es/System.Linq.xml",
  5116. "ref/netcore50/fr/System.Linq.xml",
  5117. "ref/netcore50/it/System.Linq.xml",
  5118. "ref/netcore50/ja/System.Linq.xml",
  5119. "ref/netcore50/ko/System.Linq.xml",
  5120. "ref/netcore50/ru/System.Linq.xml",
  5121. "ref/netcore50/zh-hans/System.Linq.xml",
  5122. "ref/netcore50/zh-hant/System.Linq.xml",
  5123. "ref/netstandard1.0/System.Linq.dll",
  5124. "ref/netstandard1.0/System.Linq.xml",
  5125. "ref/netstandard1.0/de/System.Linq.xml",
  5126. "ref/netstandard1.0/es/System.Linq.xml",
  5127. "ref/netstandard1.0/fr/System.Linq.xml",
  5128. "ref/netstandard1.0/it/System.Linq.xml",
  5129. "ref/netstandard1.0/ja/System.Linq.xml",
  5130. "ref/netstandard1.0/ko/System.Linq.xml",
  5131. "ref/netstandard1.0/ru/System.Linq.xml",
  5132. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5133. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5134. "ref/netstandard1.6/System.Linq.dll",
  5135. "ref/netstandard1.6/System.Linq.xml",
  5136. "ref/netstandard1.6/de/System.Linq.xml",
  5137. "ref/netstandard1.6/es/System.Linq.xml",
  5138. "ref/netstandard1.6/fr/System.Linq.xml",
  5139. "ref/netstandard1.6/it/System.Linq.xml",
  5140. "ref/netstandard1.6/ja/System.Linq.xml",
  5141. "ref/netstandard1.6/ko/System.Linq.xml",
  5142. "ref/netstandard1.6/ru/System.Linq.xml",
  5143. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5144. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5145. "ref/portable-net45+win8+wp8+wpa81/_._",
  5146. "ref/win8/_._",
  5147. "ref/wp80/_._",
  5148. "ref/wpa81/_._",
  5149. "ref/xamarinios10/_._",
  5150. "ref/xamarinmac20/_._",
  5151. "ref/xamarintvos10/_._",
  5152. "ref/xamarinwatchos10/_._",
  5153. "system.linq.4.3.0.nupkg.sha512",
  5154. "system.linq.nuspec"
  5155. ]
  5156. },
  5157. "System.Linq.Expressions/4.3.0": {
  5158. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5159. "type": "package",
  5160. "path": "system.linq.expressions/4.3.0",
  5161. "files": [
  5162. ".nupkg.metadata",
  5163. ".signature.p7s",
  5164. "ThirdPartyNotices.txt",
  5165. "dotnet_library_license.txt",
  5166. "lib/MonoAndroid10/_._",
  5167. "lib/MonoTouch10/_._",
  5168. "lib/net45/_._",
  5169. "lib/net463/System.Linq.Expressions.dll",
  5170. "lib/netcore50/System.Linq.Expressions.dll",
  5171. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5172. "lib/portable-net45+win8+wp8+wpa81/_._",
  5173. "lib/win8/_._",
  5174. "lib/wp80/_._",
  5175. "lib/wpa81/_._",
  5176. "lib/xamarinios10/_._",
  5177. "lib/xamarinmac20/_._",
  5178. "lib/xamarintvos10/_._",
  5179. "lib/xamarinwatchos10/_._",
  5180. "ref/MonoAndroid10/_._",
  5181. "ref/MonoTouch10/_._",
  5182. "ref/net45/_._",
  5183. "ref/net463/System.Linq.Expressions.dll",
  5184. "ref/netcore50/System.Linq.Expressions.dll",
  5185. "ref/netcore50/System.Linq.Expressions.xml",
  5186. "ref/netcore50/de/System.Linq.Expressions.xml",
  5187. "ref/netcore50/es/System.Linq.Expressions.xml",
  5188. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5189. "ref/netcore50/it/System.Linq.Expressions.xml",
  5190. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5191. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5192. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5193. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5194. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5195. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5196. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5197. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5198. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5199. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5200. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5201. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5202. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5203. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5204. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5205. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5206. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5207. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5208. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5209. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5210. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5211. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5212. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5213. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5214. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5215. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5216. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5217. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5218. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5219. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5220. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5221. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5222. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5223. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5224. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5225. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5226. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5227. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5228. "ref/portable-net45+win8+wp8+wpa81/_._",
  5229. "ref/win8/_._",
  5230. "ref/wp80/_._",
  5231. "ref/wpa81/_._",
  5232. "ref/xamarinios10/_._",
  5233. "ref/xamarinmac20/_._",
  5234. "ref/xamarintvos10/_._",
  5235. "ref/xamarinwatchos10/_._",
  5236. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5237. "system.linq.expressions.4.3.0.nupkg.sha512",
  5238. "system.linq.expressions.nuspec"
  5239. ]
  5240. },
  5241. "System.Memory/4.5.4": {
  5242. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  5243. "type": "package",
  5244. "path": "system.memory/4.5.4",
  5245. "files": [
  5246. ".nupkg.metadata",
  5247. ".signature.p7s",
  5248. "LICENSE.TXT",
  5249. "THIRD-PARTY-NOTICES.TXT",
  5250. "lib/net461/System.Memory.dll",
  5251. "lib/net461/System.Memory.xml",
  5252. "lib/netcoreapp2.1/_._",
  5253. "lib/netstandard1.1/System.Memory.dll",
  5254. "lib/netstandard1.1/System.Memory.xml",
  5255. "lib/netstandard2.0/System.Memory.dll",
  5256. "lib/netstandard2.0/System.Memory.xml",
  5257. "ref/netcoreapp2.1/_._",
  5258. "system.memory.4.5.4.nupkg.sha512",
  5259. "system.memory.nuspec",
  5260. "useSharedDesignerContext.txt",
  5261. "version.txt"
  5262. ]
  5263. },
  5264. "System.Net.Http/4.3.0": {
  5265. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  5266. "type": "package",
  5267. "path": "system.net.http/4.3.0",
  5268. "files": [
  5269. ".nupkg.metadata",
  5270. ".signature.p7s",
  5271. "ThirdPartyNotices.txt",
  5272. "dotnet_library_license.txt",
  5273. "lib/Xamarinmac20/_._",
  5274. "lib/monoandroid10/_._",
  5275. "lib/monotouch10/_._",
  5276. "lib/net45/_._",
  5277. "lib/net46/System.Net.Http.dll",
  5278. "lib/portable-net45+win8+wpa81/_._",
  5279. "lib/win8/_._",
  5280. "lib/wpa81/_._",
  5281. "lib/xamarinios10/_._",
  5282. "lib/xamarintvos10/_._",
  5283. "lib/xamarinwatchos10/_._",
  5284. "ref/Xamarinmac20/_._",
  5285. "ref/monoandroid10/_._",
  5286. "ref/monotouch10/_._",
  5287. "ref/net45/_._",
  5288. "ref/net46/System.Net.Http.dll",
  5289. "ref/net46/System.Net.Http.xml",
  5290. "ref/net46/de/System.Net.Http.xml",
  5291. "ref/net46/es/System.Net.Http.xml",
  5292. "ref/net46/fr/System.Net.Http.xml",
  5293. "ref/net46/it/System.Net.Http.xml",
  5294. "ref/net46/ja/System.Net.Http.xml",
  5295. "ref/net46/ko/System.Net.Http.xml",
  5296. "ref/net46/ru/System.Net.Http.xml",
  5297. "ref/net46/zh-hans/System.Net.Http.xml",
  5298. "ref/net46/zh-hant/System.Net.Http.xml",
  5299. "ref/netcore50/System.Net.Http.dll",
  5300. "ref/netcore50/System.Net.Http.xml",
  5301. "ref/netcore50/de/System.Net.Http.xml",
  5302. "ref/netcore50/es/System.Net.Http.xml",
  5303. "ref/netcore50/fr/System.Net.Http.xml",
  5304. "ref/netcore50/it/System.Net.Http.xml",
  5305. "ref/netcore50/ja/System.Net.Http.xml",
  5306. "ref/netcore50/ko/System.Net.Http.xml",
  5307. "ref/netcore50/ru/System.Net.Http.xml",
  5308. "ref/netcore50/zh-hans/System.Net.Http.xml",
  5309. "ref/netcore50/zh-hant/System.Net.Http.xml",
  5310. "ref/netstandard1.1/System.Net.Http.dll",
  5311. "ref/netstandard1.1/System.Net.Http.xml",
  5312. "ref/netstandard1.1/de/System.Net.Http.xml",
  5313. "ref/netstandard1.1/es/System.Net.Http.xml",
  5314. "ref/netstandard1.1/fr/System.Net.Http.xml",
  5315. "ref/netstandard1.1/it/System.Net.Http.xml",
  5316. "ref/netstandard1.1/ja/System.Net.Http.xml",
  5317. "ref/netstandard1.1/ko/System.Net.Http.xml",
  5318. "ref/netstandard1.1/ru/System.Net.Http.xml",
  5319. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  5320. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  5321. "ref/netstandard1.3/System.Net.Http.dll",
  5322. "ref/netstandard1.3/System.Net.Http.xml",
  5323. "ref/netstandard1.3/de/System.Net.Http.xml",
  5324. "ref/netstandard1.3/es/System.Net.Http.xml",
  5325. "ref/netstandard1.3/fr/System.Net.Http.xml",
  5326. "ref/netstandard1.3/it/System.Net.Http.xml",
  5327. "ref/netstandard1.3/ja/System.Net.Http.xml",
  5328. "ref/netstandard1.3/ko/System.Net.Http.xml",
  5329. "ref/netstandard1.3/ru/System.Net.Http.xml",
  5330. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  5331. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  5332. "ref/portable-net45+win8+wpa81/_._",
  5333. "ref/win8/_._",
  5334. "ref/wpa81/_._",
  5335. "ref/xamarinios10/_._",
  5336. "ref/xamarintvos10/_._",
  5337. "ref/xamarinwatchos10/_._",
  5338. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  5339. "runtimes/win/lib/net46/System.Net.Http.dll",
  5340. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  5341. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  5342. "system.net.http.4.3.0.nupkg.sha512",
  5343. "system.net.http.nuspec"
  5344. ]
  5345. },
  5346. "System.Net.Primitives/4.3.0": {
  5347. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  5348. "type": "package",
  5349. "path": "system.net.primitives/4.3.0",
  5350. "files": [
  5351. ".nupkg.metadata",
  5352. ".signature.p7s",
  5353. "ThirdPartyNotices.txt",
  5354. "dotnet_library_license.txt",
  5355. "lib/MonoAndroid10/_._",
  5356. "lib/MonoTouch10/_._",
  5357. "lib/net45/_._",
  5358. "lib/portable-net45+win8+wp8+wpa81/_._",
  5359. "lib/win8/_._",
  5360. "lib/wp80/_._",
  5361. "lib/wpa81/_._",
  5362. "lib/xamarinios10/_._",
  5363. "lib/xamarinmac20/_._",
  5364. "lib/xamarintvos10/_._",
  5365. "lib/xamarinwatchos10/_._",
  5366. "ref/MonoAndroid10/_._",
  5367. "ref/MonoTouch10/_._",
  5368. "ref/net45/_._",
  5369. "ref/netcore50/System.Net.Primitives.dll",
  5370. "ref/netcore50/System.Net.Primitives.xml",
  5371. "ref/netcore50/de/System.Net.Primitives.xml",
  5372. "ref/netcore50/es/System.Net.Primitives.xml",
  5373. "ref/netcore50/fr/System.Net.Primitives.xml",
  5374. "ref/netcore50/it/System.Net.Primitives.xml",
  5375. "ref/netcore50/ja/System.Net.Primitives.xml",
  5376. "ref/netcore50/ko/System.Net.Primitives.xml",
  5377. "ref/netcore50/ru/System.Net.Primitives.xml",
  5378. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  5379. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  5380. "ref/netstandard1.0/System.Net.Primitives.dll",
  5381. "ref/netstandard1.0/System.Net.Primitives.xml",
  5382. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  5383. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  5384. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  5385. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  5386. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  5387. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  5388. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  5389. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  5390. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  5391. "ref/netstandard1.1/System.Net.Primitives.dll",
  5392. "ref/netstandard1.1/System.Net.Primitives.xml",
  5393. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  5394. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  5395. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  5396. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  5397. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  5398. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  5399. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  5400. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  5401. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  5402. "ref/netstandard1.3/System.Net.Primitives.dll",
  5403. "ref/netstandard1.3/System.Net.Primitives.xml",
  5404. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  5405. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  5406. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  5407. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  5408. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  5409. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  5410. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  5411. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  5412. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  5413. "ref/portable-net45+win8+wp8+wpa81/_._",
  5414. "ref/win8/_._",
  5415. "ref/wp80/_._",
  5416. "ref/wpa81/_._",
  5417. "ref/xamarinios10/_._",
  5418. "ref/xamarinmac20/_._",
  5419. "ref/xamarintvos10/_._",
  5420. "ref/xamarinwatchos10/_._",
  5421. "system.net.primitives.4.3.0.nupkg.sha512",
  5422. "system.net.primitives.nuspec"
  5423. ]
  5424. },
  5425. "System.Net.Sockets/4.3.0": {
  5426. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  5427. "type": "package",
  5428. "path": "system.net.sockets/4.3.0",
  5429. "files": [
  5430. ".nupkg.metadata",
  5431. ".signature.p7s",
  5432. "ThirdPartyNotices.txt",
  5433. "dotnet_library_license.txt",
  5434. "lib/MonoAndroid10/_._",
  5435. "lib/MonoTouch10/_._",
  5436. "lib/net46/System.Net.Sockets.dll",
  5437. "lib/xamarinios10/_._",
  5438. "lib/xamarinmac20/_._",
  5439. "lib/xamarintvos10/_._",
  5440. "lib/xamarinwatchos10/_._",
  5441. "ref/MonoAndroid10/_._",
  5442. "ref/MonoTouch10/_._",
  5443. "ref/net46/System.Net.Sockets.dll",
  5444. "ref/netstandard1.3/System.Net.Sockets.dll",
  5445. "ref/netstandard1.3/System.Net.Sockets.xml",
  5446. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  5447. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  5448. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  5449. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  5450. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  5451. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  5452. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  5453. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  5454. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  5455. "ref/xamarinios10/_._",
  5456. "ref/xamarinmac20/_._",
  5457. "ref/xamarintvos10/_._",
  5458. "ref/xamarinwatchos10/_._",
  5459. "system.net.sockets.4.3.0.nupkg.sha512",
  5460. "system.net.sockets.nuspec"
  5461. ]
  5462. },
  5463. "System.ObjectModel/4.3.0": {
  5464. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  5465. "type": "package",
  5466. "path": "system.objectmodel/4.3.0",
  5467. "files": [
  5468. ".nupkg.metadata",
  5469. ".signature.p7s",
  5470. "ThirdPartyNotices.txt",
  5471. "dotnet_library_license.txt",
  5472. "lib/MonoAndroid10/_._",
  5473. "lib/MonoTouch10/_._",
  5474. "lib/net45/_._",
  5475. "lib/netcore50/System.ObjectModel.dll",
  5476. "lib/netstandard1.3/System.ObjectModel.dll",
  5477. "lib/portable-net45+win8+wp8+wpa81/_._",
  5478. "lib/win8/_._",
  5479. "lib/wp80/_._",
  5480. "lib/wpa81/_._",
  5481. "lib/xamarinios10/_._",
  5482. "lib/xamarinmac20/_._",
  5483. "lib/xamarintvos10/_._",
  5484. "lib/xamarinwatchos10/_._",
  5485. "ref/MonoAndroid10/_._",
  5486. "ref/MonoTouch10/_._",
  5487. "ref/net45/_._",
  5488. "ref/netcore50/System.ObjectModel.dll",
  5489. "ref/netcore50/System.ObjectModel.xml",
  5490. "ref/netcore50/de/System.ObjectModel.xml",
  5491. "ref/netcore50/es/System.ObjectModel.xml",
  5492. "ref/netcore50/fr/System.ObjectModel.xml",
  5493. "ref/netcore50/it/System.ObjectModel.xml",
  5494. "ref/netcore50/ja/System.ObjectModel.xml",
  5495. "ref/netcore50/ko/System.ObjectModel.xml",
  5496. "ref/netcore50/ru/System.ObjectModel.xml",
  5497. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  5498. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  5499. "ref/netstandard1.0/System.ObjectModel.dll",
  5500. "ref/netstandard1.0/System.ObjectModel.xml",
  5501. "ref/netstandard1.0/de/System.ObjectModel.xml",
  5502. "ref/netstandard1.0/es/System.ObjectModel.xml",
  5503. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  5504. "ref/netstandard1.0/it/System.ObjectModel.xml",
  5505. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  5506. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  5507. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  5508. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  5509. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  5510. "ref/netstandard1.3/System.ObjectModel.dll",
  5511. "ref/netstandard1.3/System.ObjectModel.xml",
  5512. "ref/netstandard1.3/de/System.ObjectModel.xml",
  5513. "ref/netstandard1.3/es/System.ObjectModel.xml",
  5514. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  5515. "ref/netstandard1.3/it/System.ObjectModel.xml",
  5516. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  5517. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  5518. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  5519. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  5520. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  5521. "ref/portable-net45+win8+wp8+wpa81/_._",
  5522. "ref/win8/_._",
  5523. "ref/wp80/_._",
  5524. "ref/wpa81/_._",
  5525. "ref/xamarinios10/_._",
  5526. "ref/xamarinmac20/_._",
  5527. "ref/xamarintvos10/_._",
  5528. "ref/xamarinwatchos10/_._",
  5529. "system.objectmodel.4.3.0.nupkg.sha512",
  5530. "system.objectmodel.nuspec"
  5531. ]
  5532. },
  5533. "System.Reflection/4.3.0": {
  5534. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  5535. "type": "package",
  5536. "path": "system.reflection/4.3.0",
  5537. "files": [
  5538. ".nupkg.metadata",
  5539. ".signature.p7s",
  5540. "ThirdPartyNotices.txt",
  5541. "dotnet_library_license.txt",
  5542. "lib/MonoAndroid10/_._",
  5543. "lib/MonoTouch10/_._",
  5544. "lib/net45/_._",
  5545. "lib/net462/System.Reflection.dll",
  5546. "lib/portable-net45+win8+wp8+wpa81/_._",
  5547. "lib/win8/_._",
  5548. "lib/wp80/_._",
  5549. "lib/wpa81/_._",
  5550. "lib/xamarinios10/_._",
  5551. "lib/xamarinmac20/_._",
  5552. "lib/xamarintvos10/_._",
  5553. "lib/xamarinwatchos10/_._",
  5554. "ref/MonoAndroid10/_._",
  5555. "ref/MonoTouch10/_._",
  5556. "ref/net45/_._",
  5557. "ref/net462/System.Reflection.dll",
  5558. "ref/netcore50/System.Reflection.dll",
  5559. "ref/netcore50/System.Reflection.xml",
  5560. "ref/netcore50/de/System.Reflection.xml",
  5561. "ref/netcore50/es/System.Reflection.xml",
  5562. "ref/netcore50/fr/System.Reflection.xml",
  5563. "ref/netcore50/it/System.Reflection.xml",
  5564. "ref/netcore50/ja/System.Reflection.xml",
  5565. "ref/netcore50/ko/System.Reflection.xml",
  5566. "ref/netcore50/ru/System.Reflection.xml",
  5567. "ref/netcore50/zh-hans/System.Reflection.xml",
  5568. "ref/netcore50/zh-hant/System.Reflection.xml",
  5569. "ref/netstandard1.0/System.Reflection.dll",
  5570. "ref/netstandard1.0/System.Reflection.xml",
  5571. "ref/netstandard1.0/de/System.Reflection.xml",
  5572. "ref/netstandard1.0/es/System.Reflection.xml",
  5573. "ref/netstandard1.0/fr/System.Reflection.xml",
  5574. "ref/netstandard1.0/it/System.Reflection.xml",
  5575. "ref/netstandard1.0/ja/System.Reflection.xml",
  5576. "ref/netstandard1.0/ko/System.Reflection.xml",
  5577. "ref/netstandard1.0/ru/System.Reflection.xml",
  5578. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  5579. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  5580. "ref/netstandard1.3/System.Reflection.dll",
  5581. "ref/netstandard1.3/System.Reflection.xml",
  5582. "ref/netstandard1.3/de/System.Reflection.xml",
  5583. "ref/netstandard1.3/es/System.Reflection.xml",
  5584. "ref/netstandard1.3/fr/System.Reflection.xml",
  5585. "ref/netstandard1.3/it/System.Reflection.xml",
  5586. "ref/netstandard1.3/ja/System.Reflection.xml",
  5587. "ref/netstandard1.3/ko/System.Reflection.xml",
  5588. "ref/netstandard1.3/ru/System.Reflection.xml",
  5589. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  5590. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  5591. "ref/netstandard1.5/System.Reflection.dll",
  5592. "ref/netstandard1.5/System.Reflection.xml",
  5593. "ref/netstandard1.5/de/System.Reflection.xml",
  5594. "ref/netstandard1.5/es/System.Reflection.xml",
  5595. "ref/netstandard1.5/fr/System.Reflection.xml",
  5596. "ref/netstandard1.5/it/System.Reflection.xml",
  5597. "ref/netstandard1.5/ja/System.Reflection.xml",
  5598. "ref/netstandard1.5/ko/System.Reflection.xml",
  5599. "ref/netstandard1.5/ru/System.Reflection.xml",
  5600. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  5601. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  5602. "ref/portable-net45+win8+wp8+wpa81/_._",
  5603. "ref/win8/_._",
  5604. "ref/wp80/_._",
  5605. "ref/wpa81/_._",
  5606. "ref/xamarinios10/_._",
  5607. "ref/xamarinmac20/_._",
  5608. "ref/xamarintvos10/_._",
  5609. "ref/xamarinwatchos10/_._",
  5610. "system.reflection.4.3.0.nupkg.sha512",
  5611. "system.reflection.nuspec"
  5612. ]
  5613. },
  5614. "System.Reflection.Emit/4.3.0": {
  5615. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  5616. "type": "package",
  5617. "path": "system.reflection.emit/4.3.0",
  5618. "files": [
  5619. ".nupkg.metadata",
  5620. ".signature.p7s",
  5621. "ThirdPartyNotices.txt",
  5622. "dotnet_library_license.txt",
  5623. "lib/MonoAndroid10/_._",
  5624. "lib/monotouch10/_._",
  5625. "lib/net45/_._",
  5626. "lib/netcore50/System.Reflection.Emit.dll",
  5627. "lib/netstandard1.3/System.Reflection.Emit.dll",
  5628. "lib/xamarinios10/_._",
  5629. "lib/xamarinmac20/_._",
  5630. "lib/xamarintvos10/_._",
  5631. "lib/xamarinwatchos10/_._",
  5632. "ref/MonoAndroid10/_._",
  5633. "ref/net45/_._",
  5634. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5635. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5636. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5637. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5638. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5639. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5640. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5641. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5642. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5643. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5644. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5645. "ref/xamarinmac20/_._",
  5646. "system.reflection.emit.4.3.0.nupkg.sha512",
  5647. "system.reflection.emit.nuspec"
  5648. ]
  5649. },
  5650. "System.Reflection.Emit.ILGeneration/4.3.0": {
  5651. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  5652. "type": "package",
  5653. "path": "system.reflection.emit.ilgeneration/4.3.0",
  5654. "files": [
  5655. ".nupkg.metadata",
  5656. ".signature.p7s",
  5657. "ThirdPartyNotices.txt",
  5658. "dotnet_library_license.txt",
  5659. "lib/MonoAndroid10/_._",
  5660. "lib/MonoTouch10/_._",
  5661. "lib/net45/_._",
  5662. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5663. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5664. "lib/portable-net45+wp8/_._",
  5665. "lib/wp80/_._",
  5666. "lib/xamarinios10/_._",
  5667. "lib/xamarinmac20/_._",
  5668. "lib/xamarintvos10/_._",
  5669. "lib/xamarinwatchos10/_._",
  5670. "ref/MonoAndroid10/_._",
  5671. "ref/MonoTouch10/_._",
  5672. "ref/net45/_._",
  5673. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5674. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5675. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5676. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5677. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5678. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5679. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5680. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5681. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5682. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5683. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5684. "ref/portable-net45+wp8/_._",
  5685. "ref/wp80/_._",
  5686. "ref/xamarinios10/_._",
  5687. "ref/xamarinmac20/_._",
  5688. "ref/xamarintvos10/_._",
  5689. "ref/xamarinwatchos10/_._",
  5690. "runtimes/aot/lib/netcore50/_._",
  5691. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  5692. "system.reflection.emit.ilgeneration.nuspec"
  5693. ]
  5694. },
  5695. "System.Reflection.Emit.Lightweight/4.3.0": {
  5696. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  5697. "type": "package",
  5698. "path": "system.reflection.emit.lightweight/4.3.0",
  5699. "files": [
  5700. ".nupkg.metadata",
  5701. ".signature.p7s",
  5702. "ThirdPartyNotices.txt",
  5703. "dotnet_library_license.txt",
  5704. "lib/MonoAndroid10/_._",
  5705. "lib/MonoTouch10/_._",
  5706. "lib/net45/_._",
  5707. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5708. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5709. "lib/portable-net45+wp8/_._",
  5710. "lib/wp80/_._",
  5711. "lib/xamarinios10/_._",
  5712. "lib/xamarinmac20/_._",
  5713. "lib/xamarintvos10/_._",
  5714. "lib/xamarinwatchos10/_._",
  5715. "ref/MonoAndroid10/_._",
  5716. "ref/MonoTouch10/_._",
  5717. "ref/net45/_._",
  5718. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5719. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  5720. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  5721. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  5722. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  5723. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  5724. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  5725. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  5726. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  5727. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  5728. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  5729. "ref/portable-net45+wp8/_._",
  5730. "ref/wp80/_._",
  5731. "ref/xamarinios10/_._",
  5732. "ref/xamarinmac20/_._",
  5733. "ref/xamarintvos10/_._",
  5734. "ref/xamarinwatchos10/_._",
  5735. "runtimes/aot/lib/netcore50/_._",
  5736. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  5737. "system.reflection.emit.lightweight.nuspec"
  5738. ]
  5739. },
  5740. "System.Reflection.Extensions/4.3.0": {
  5741. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  5742. "type": "package",
  5743. "path": "system.reflection.extensions/4.3.0",
  5744. "files": [
  5745. ".nupkg.metadata",
  5746. ".signature.p7s",
  5747. "ThirdPartyNotices.txt",
  5748. "dotnet_library_license.txt",
  5749. "lib/MonoAndroid10/_._",
  5750. "lib/MonoTouch10/_._",
  5751. "lib/net45/_._",
  5752. "lib/portable-net45+win8+wp8+wpa81/_._",
  5753. "lib/win8/_._",
  5754. "lib/wp80/_._",
  5755. "lib/wpa81/_._",
  5756. "lib/xamarinios10/_._",
  5757. "lib/xamarinmac20/_._",
  5758. "lib/xamarintvos10/_._",
  5759. "lib/xamarinwatchos10/_._",
  5760. "ref/MonoAndroid10/_._",
  5761. "ref/MonoTouch10/_._",
  5762. "ref/net45/_._",
  5763. "ref/netcore50/System.Reflection.Extensions.dll",
  5764. "ref/netcore50/System.Reflection.Extensions.xml",
  5765. "ref/netcore50/de/System.Reflection.Extensions.xml",
  5766. "ref/netcore50/es/System.Reflection.Extensions.xml",
  5767. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  5768. "ref/netcore50/it/System.Reflection.Extensions.xml",
  5769. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  5770. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  5771. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  5772. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  5773. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  5774. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  5775. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  5776. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  5777. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  5778. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  5779. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  5780. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  5781. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  5782. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  5783. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  5784. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  5785. "ref/portable-net45+win8+wp8+wpa81/_._",
  5786. "ref/win8/_._",
  5787. "ref/wp80/_._",
  5788. "ref/wpa81/_._",
  5789. "ref/xamarinios10/_._",
  5790. "ref/xamarinmac20/_._",
  5791. "ref/xamarintvos10/_._",
  5792. "ref/xamarinwatchos10/_._",
  5793. "system.reflection.extensions.4.3.0.nupkg.sha512",
  5794. "system.reflection.extensions.nuspec"
  5795. ]
  5796. },
  5797. "System.Reflection.Primitives/4.3.0": {
  5798. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  5799. "type": "package",
  5800. "path": "system.reflection.primitives/4.3.0",
  5801. "files": [
  5802. ".nupkg.metadata",
  5803. ".signature.p7s",
  5804. "ThirdPartyNotices.txt",
  5805. "dotnet_library_license.txt",
  5806. "lib/MonoAndroid10/_._",
  5807. "lib/MonoTouch10/_._",
  5808. "lib/net45/_._",
  5809. "lib/portable-net45+win8+wp8+wpa81/_._",
  5810. "lib/win8/_._",
  5811. "lib/wp80/_._",
  5812. "lib/wpa81/_._",
  5813. "lib/xamarinios10/_._",
  5814. "lib/xamarinmac20/_._",
  5815. "lib/xamarintvos10/_._",
  5816. "lib/xamarinwatchos10/_._",
  5817. "ref/MonoAndroid10/_._",
  5818. "ref/MonoTouch10/_._",
  5819. "ref/net45/_._",
  5820. "ref/netcore50/System.Reflection.Primitives.dll",
  5821. "ref/netcore50/System.Reflection.Primitives.xml",
  5822. "ref/netcore50/de/System.Reflection.Primitives.xml",
  5823. "ref/netcore50/es/System.Reflection.Primitives.xml",
  5824. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  5825. "ref/netcore50/it/System.Reflection.Primitives.xml",
  5826. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  5827. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  5828. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  5829. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  5830. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  5831. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  5832. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  5833. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  5834. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  5835. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  5836. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  5837. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  5838. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  5839. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  5840. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  5841. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  5842. "ref/portable-net45+win8+wp8+wpa81/_._",
  5843. "ref/win8/_._",
  5844. "ref/wp80/_._",
  5845. "ref/wpa81/_._",
  5846. "ref/xamarinios10/_._",
  5847. "ref/xamarinmac20/_._",
  5848. "ref/xamarintvos10/_._",
  5849. "ref/xamarinwatchos10/_._",
  5850. "system.reflection.primitives.4.3.0.nupkg.sha512",
  5851. "system.reflection.primitives.nuspec"
  5852. ]
  5853. },
  5854. "System.Reflection.TypeExtensions/4.3.0": {
  5855. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  5856. "type": "package",
  5857. "path": "system.reflection.typeextensions/4.3.0",
  5858. "files": [
  5859. ".nupkg.metadata",
  5860. ".signature.p7s",
  5861. "ThirdPartyNotices.txt",
  5862. "dotnet_library_license.txt",
  5863. "lib/MonoAndroid10/_._",
  5864. "lib/MonoTouch10/_._",
  5865. "lib/net46/System.Reflection.TypeExtensions.dll",
  5866. "lib/net462/System.Reflection.TypeExtensions.dll",
  5867. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  5868. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5869. "lib/xamarinios10/_._",
  5870. "lib/xamarinmac20/_._",
  5871. "lib/xamarintvos10/_._",
  5872. "lib/xamarinwatchos10/_._",
  5873. "ref/MonoAndroid10/_._",
  5874. "ref/MonoTouch10/_._",
  5875. "ref/net46/System.Reflection.TypeExtensions.dll",
  5876. "ref/net462/System.Reflection.TypeExtensions.dll",
  5877. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  5878. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  5879. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  5880. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  5881. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  5882. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  5883. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  5884. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  5885. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  5886. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  5887. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  5888. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5889. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  5890. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  5891. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  5892. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  5893. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  5894. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  5895. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  5896. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  5897. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  5898. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  5899. "ref/xamarinios10/_._",
  5900. "ref/xamarinmac20/_._",
  5901. "ref/xamarintvos10/_._",
  5902. "ref/xamarinwatchos10/_._",
  5903. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  5904. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  5905. "system.reflection.typeextensions.nuspec"
  5906. ]
  5907. },
  5908. "System.Resources.ResourceManager/4.3.0": {
  5909. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  5910. "type": "package",
  5911. "path": "system.resources.resourcemanager/4.3.0",
  5912. "files": [
  5913. ".nupkg.metadata",
  5914. ".signature.p7s",
  5915. "ThirdPartyNotices.txt",
  5916. "dotnet_library_license.txt",
  5917. "lib/MonoAndroid10/_._",
  5918. "lib/MonoTouch10/_._",
  5919. "lib/net45/_._",
  5920. "lib/portable-net45+win8+wp8+wpa81/_._",
  5921. "lib/win8/_._",
  5922. "lib/wp80/_._",
  5923. "lib/wpa81/_._",
  5924. "lib/xamarinios10/_._",
  5925. "lib/xamarinmac20/_._",
  5926. "lib/xamarintvos10/_._",
  5927. "lib/xamarinwatchos10/_._",
  5928. "ref/MonoAndroid10/_._",
  5929. "ref/MonoTouch10/_._",
  5930. "ref/net45/_._",
  5931. "ref/netcore50/System.Resources.ResourceManager.dll",
  5932. "ref/netcore50/System.Resources.ResourceManager.xml",
  5933. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  5934. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  5935. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  5936. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  5937. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  5938. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  5939. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  5940. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  5941. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  5942. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  5943. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  5944. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  5945. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  5946. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  5947. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  5948. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  5949. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  5950. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  5951. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  5952. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  5953. "ref/portable-net45+win8+wp8+wpa81/_._",
  5954. "ref/win8/_._",
  5955. "ref/wp80/_._",
  5956. "ref/wpa81/_._",
  5957. "ref/xamarinios10/_._",
  5958. "ref/xamarinmac20/_._",
  5959. "ref/xamarintvos10/_._",
  5960. "ref/xamarinwatchos10/_._",
  5961. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  5962. "system.resources.resourcemanager.nuspec"
  5963. ]
  5964. },
  5965. "System.Runtime/4.3.0": {
  5966. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  5967. "type": "package",
  5968. "path": "system.runtime/4.3.0",
  5969. "files": [
  5970. ".nupkg.metadata",
  5971. ".signature.p7s",
  5972. "ThirdPartyNotices.txt",
  5973. "dotnet_library_license.txt",
  5974. "lib/MonoAndroid10/_._",
  5975. "lib/MonoTouch10/_._",
  5976. "lib/net45/_._",
  5977. "lib/net462/System.Runtime.dll",
  5978. "lib/portable-net45+win8+wp80+wpa81/_._",
  5979. "lib/win8/_._",
  5980. "lib/wp80/_._",
  5981. "lib/wpa81/_._",
  5982. "lib/xamarinios10/_._",
  5983. "lib/xamarinmac20/_._",
  5984. "lib/xamarintvos10/_._",
  5985. "lib/xamarinwatchos10/_._",
  5986. "ref/MonoAndroid10/_._",
  5987. "ref/MonoTouch10/_._",
  5988. "ref/net45/_._",
  5989. "ref/net462/System.Runtime.dll",
  5990. "ref/netcore50/System.Runtime.dll",
  5991. "ref/netcore50/System.Runtime.xml",
  5992. "ref/netcore50/de/System.Runtime.xml",
  5993. "ref/netcore50/es/System.Runtime.xml",
  5994. "ref/netcore50/fr/System.Runtime.xml",
  5995. "ref/netcore50/it/System.Runtime.xml",
  5996. "ref/netcore50/ja/System.Runtime.xml",
  5997. "ref/netcore50/ko/System.Runtime.xml",
  5998. "ref/netcore50/ru/System.Runtime.xml",
  5999. "ref/netcore50/zh-hans/System.Runtime.xml",
  6000. "ref/netcore50/zh-hant/System.Runtime.xml",
  6001. "ref/netstandard1.0/System.Runtime.dll",
  6002. "ref/netstandard1.0/System.Runtime.xml",
  6003. "ref/netstandard1.0/de/System.Runtime.xml",
  6004. "ref/netstandard1.0/es/System.Runtime.xml",
  6005. "ref/netstandard1.0/fr/System.Runtime.xml",
  6006. "ref/netstandard1.0/it/System.Runtime.xml",
  6007. "ref/netstandard1.0/ja/System.Runtime.xml",
  6008. "ref/netstandard1.0/ko/System.Runtime.xml",
  6009. "ref/netstandard1.0/ru/System.Runtime.xml",
  6010. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6011. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6012. "ref/netstandard1.2/System.Runtime.dll",
  6013. "ref/netstandard1.2/System.Runtime.xml",
  6014. "ref/netstandard1.2/de/System.Runtime.xml",
  6015. "ref/netstandard1.2/es/System.Runtime.xml",
  6016. "ref/netstandard1.2/fr/System.Runtime.xml",
  6017. "ref/netstandard1.2/it/System.Runtime.xml",
  6018. "ref/netstandard1.2/ja/System.Runtime.xml",
  6019. "ref/netstandard1.2/ko/System.Runtime.xml",
  6020. "ref/netstandard1.2/ru/System.Runtime.xml",
  6021. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6022. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6023. "ref/netstandard1.3/System.Runtime.dll",
  6024. "ref/netstandard1.3/System.Runtime.xml",
  6025. "ref/netstandard1.3/de/System.Runtime.xml",
  6026. "ref/netstandard1.3/es/System.Runtime.xml",
  6027. "ref/netstandard1.3/fr/System.Runtime.xml",
  6028. "ref/netstandard1.3/it/System.Runtime.xml",
  6029. "ref/netstandard1.3/ja/System.Runtime.xml",
  6030. "ref/netstandard1.3/ko/System.Runtime.xml",
  6031. "ref/netstandard1.3/ru/System.Runtime.xml",
  6032. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6033. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6034. "ref/netstandard1.5/System.Runtime.dll",
  6035. "ref/netstandard1.5/System.Runtime.xml",
  6036. "ref/netstandard1.5/de/System.Runtime.xml",
  6037. "ref/netstandard1.5/es/System.Runtime.xml",
  6038. "ref/netstandard1.5/fr/System.Runtime.xml",
  6039. "ref/netstandard1.5/it/System.Runtime.xml",
  6040. "ref/netstandard1.5/ja/System.Runtime.xml",
  6041. "ref/netstandard1.5/ko/System.Runtime.xml",
  6042. "ref/netstandard1.5/ru/System.Runtime.xml",
  6043. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6044. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6045. "ref/portable-net45+win8+wp80+wpa81/_._",
  6046. "ref/win8/_._",
  6047. "ref/wp80/_._",
  6048. "ref/wpa81/_._",
  6049. "ref/xamarinios10/_._",
  6050. "ref/xamarinmac20/_._",
  6051. "ref/xamarintvos10/_._",
  6052. "ref/xamarinwatchos10/_._",
  6053. "system.runtime.4.3.0.nupkg.sha512",
  6054. "system.runtime.nuspec"
  6055. ]
  6056. },
  6057. "System.Runtime.Caching/4.7.0": {
  6058. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  6059. "type": "package",
  6060. "path": "system.runtime.caching/4.7.0",
  6061. "files": [
  6062. ".nupkg.metadata",
  6063. ".signature.p7s",
  6064. "LICENSE.TXT",
  6065. "THIRD-PARTY-NOTICES.TXT",
  6066. "lib/MonoAndroid10/_._",
  6067. "lib/MonoTouch10/_._",
  6068. "lib/net45/_._",
  6069. "lib/netstandard2.0/System.Runtime.Caching.dll",
  6070. "lib/netstandard2.0/System.Runtime.Caching.xml",
  6071. "lib/xamarinios10/_._",
  6072. "lib/xamarinmac20/_._",
  6073. "lib/xamarintvos10/_._",
  6074. "lib/xamarinwatchos10/_._",
  6075. "ref/MonoAndroid10/_._",
  6076. "ref/MonoTouch10/_._",
  6077. "ref/net45/_._",
  6078. "ref/netstandard2.0/System.Runtime.Caching.dll",
  6079. "ref/netstandard2.0/System.Runtime.Caching.xml",
  6080. "ref/xamarinios10/_._",
  6081. "ref/xamarinmac20/_._",
  6082. "ref/xamarintvos10/_._",
  6083. "ref/xamarinwatchos10/_._",
  6084. "runtimes/win/lib/net45/_._",
  6085. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  6086. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  6087. "system.runtime.caching.4.7.0.nupkg.sha512",
  6088. "system.runtime.caching.nuspec",
  6089. "useSharedDesignerContext.txt",
  6090. "version.txt"
  6091. ]
  6092. },
  6093. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  6094. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  6095. "type": "package",
  6096. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  6097. "files": [
  6098. ".nupkg.metadata",
  6099. ".signature.p7s",
  6100. "Icon.png",
  6101. "LICENSE.TXT",
  6102. "THIRD-PARTY-NOTICES.TXT",
  6103. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  6104. "buildTransitive/netcoreapp3.1/_._",
  6105. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6106. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6107. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  6108. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  6109. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  6110. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  6111. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6112. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6113. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  6114. "system.runtime.compilerservices.unsafe.nuspec",
  6115. "useSharedDesignerContext.txt"
  6116. ]
  6117. },
  6118. "System.Runtime.Extensions/4.3.0": {
  6119. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6120. "type": "package",
  6121. "path": "system.runtime.extensions/4.3.0",
  6122. "files": [
  6123. ".nupkg.metadata",
  6124. ".signature.p7s",
  6125. "ThirdPartyNotices.txt",
  6126. "dotnet_library_license.txt",
  6127. "lib/MonoAndroid10/_._",
  6128. "lib/MonoTouch10/_._",
  6129. "lib/net45/_._",
  6130. "lib/net462/System.Runtime.Extensions.dll",
  6131. "lib/portable-net45+win8+wp8+wpa81/_._",
  6132. "lib/win8/_._",
  6133. "lib/wp80/_._",
  6134. "lib/wpa81/_._",
  6135. "lib/xamarinios10/_._",
  6136. "lib/xamarinmac20/_._",
  6137. "lib/xamarintvos10/_._",
  6138. "lib/xamarinwatchos10/_._",
  6139. "ref/MonoAndroid10/_._",
  6140. "ref/MonoTouch10/_._",
  6141. "ref/net45/_._",
  6142. "ref/net462/System.Runtime.Extensions.dll",
  6143. "ref/netcore50/System.Runtime.Extensions.dll",
  6144. "ref/netcore50/System.Runtime.Extensions.xml",
  6145. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6146. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6147. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6148. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6149. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6150. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6151. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6152. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6153. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6154. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6155. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6156. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6157. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6158. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6159. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6160. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6161. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6162. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6163. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6164. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6165. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6166. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6167. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6168. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6169. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6170. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6171. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6172. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6173. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6174. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6175. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6176. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6177. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6178. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6179. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6180. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6181. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6182. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6183. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6184. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6185. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6186. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6187. "ref/portable-net45+win8+wp8+wpa81/_._",
  6188. "ref/win8/_._",
  6189. "ref/wp80/_._",
  6190. "ref/wpa81/_._",
  6191. "ref/xamarinios10/_._",
  6192. "ref/xamarinmac20/_._",
  6193. "ref/xamarintvos10/_._",
  6194. "ref/xamarinwatchos10/_._",
  6195. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6196. "system.runtime.extensions.nuspec"
  6197. ]
  6198. },
  6199. "System.Runtime.Handles/4.3.0": {
  6200. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6201. "type": "package",
  6202. "path": "system.runtime.handles/4.3.0",
  6203. "files": [
  6204. ".nupkg.metadata",
  6205. ".signature.p7s",
  6206. "ThirdPartyNotices.txt",
  6207. "dotnet_library_license.txt",
  6208. "lib/MonoAndroid10/_._",
  6209. "lib/MonoTouch10/_._",
  6210. "lib/net46/_._",
  6211. "lib/xamarinios10/_._",
  6212. "lib/xamarinmac20/_._",
  6213. "lib/xamarintvos10/_._",
  6214. "lib/xamarinwatchos10/_._",
  6215. "ref/MonoAndroid10/_._",
  6216. "ref/MonoTouch10/_._",
  6217. "ref/net46/_._",
  6218. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6219. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6220. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6221. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6222. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6223. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6224. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6225. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6226. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6227. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6228. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6229. "ref/xamarinios10/_._",
  6230. "ref/xamarinmac20/_._",
  6231. "ref/xamarintvos10/_._",
  6232. "ref/xamarinwatchos10/_._",
  6233. "system.runtime.handles.4.3.0.nupkg.sha512",
  6234. "system.runtime.handles.nuspec"
  6235. ]
  6236. },
  6237. "System.Runtime.InteropServices/4.3.0": {
  6238. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6239. "type": "package",
  6240. "path": "system.runtime.interopservices/4.3.0",
  6241. "files": [
  6242. ".nupkg.metadata",
  6243. ".signature.p7s",
  6244. "ThirdPartyNotices.txt",
  6245. "dotnet_library_license.txt",
  6246. "lib/MonoAndroid10/_._",
  6247. "lib/MonoTouch10/_._",
  6248. "lib/net45/_._",
  6249. "lib/net462/System.Runtime.InteropServices.dll",
  6250. "lib/net463/System.Runtime.InteropServices.dll",
  6251. "lib/portable-net45+win8+wpa81/_._",
  6252. "lib/win8/_._",
  6253. "lib/wpa81/_._",
  6254. "lib/xamarinios10/_._",
  6255. "lib/xamarinmac20/_._",
  6256. "lib/xamarintvos10/_._",
  6257. "lib/xamarinwatchos10/_._",
  6258. "ref/MonoAndroid10/_._",
  6259. "ref/MonoTouch10/_._",
  6260. "ref/net45/_._",
  6261. "ref/net462/System.Runtime.InteropServices.dll",
  6262. "ref/net463/System.Runtime.InteropServices.dll",
  6263. "ref/netcore50/System.Runtime.InteropServices.dll",
  6264. "ref/netcore50/System.Runtime.InteropServices.xml",
  6265. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  6266. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  6267. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  6268. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  6269. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  6270. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  6271. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  6272. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  6273. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  6274. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  6275. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  6276. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  6277. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  6278. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  6279. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  6280. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  6281. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  6282. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  6283. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  6284. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  6285. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  6286. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  6287. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  6288. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  6289. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  6290. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  6291. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  6292. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  6293. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  6294. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  6295. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  6296. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  6297. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  6298. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  6299. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  6300. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  6301. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  6302. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  6303. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  6304. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  6305. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  6306. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  6307. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  6308. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  6309. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  6310. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  6311. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  6312. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  6313. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  6314. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  6315. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  6316. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  6317. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  6318. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  6319. "ref/portable-net45+win8+wpa81/_._",
  6320. "ref/win8/_._",
  6321. "ref/wpa81/_._",
  6322. "ref/xamarinios10/_._",
  6323. "ref/xamarinmac20/_._",
  6324. "ref/xamarintvos10/_._",
  6325. "ref/xamarinwatchos10/_._",
  6326. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  6327. "system.runtime.interopservices.nuspec"
  6328. ]
  6329. },
  6330. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  6331. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  6332. "type": "package",
  6333. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  6334. "files": [
  6335. ".nupkg.metadata",
  6336. ".signature.p7s",
  6337. "ThirdPartyNotices.txt",
  6338. "dotnet_library_license.txt",
  6339. "lib/MonoAndroid10/_._",
  6340. "lib/MonoTouch10/_._",
  6341. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6342. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6343. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  6344. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  6345. "lib/xamarinios10/_._",
  6346. "lib/xamarinmac20/_._",
  6347. "lib/xamarintvos10/_._",
  6348. "lib/xamarinwatchos10/_._",
  6349. "ref/MonoAndroid10/_._",
  6350. "ref/MonoTouch10/_._",
  6351. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6352. "ref/xamarinios10/_._",
  6353. "ref/xamarinmac20/_._",
  6354. "ref/xamarintvos10/_._",
  6355. "ref/xamarinwatchos10/_._",
  6356. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6357. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6358. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  6359. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  6360. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6361. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  6362. "system.runtime.interopservices.runtimeinformation.nuspec"
  6363. ]
  6364. },
  6365. "System.Runtime.Numerics/4.3.0": {
  6366. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  6367. "type": "package",
  6368. "path": "system.runtime.numerics/4.3.0",
  6369. "files": [
  6370. ".nupkg.metadata",
  6371. ".signature.p7s",
  6372. "ThirdPartyNotices.txt",
  6373. "dotnet_library_license.txt",
  6374. "lib/MonoAndroid10/_._",
  6375. "lib/MonoTouch10/_._",
  6376. "lib/net45/_._",
  6377. "lib/netcore50/System.Runtime.Numerics.dll",
  6378. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  6379. "lib/portable-net45+win8+wpa81/_._",
  6380. "lib/win8/_._",
  6381. "lib/wpa81/_._",
  6382. "lib/xamarinios10/_._",
  6383. "lib/xamarinmac20/_._",
  6384. "lib/xamarintvos10/_._",
  6385. "lib/xamarinwatchos10/_._",
  6386. "ref/MonoAndroid10/_._",
  6387. "ref/MonoTouch10/_._",
  6388. "ref/net45/_._",
  6389. "ref/netcore50/System.Runtime.Numerics.dll",
  6390. "ref/netcore50/System.Runtime.Numerics.xml",
  6391. "ref/netcore50/de/System.Runtime.Numerics.xml",
  6392. "ref/netcore50/es/System.Runtime.Numerics.xml",
  6393. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  6394. "ref/netcore50/it/System.Runtime.Numerics.xml",
  6395. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  6396. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  6397. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  6398. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  6399. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  6400. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  6401. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  6402. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  6403. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  6404. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  6405. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  6406. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  6407. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  6408. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  6409. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  6410. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  6411. "ref/portable-net45+win8+wpa81/_._",
  6412. "ref/win8/_._",
  6413. "ref/wpa81/_._",
  6414. "ref/xamarinios10/_._",
  6415. "ref/xamarinmac20/_._",
  6416. "ref/xamarintvos10/_._",
  6417. "ref/xamarinwatchos10/_._",
  6418. "system.runtime.numerics.4.3.0.nupkg.sha512",
  6419. "system.runtime.numerics.nuspec"
  6420. ]
  6421. },
  6422. "System.Runtime.Serialization.Formatters/4.3.0": {
  6423. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  6424. "type": "package",
  6425. "path": "system.runtime.serialization.formatters/4.3.0",
  6426. "files": [
  6427. ".nupkg.metadata",
  6428. ".signature.p7s",
  6429. "ThirdPartyNotices.txt",
  6430. "dotnet_library_license.txt",
  6431. "lib/MonoAndroid10/_._",
  6432. "lib/MonoTouch10/_._",
  6433. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  6434. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  6435. "lib/xamarinios10/_._",
  6436. "lib/xamarinmac20/_._",
  6437. "lib/xamarintvos10/_._",
  6438. "lib/xamarinwatchos10/_._",
  6439. "ref/MonoAndroid10/_._",
  6440. "ref/MonoTouch10/_._",
  6441. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  6442. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  6443. "ref/xamarinios10/_._",
  6444. "ref/xamarinmac20/_._",
  6445. "ref/xamarintvos10/_._",
  6446. "ref/xamarinwatchos10/_._",
  6447. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  6448. "system.runtime.serialization.formatters.nuspec"
  6449. ]
  6450. },
  6451. "System.Runtime.Serialization.Primitives/4.3.0": {
  6452. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  6453. "type": "package",
  6454. "path": "system.runtime.serialization.primitives/4.3.0",
  6455. "files": [
  6456. ".nupkg.metadata",
  6457. ".signature.p7s",
  6458. "ThirdPartyNotices.txt",
  6459. "dotnet_library_license.txt",
  6460. "lib/MonoAndroid10/_._",
  6461. "lib/MonoTouch10/_._",
  6462. "lib/net45/_._",
  6463. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  6464. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6465. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6466. "lib/portable-net45+win8+wp8+wpa81/_._",
  6467. "lib/win8/_._",
  6468. "lib/wp80/_._",
  6469. "lib/wpa81/_._",
  6470. "lib/xamarinios10/_._",
  6471. "lib/xamarinmac20/_._",
  6472. "lib/xamarintvos10/_._",
  6473. "lib/xamarinwatchos10/_._",
  6474. "ref/MonoAndroid10/_._",
  6475. "ref/MonoTouch10/_._",
  6476. "ref/net45/_._",
  6477. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  6478. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  6479. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  6480. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  6481. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  6482. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  6483. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  6484. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  6485. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  6486. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  6487. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6488. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6489. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  6490. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  6491. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  6492. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  6493. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  6494. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  6495. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  6496. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  6497. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  6498. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6499. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6500. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  6501. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  6502. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  6503. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  6504. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  6505. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  6506. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  6507. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  6508. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  6509. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  6510. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  6511. "ref/portable-net45+win8+wp8+wpa81/_._",
  6512. "ref/win8/_._",
  6513. "ref/wp80/_._",
  6514. "ref/wpa81/_._",
  6515. "ref/xamarinios10/_._",
  6516. "ref/xamarinmac20/_._",
  6517. "ref/xamarintvos10/_._",
  6518. "ref/xamarinwatchos10/_._",
  6519. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  6520. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  6521. "system.runtime.serialization.primitives.nuspec"
  6522. ]
  6523. },
  6524. "System.Security.AccessControl/4.7.0": {
  6525. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  6526. "type": "package",
  6527. "path": "system.security.accesscontrol/4.7.0",
  6528. "files": [
  6529. ".nupkg.metadata",
  6530. ".signature.p7s",
  6531. "LICENSE.TXT",
  6532. "THIRD-PARTY-NOTICES.TXT",
  6533. "lib/net46/System.Security.AccessControl.dll",
  6534. "lib/net461/System.Security.AccessControl.dll",
  6535. "lib/net461/System.Security.AccessControl.xml",
  6536. "lib/netstandard1.3/System.Security.AccessControl.dll",
  6537. "lib/netstandard2.0/System.Security.AccessControl.dll",
  6538. "lib/netstandard2.0/System.Security.AccessControl.xml",
  6539. "lib/uap10.0.16299/_._",
  6540. "ref/net46/System.Security.AccessControl.dll",
  6541. "ref/net461/System.Security.AccessControl.dll",
  6542. "ref/net461/System.Security.AccessControl.xml",
  6543. "ref/netstandard1.3/System.Security.AccessControl.dll",
  6544. "ref/netstandard1.3/System.Security.AccessControl.xml",
  6545. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  6546. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  6547. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  6548. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  6549. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  6550. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  6551. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  6552. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  6553. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  6554. "ref/netstandard2.0/System.Security.AccessControl.dll",
  6555. "ref/netstandard2.0/System.Security.AccessControl.xml",
  6556. "ref/uap10.0.16299/_._",
  6557. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  6558. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  6559. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  6560. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  6561. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  6562. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  6563. "runtimes/win/lib/uap10.0.16299/_._",
  6564. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  6565. "system.security.accesscontrol.nuspec",
  6566. "useSharedDesignerContext.txt",
  6567. "version.txt"
  6568. ]
  6569. },
  6570. "System.Security.Cryptography.Algorithms/4.3.0": {
  6571. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  6572. "type": "package",
  6573. "path": "system.security.cryptography.algorithms/4.3.0",
  6574. "files": [
  6575. ".nupkg.metadata",
  6576. ".signature.p7s",
  6577. "ThirdPartyNotices.txt",
  6578. "dotnet_library_license.txt",
  6579. "lib/MonoAndroid10/_._",
  6580. "lib/MonoTouch10/_._",
  6581. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  6582. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  6583. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  6584. "lib/xamarinios10/_._",
  6585. "lib/xamarinmac20/_._",
  6586. "lib/xamarintvos10/_._",
  6587. "lib/xamarinwatchos10/_._",
  6588. "ref/MonoAndroid10/_._",
  6589. "ref/MonoTouch10/_._",
  6590. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  6591. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  6592. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  6593. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  6594. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  6595. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6596. "ref/xamarinios10/_._",
  6597. "ref/xamarinmac20/_._",
  6598. "ref/xamarintvos10/_._",
  6599. "ref/xamarinwatchos10/_._",
  6600. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6601. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6602. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  6603. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  6604. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  6605. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  6606. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  6607. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  6608. "system.security.cryptography.algorithms.nuspec"
  6609. ]
  6610. },
  6611. "System.Security.Cryptography.Cng/4.5.0": {
  6612. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  6613. "type": "package",
  6614. "path": "system.security.cryptography.cng/4.5.0",
  6615. "files": [
  6616. ".nupkg.metadata",
  6617. ".signature.p7s",
  6618. "LICENSE.TXT",
  6619. "THIRD-PARTY-NOTICES.TXT",
  6620. "lib/MonoAndroid10/_._",
  6621. "lib/MonoTouch10/_._",
  6622. "lib/net46/System.Security.Cryptography.Cng.dll",
  6623. "lib/net461/System.Security.Cryptography.Cng.dll",
  6624. "lib/net462/System.Security.Cryptography.Cng.dll",
  6625. "lib/net47/System.Security.Cryptography.Cng.dll",
  6626. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6627. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6628. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6629. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6630. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6631. "lib/uap10.0.16299/_._",
  6632. "lib/xamarinios10/_._",
  6633. "lib/xamarinmac20/_._",
  6634. "lib/xamarintvos10/_._",
  6635. "lib/xamarinwatchos10/_._",
  6636. "ref/MonoAndroid10/_._",
  6637. "ref/MonoTouch10/_._",
  6638. "ref/net46/System.Security.Cryptography.Cng.dll",
  6639. "ref/net461/System.Security.Cryptography.Cng.dll",
  6640. "ref/net461/System.Security.Cryptography.Cng.xml",
  6641. "ref/net462/System.Security.Cryptography.Cng.dll",
  6642. "ref/net462/System.Security.Cryptography.Cng.xml",
  6643. "ref/net47/System.Security.Cryptography.Cng.dll",
  6644. "ref/net47/System.Security.Cryptography.Cng.xml",
  6645. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6646. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  6647. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6648. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  6649. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  6650. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6651. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6652. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  6653. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  6654. "ref/uap10.0.16299/_._",
  6655. "ref/xamarinios10/_._",
  6656. "ref/xamarinmac20/_._",
  6657. "ref/xamarintvos10/_._",
  6658. "ref/xamarinwatchos10/_._",
  6659. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  6660. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  6661. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  6662. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  6663. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  6664. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  6665. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  6666. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  6667. "runtimes/win/lib/uap10.0.16299/_._",
  6668. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  6669. "system.security.cryptography.cng.nuspec",
  6670. "useSharedDesignerContext.txt",
  6671. "version.txt"
  6672. ]
  6673. },
  6674. "System.Security.Cryptography.Csp/4.3.0": {
  6675. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  6676. "type": "package",
  6677. "path": "system.security.cryptography.csp/4.3.0",
  6678. "files": [
  6679. ".nupkg.metadata",
  6680. ".signature.p7s",
  6681. "ThirdPartyNotices.txt",
  6682. "dotnet_library_license.txt",
  6683. "lib/MonoAndroid10/_._",
  6684. "lib/MonoTouch10/_._",
  6685. "lib/net46/System.Security.Cryptography.Csp.dll",
  6686. "lib/xamarinios10/_._",
  6687. "lib/xamarinmac20/_._",
  6688. "lib/xamarintvos10/_._",
  6689. "lib/xamarinwatchos10/_._",
  6690. "ref/MonoAndroid10/_._",
  6691. "ref/MonoTouch10/_._",
  6692. "ref/net46/System.Security.Cryptography.Csp.dll",
  6693. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6694. "ref/xamarinios10/_._",
  6695. "ref/xamarinmac20/_._",
  6696. "ref/xamarintvos10/_._",
  6697. "ref/xamarinwatchos10/_._",
  6698. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6699. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  6700. "runtimes/win/lib/netcore50/_._",
  6701. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  6702. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  6703. "system.security.cryptography.csp.nuspec"
  6704. ]
  6705. },
  6706. "System.Security.Cryptography.Encoding/4.3.0": {
  6707. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  6708. "type": "package",
  6709. "path": "system.security.cryptography.encoding/4.3.0",
  6710. "files": [
  6711. ".nupkg.metadata",
  6712. ".signature.p7s",
  6713. "ThirdPartyNotices.txt",
  6714. "dotnet_library_license.txt",
  6715. "lib/MonoAndroid10/_._",
  6716. "lib/MonoTouch10/_._",
  6717. "lib/net46/System.Security.Cryptography.Encoding.dll",
  6718. "lib/xamarinios10/_._",
  6719. "lib/xamarinmac20/_._",
  6720. "lib/xamarintvos10/_._",
  6721. "lib/xamarinwatchos10/_._",
  6722. "ref/MonoAndroid10/_._",
  6723. "ref/MonoTouch10/_._",
  6724. "ref/net46/System.Security.Cryptography.Encoding.dll",
  6725. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6726. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  6727. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  6728. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  6729. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  6730. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  6731. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  6732. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  6733. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  6734. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  6735. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  6736. "ref/xamarinios10/_._",
  6737. "ref/xamarinmac20/_._",
  6738. "ref/xamarintvos10/_._",
  6739. "ref/xamarinwatchos10/_._",
  6740. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6741. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  6742. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  6743. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  6744. "system.security.cryptography.encoding.nuspec"
  6745. ]
  6746. },
  6747. "System.Security.Cryptography.OpenSsl/4.3.0": {
  6748. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  6749. "type": "package",
  6750. "path": "system.security.cryptography.openssl/4.3.0",
  6751. "files": [
  6752. ".nupkg.metadata",
  6753. ".signature.p7s",
  6754. "ThirdPartyNotices.txt",
  6755. "dotnet_library_license.txt",
  6756. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6757. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6758. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  6759. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6760. "system.security.cryptography.openssl.nuspec"
  6761. ]
  6762. },
  6763. "System.Security.Cryptography.Primitives/4.3.0": {
  6764. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  6765. "type": "package",
  6766. "path": "system.security.cryptography.primitives/4.3.0",
  6767. "files": [
  6768. ".nupkg.metadata",
  6769. ".signature.p7s",
  6770. "ThirdPartyNotices.txt",
  6771. "dotnet_library_license.txt",
  6772. "lib/MonoAndroid10/_._",
  6773. "lib/MonoTouch10/_._",
  6774. "lib/net46/System.Security.Cryptography.Primitives.dll",
  6775. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6776. "lib/xamarinios10/_._",
  6777. "lib/xamarinmac20/_._",
  6778. "lib/xamarintvos10/_._",
  6779. "lib/xamarinwatchos10/_._",
  6780. "ref/MonoAndroid10/_._",
  6781. "ref/MonoTouch10/_._",
  6782. "ref/net46/System.Security.Cryptography.Primitives.dll",
  6783. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  6784. "ref/xamarinios10/_._",
  6785. "ref/xamarinmac20/_._",
  6786. "ref/xamarintvos10/_._",
  6787. "ref/xamarinwatchos10/_._",
  6788. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  6789. "system.security.cryptography.primitives.nuspec"
  6790. ]
  6791. },
  6792. "System.Security.Cryptography.ProtectedData/4.7.0": {
  6793. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  6794. "type": "package",
  6795. "path": "system.security.cryptography.protecteddata/4.7.0",
  6796. "files": [
  6797. ".nupkg.metadata",
  6798. ".signature.p7s",
  6799. "LICENSE.TXT",
  6800. "THIRD-PARTY-NOTICES.TXT",
  6801. "lib/MonoAndroid10/_._",
  6802. "lib/MonoTouch10/_._",
  6803. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6804. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6805. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  6806. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6807. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6808. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6809. "lib/xamarinios10/_._",
  6810. "lib/xamarinmac20/_._",
  6811. "lib/xamarintvos10/_._",
  6812. "lib/xamarinwatchos10/_._",
  6813. "ref/MonoAndroid10/_._",
  6814. "ref/MonoTouch10/_._",
  6815. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  6816. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  6817. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  6818. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6819. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6820. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6821. "ref/xamarinios10/_._",
  6822. "ref/xamarinmac20/_._",
  6823. "ref/xamarintvos10/_._",
  6824. "ref/xamarinwatchos10/_._",
  6825. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  6826. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  6827. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  6828. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  6829. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  6830. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  6831. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  6832. "system.security.cryptography.protecteddata.nuspec",
  6833. "useSharedDesignerContext.txt",
  6834. "version.txt"
  6835. ]
  6836. },
  6837. "System.Security.Cryptography.X509Certificates/4.3.0": {
  6838. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  6839. "type": "package",
  6840. "path": "system.security.cryptography.x509certificates/4.3.0",
  6841. "files": [
  6842. ".nupkg.metadata",
  6843. ".signature.p7s",
  6844. "ThirdPartyNotices.txt",
  6845. "dotnet_library_license.txt",
  6846. "lib/MonoAndroid10/_._",
  6847. "lib/MonoTouch10/_._",
  6848. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6849. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6850. "lib/xamarinios10/_._",
  6851. "lib/xamarinmac20/_._",
  6852. "lib/xamarintvos10/_._",
  6853. "lib/xamarinwatchos10/_._",
  6854. "ref/MonoAndroid10/_._",
  6855. "ref/MonoTouch10/_._",
  6856. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  6857. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  6858. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  6859. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  6860. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  6861. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  6862. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  6863. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  6864. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  6865. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  6866. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  6867. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6868. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6869. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  6870. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  6871. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  6872. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  6873. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  6874. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  6875. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  6876. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  6877. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  6878. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  6879. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  6880. "ref/xamarinios10/_._",
  6881. "ref/xamarinmac20/_._",
  6882. "ref/xamarintvos10/_._",
  6883. "ref/xamarinwatchos10/_._",
  6884. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6885. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  6886. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  6887. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  6888. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  6889. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  6890. "system.security.cryptography.x509certificates.nuspec"
  6891. ]
  6892. },
  6893. "System.Security.Permissions/4.7.0": {
  6894. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  6895. "type": "package",
  6896. "path": "system.security.permissions/4.7.0",
  6897. "files": [
  6898. ".nupkg.metadata",
  6899. ".signature.p7s",
  6900. "LICENSE.TXT",
  6901. "THIRD-PARTY-NOTICES.TXT",
  6902. "lib/net461/System.Security.Permissions.dll",
  6903. "lib/net461/System.Security.Permissions.xml",
  6904. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  6905. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  6906. "lib/netstandard2.0/System.Security.Permissions.dll",
  6907. "lib/netstandard2.0/System.Security.Permissions.xml",
  6908. "ref/net461/System.Security.Permissions.dll",
  6909. "ref/net461/System.Security.Permissions.xml",
  6910. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  6911. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  6912. "ref/netstandard2.0/System.Security.Permissions.dll",
  6913. "ref/netstandard2.0/System.Security.Permissions.xml",
  6914. "system.security.permissions.4.7.0.nupkg.sha512",
  6915. "system.security.permissions.nuspec",
  6916. "useSharedDesignerContext.txt",
  6917. "version.txt"
  6918. ]
  6919. },
  6920. "System.Security.Principal.Windows/4.7.0": {
  6921. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  6922. "type": "package",
  6923. "path": "system.security.principal.windows/4.7.0",
  6924. "files": [
  6925. ".nupkg.metadata",
  6926. ".signature.p7s",
  6927. "LICENSE.TXT",
  6928. "THIRD-PARTY-NOTICES.TXT",
  6929. "lib/net46/System.Security.Principal.Windows.dll",
  6930. "lib/net461/System.Security.Principal.Windows.dll",
  6931. "lib/net461/System.Security.Principal.Windows.xml",
  6932. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6933. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  6934. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  6935. "lib/uap10.0.16299/_._",
  6936. "ref/net46/System.Security.Principal.Windows.dll",
  6937. "ref/net461/System.Security.Principal.Windows.dll",
  6938. "ref/net461/System.Security.Principal.Windows.xml",
  6939. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  6940. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  6941. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  6942. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  6943. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  6944. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  6945. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  6946. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  6947. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  6948. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  6949. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  6950. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  6951. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  6952. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  6953. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  6954. "ref/uap10.0.16299/_._",
  6955. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6956. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6957. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6958. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6959. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  6960. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  6961. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  6962. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  6963. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  6964. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  6965. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  6966. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  6967. "runtimes/win/lib/uap10.0.16299/_._",
  6968. "system.security.principal.windows.4.7.0.nupkg.sha512",
  6969. "system.security.principal.windows.nuspec",
  6970. "useSharedDesignerContext.txt",
  6971. "version.txt"
  6972. ]
  6973. },
  6974. "System.Text.Encoding/4.3.0": {
  6975. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  6976. "type": "package",
  6977. "path": "system.text.encoding/4.3.0",
  6978. "files": [
  6979. ".nupkg.metadata",
  6980. ".signature.p7s",
  6981. "ThirdPartyNotices.txt",
  6982. "dotnet_library_license.txt",
  6983. "lib/MonoAndroid10/_._",
  6984. "lib/MonoTouch10/_._",
  6985. "lib/net45/_._",
  6986. "lib/portable-net45+win8+wp8+wpa81/_._",
  6987. "lib/win8/_._",
  6988. "lib/wp80/_._",
  6989. "lib/wpa81/_._",
  6990. "lib/xamarinios10/_._",
  6991. "lib/xamarinmac20/_._",
  6992. "lib/xamarintvos10/_._",
  6993. "lib/xamarinwatchos10/_._",
  6994. "ref/MonoAndroid10/_._",
  6995. "ref/MonoTouch10/_._",
  6996. "ref/net45/_._",
  6997. "ref/netcore50/System.Text.Encoding.dll",
  6998. "ref/netcore50/System.Text.Encoding.xml",
  6999. "ref/netcore50/de/System.Text.Encoding.xml",
  7000. "ref/netcore50/es/System.Text.Encoding.xml",
  7001. "ref/netcore50/fr/System.Text.Encoding.xml",
  7002. "ref/netcore50/it/System.Text.Encoding.xml",
  7003. "ref/netcore50/ja/System.Text.Encoding.xml",
  7004. "ref/netcore50/ko/System.Text.Encoding.xml",
  7005. "ref/netcore50/ru/System.Text.Encoding.xml",
  7006. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7007. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7008. "ref/netstandard1.0/System.Text.Encoding.dll",
  7009. "ref/netstandard1.0/System.Text.Encoding.xml",
  7010. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7011. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7012. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7013. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7014. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7015. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7016. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7017. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7018. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7019. "ref/netstandard1.3/System.Text.Encoding.dll",
  7020. "ref/netstandard1.3/System.Text.Encoding.xml",
  7021. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7022. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7023. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7024. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7025. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7026. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7027. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7028. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7029. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7030. "ref/portable-net45+win8+wp8+wpa81/_._",
  7031. "ref/win8/_._",
  7032. "ref/wp80/_._",
  7033. "ref/wpa81/_._",
  7034. "ref/xamarinios10/_._",
  7035. "ref/xamarinmac20/_._",
  7036. "ref/xamarintvos10/_._",
  7037. "ref/xamarinwatchos10/_._",
  7038. "system.text.encoding.4.3.0.nupkg.sha512",
  7039. "system.text.encoding.nuspec"
  7040. ]
  7041. },
  7042. "System.Text.Encoding.CodePages/4.7.0": {
  7043. "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  7044. "type": "package",
  7045. "path": "system.text.encoding.codepages/4.7.0",
  7046. "files": [
  7047. ".nupkg.metadata",
  7048. ".signature.p7s",
  7049. "LICENSE.TXT",
  7050. "THIRD-PARTY-NOTICES.TXT",
  7051. "lib/MonoAndroid10/_._",
  7052. "lib/MonoTouch10/_._",
  7053. "lib/net46/System.Text.Encoding.CodePages.dll",
  7054. "lib/net461/System.Text.Encoding.CodePages.dll",
  7055. "lib/net461/System.Text.Encoding.CodePages.xml",
  7056. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7057. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7058. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7059. "lib/xamarinios10/_._",
  7060. "lib/xamarinmac20/_._",
  7061. "lib/xamarintvos10/_._",
  7062. "lib/xamarinwatchos10/_._",
  7063. "ref/MonoAndroid10/_._",
  7064. "ref/MonoTouch10/_._",
  7065. "ref/xamarinios10/_._",
  7066. "ref/xamarinmac20/_._",
  7067. "ref/xamarintvos10/_._",
  7068. "ref/xamarinwatchos10/_._",
  7069. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7070. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  7071. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7072. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  7073. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7074. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7075. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7076. "system.text.encoding.codepages.4.7.0.nupkg.sha512",
  7077. "system.text.encoding.codepages.nuspec",
  7078. "useSharedDesignerContext.txt",
  7079. "version.txt"
  7080. ]
  7081. },
  7082. "System.Text.Encoding.Extensions/4.3.0": {
  7083. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7084. "type": "package",
  7085. "path": "system.text.encoding.extensions/4.3.0",
  7086. "files": [
  7087. ".nupkg.metadata",
  7088. ".signature.p7s",
  7089. "ThirdPartyNotices.txt",
  7090. "dotnet_library_license.txt",
  7091. "lib/MonoAndroid10/_._",
  7092. "lib/MonoTouch10/_._",
  7093. "lib/net45/_._",
  7094. "lib/portable-net45+win8+wp8+wpa81/_._",
  7095. "lib/win8/_._",
  7096. "lib/wp80/_._",
  7097. "lib/wpa81/_._",
  7098. "lib/xamarinios10/_._",
  7099. "lib/xamarinmac20/_._",
  7100. "lib/xamarintvos10/_._",
  7101. "lib/xamarinwatchos10/_._",
  7102. "ref/MonoAndroid10/_._",
  7103. "ref/MonoTouch10/_._",
  7104. "ref/net45/_._",
  7105. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7106. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7107. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7108. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7109. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7110. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7111. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7112. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7113. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7114. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7115. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7116. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7117. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7118. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7119. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7120. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7121. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7122. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7123. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7124. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7125. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7126. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7127. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7128. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7129. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7130. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7131. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7132. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7133. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7134. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7135. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7136. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7137. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7138. "ref/portable-net45+win8+wp8+wpa81/_._",
  7139. "ref/win8/_._",
  7140. "ref/wp80/_._",
  7141. "ref/wpa81/_._",
  7142. "ref/xamarinios10/_._",
  7143. "ref/xamarinmac20/_._",
  7144. "ref/xamarintvos10/_._",
  7145. "ref/xamarinwatchos10/_._",
  7146. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7147. "system.text.encoding.extensions.nuspec"
  7148. ]
  7149. },
  7150. "System.Text.Json/4.7.1": {
  7151. "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
  7152. "type": "package",
  7153. "path": "system.text.json/4.7.1",
  7154. "files": [
  7155. ".nupkg.metadata",
  7156. ".signature.p7s",
  7157. "Icon.png",
  7158. "LICENSE.TXT",
  7159. "THIRD-PARTY-NOTICES.TXT",
  7160. "lib/net461/System.Text.Json.dll",
  7161. "lib/net461/System.Text.Json.xml",
  7162. "lib/netcoreapp3.0/System.Text.Json.dll",
  7163. "lib/netcoreapp3.0/System.Text.Json.xml",
  7164. "lib/netstandard2.0/System.Text.Json.dll",
  7165. "lib/netstandard2.0/System.Text.Json.xml",
  7166. "system.text.json.4.7.1.nupkg.sha512",
  7167. "system.text.json.nuspec",
  7168. "useSharedDesignerContext.txt",
  7169. "version.txt"
  7170. ]
  7171. },
  7172. "System.Text.RegularExpressions/4.3.0": {
  7173. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7174. "type": "package",
  7175. "path": "system.text.regularexpressions/4.3.0",
  7176. "files": [
  7177. ".nupkg.metadata",
  7178. ".signature.p7s",
  7179. "ThirdPartyNotices.txt",
  7180. "dotnet_library_license.txt",
  7181. "lib/MonoAndroid10/_._",
  7182. "lib/MonoTouch10/_._",
  7183. "lib/net45/_._",
  7184. "lib/net463/System.Text.RegularExpressions.dll",
  7185. "lib/netcore50/System.Text.RegularExpressions.dll",
  7186. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7187. "lib/portable-net45+win8+wp8+wpa81/_._",
  7188. "lib/win8/_._",
  7189. "lib/wp80/_._",
  7190. "lib/wpa81/_._",
  7191. "lib/xamarinios10/_._",
  7192. "lib/xamarinmac20/_._",
  7193. "lib/xamarintvos10/_._",
  7194. "lib/xamarinwatchos10/_._",
  7195. "ref/MonoAndroid10/_._",
  7196. "ref/MonoTouch10/_._",
  7197. "ref/net45/_._",
  7198. "ref/net463/System.Text.RegularExpressions.dll",
  7199. "ref/netcore50/System.Text.RegularExpressions.dll",
  7200. "ref/netcore50/System.Text.RegularExpressions.xml",
  7201. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7202. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7203. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7204. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7205. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7206. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7207. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7208. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7209. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7210. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7211. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7212. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7213. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7214. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7215. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7216. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7217. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7218. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7219. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7220. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7221. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7222. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7223. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7224. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7225. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7226. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7227. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7228. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7229. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7230. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7231. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7232. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7233. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7234. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7235. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7236. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7237. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7238. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7239. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7240. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7241. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7242. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7243. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7244. "ref/portable-net45+win8+wp8+wpa81/_._",
  7245. "ref/win8/_._",
  7246. "ref/wp80/_._",
  7247. "ref/wpa81/_._",
  7248. "ref/xamarinios10/_._",
  7249. "ref/xamarinmac20/_._",
  7250. "ref/xamarintvos10/_._",
  7251. "ref/xamarinwatchos10/_._",
  7252. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7253. "system.text.regularexpressions.nuspec"
  7254. ]
  7255. },
  7256. "System.Threading/4.3.0": {
  7257. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7258. "type": "package",
  7259. "path": "system.threading/4.3.0",
  7260. "files": [
  7261. ".nupkg.metadata",
  7262. ".signature.p7s",
  7263. "ThirdPartyNotices.txt",
  7264. "dotnet_library_license.txt",
  7265. "lib/MonoAndroid10/_._",
  7266. "lib/MonoTouch10/_._",
  7267. "lib/net45/_._",
  7268. "lib/netcore50/System.Threading.dll",
  7269. "lib/netstandard1.3/System.Threading.dll",
  7270. "lib/portable-net45+win8+wp8+wpa81/_._",
  7271. "lib/win8/_._",
  7272. "lib/wp80/_._",
  7273. "lib/wpa81/_._",
  7274. "lib/xamarinios10/_._",
  7275. "lib/xamarinmac20/_._",
  7276. "lib/xamarintvos10/_._",
  7277. "lib/xamarinwatchos10/_._",
  7278. "ref/MonoAndroid10/_._",
  7279. "ref/MonoTouch10/_._",
  7280. "ref/net45/_._",
  7281. "ref/netcore50/System.Threading.dll",
  7282. "ref/netcore50/System.Threading.xml",
  7283. "ref/netcore50/de/System.Threading.xml",
  7284. "ref/netcore50/es/System.Threading.xml",
  7285. "ref/netcore50/fr/System.Threading.xml",
  7286. "ref/netcore50/it/System.Threading.xml",
  7287. "ref/netcore50/ja/System.Threading.xml",
  7288. "ref/netcore50/ko/System.Threading.xml",
  7289. "ref/netcore50/ru/System.Threading.xml",
  7290. "ref/netcore50/zh-hans/System.Threading.xml",
  7291. "ref/netcore50/zh-hant/System.Threading.xml",
  7292. "ref/netstandard1.0/System.Threading.dll",
  7293. "ref/netstandard1.0/System.Threading.xml",
  7294. "ref/netstandard1.0/de/System.Threading.xml",
  7295. "ref/netstandard1.0/es/System.Threading.xml",
  7296. "ref/netstandard1.0/fr/System.Threading.xml",
  7297. "ref/netstandard1.0/it/System.Threading.xml",
  7298. "ref/netstandard1.0/ja/System.Threading.xml",
  7299. "ref/netstandard1.0/ko/System.Threading.xml",
  7300. "ref/netstandard1.0/ru/System.Threading.xml",
  7301. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7302. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7303. "ref/netstandard1.3/System.Threading.dll",
  7304. "ref/netstandard1.3/System.Threading.xml",
  7305. "ref/netstandard1.3/de/System.Threading.xml",
  7306. "ref/netstandard1.3/es/System.Threading.xml",
  7307. "ref/netstandard1.3/fr/System.Threading.xml",
  7308. "ref/netstandard1.3/it/System.Threading.xml",
  7309. "ref/netstandard1.3/ja/System.Threading.xml",
  7310. "ref/netstandard1.3/ko/System.Threading.xml",
  7311. "ref/netstandard1.3/ru/System.Threading.xml",
  7312. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7313. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7314. "ref/portable-net45+win8+wp8+wpa81/_._",
  7315. "ref/win8/_._",
  7316. "ref/wp80/_._",
  7317. "ref/wpa81/_._",
  7318. "ref/xamarinios10/_._",
  7319. "ref/xamarinmac20/_._",
  7320. "ref/xamarintvos10/_._",
  7321. "ref/xamarinwatchos10/_._",
  7322. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7323. "system.threading.4.3.0.nupkg.sha512",
  7324. "system.threading.nuspec"
  7325. ]
  7326. },
  7327. "System.Threading.Tasks/4.3.0": {
  7328. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7329. "type": "package",
  7330. "path": "system.threading.tasks/4.3.0",
  7331. "files": [
  7332. ".nupkg.metadata",
  7333. ".signature.p7s",
  7334. "ThirdPartyNotices.txt",
  7335. "dotnet_library_license.txt",
  7336. "lib/MonoAndroid10/_._",
  7337. "lib/MonoTouch10/_._",
  7338. "lib/net45/_._",
  7339. "lib/portable-net45+win8+wp8+wpa81/_._",
  7340. "lib/win8/_._",
  7341. "lib/wp80/_._",
  7342. "lib/wpa81/_._",
  7343. "lib/xamarinios10/_._",
  7344. "lib/xamarinmac20/_._",
  7345. "lib/xamarintvos10/_._",
  7346. "lib/xamarinwatchos10/_._",
  7347. "ref/MonoAndroid10/_._",
  7348. "ref/MonoTouch10/_._",
  7349. "ref/net45/_._",
  7350. "ref/netcore50/System.Threading.Tasks.dll",
  7351. "ref/netcore50/System.Threading.Tasks.xml",
  7352. "ref/netcore50/de/System.Threading.Tasks.xml",
  7353. "ref/netcore50/es/System.Threading.Tasks.xml",
  7354. "ref/netcore50/fr/System.Threading.Tasks.xml",
  7355. "ref/netcore50/it/System.Threading.Tasks.xml",
  7356. "ref/netcore50/ja/System.Threading.Tasks.xml",
  7357. "ref/netcore50/ko/System.Threading.Tasks.xml",
  7358. "ref/netcore50/ru/System.Threading.Tasks.xml",
  7359. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  7360. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  7361. "ref/netstandard1.0/System.Threading.Tasks.dll",
  7362. "ref/netstandard1.0/System.Threading.Tasks.xml",
  7363. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  7364. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  7365. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  7366. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  7367. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  7368. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  7369. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  7370. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  7371. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  7372. "ref/netstandard1.3/System.Threading.Tasks.dll",
  7373. "ref/netstandard1.3/System.Threading.Tasks.xml",
  7374. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  7375. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  7376. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  7377. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  7378. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  7379. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  7380. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  7381. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  7382. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  7383. "ref/portable-net45+win8+wp8+wpa81/_._",
  7384. "ref/win8/_._",
  7385. "ref/wp80/_._",
  7386. "ref/wpa81/_._",
  7387. "ref/xamarinios10/_._",
  7388. "ref/xamarinmac20/_._",
  7389. "ref/xamarintvos10/_._",
  7390. "ref/xamarinwatchos10/_._",
  7391. "system.threading.tasks.4.3.0.nupkg.sha512",
  7392. "system.threading.tasks.nuspec"
  7393. ]
  7394. },
  7395. "System.Threading.Tasks.Extensions/4.3.0": {
  7396. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  7397. "type": "package",
  7398. "path": "system.threading.tasks.extensions/4.3.0",
  7399. "files": [
  7400. ".nupkg.metadata",
  7401. ".signature.p7s",
  7402. "ThirdPartyNotices.txt",
  7403. "dotnet_library_license.txt",
  7404. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  7405. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  7406. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  7407. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  7408. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  7409. "system.threading.tasks.extensions.nuspec"
  7410. ]
  7411. },
  7412. "System.Threading.Timer/4.3.0": {
  7413. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  7414. "type": "package",
  7415. "path": "system.threading.timer/4.3.0",
  7416. "files": [
  7417. ".nupkg.metadata",
  7418. ".signature.p7s",
  7419. "ThirdPartyNotices.txt",
  7420. "dotnet_library_license.txt",
  7421. "lib/MonoAndroid10/_._",
  7422. "lib/MonoTouch10/_._",
  7423. "lib/net451/_._",
  7424. "lib/portable-net451+win81+wpa81/_._",
  7425. "lib/win81/_._",
  7426. "lib/wpa81/_._",
  7427. "lib/xamarinios10/_._",
  7428. "lib/xamarinmac20/_._",
  7429. "lib/xamarintvos10/_._",
  7430. "lib/xamarinwatchos10/_._",
  7431. "ref/MonoAndroid10/_._",
  7432. "ref/MonoTouch10/_._",
  7433. "ref/net451/_._",
  7434. "ref/netcore50/System.Threading.Timer.dll",
  7435. "ref/netcore50/System.Threading.Timer.xml",
  7436. "ref/netcore50/de/System.Threading.Timer.xml",
  7437. "ref/netcore50/es/System.Threading.Timer.xml",
  7438. "ref/netcore50/fr/System.Threading.Timer.xml",
  7439. "ref/netcore50/it/System.Threading.Timer.xml",
  7440. "ref/netcore50/ja/System.Threading.Timer.xml",
  7441. "ref/netcore50/ko/System.Threading.Timer.xml",
  7442. "ref/netcore50/ru/System.Threading.Timer.xml",
  7443. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  7444. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  7445. "ref/netstandard1.2/System.Threading.Timer.dll",
  7446. "ref/netstandard1.2/System.Threading.Timer.xml",
  7447. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  7448. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  7449. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  7450. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  7451. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  7452. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  7453. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  7454. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  7455. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  7456. "ref/portable-net451+win81+wpa81/_._",
  7457. "ref/win81/_._",
  7458. "ref/wpa81/_._",
  7459. "ref/xamarinios10/_._",
  7460. "ref/xamarinmac20/_._",
  7461. "ref/xamarintvos10/_._",
  7462. "ref/xamarinwatchos10/_._",
  7463. "system.threading.timer.4.3.0.nupkg.sha512",
  7464. "system.threading.timer.nuspec"
  7465. ]
  7466. },
  7467. "System.Windows.Extensions/4.7.0": {
  7468. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  7469. "type": "package",
  7470. "path": "system.windows.extensions/4.7.0",
  7471. "files": [
  7472. ".nupkg.metadata",
  7473. ".signature.p7s",
  7474. "LICENSE.TXT",
  7475. "THIRD-PARTY-NOTICES.TXT",
  7476. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  7477. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  7478. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  7479. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  7480. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  7481. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  7482. "system.windows.extensions.4.7.0.nupkg.sha512",
  7483. "system.windows.extensions.nuspec",
  7484. "useSharedDesignerContext.txt",
  7485. "version.txt"
  7486. ]
  7487. },
  7488. "System.Xml.ReaderWriter/4.3.0": {
  7489. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  7490. "type": "package",
  7491. "path": "system.xml.readerwriter/4.3.0",
  7492. "files": [
  7493. ".nupkg.metadata",
  7494. ".signature.p7s",
  7495. "ThirdPartyNotices.txt",
  7496. "dotnet_library_license.txt",
  7497. "lib/MonoAndroid10/_._",
  7498. "lib/MonoTouch10/_._",
  7499. "lib/net45/_._",
  7500. "lib/net46/System.Xml.ReaderWriter.dll",
  7501. "lib/netcore50/System.Xml.ReaderWriter.dll",
  7502. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  7503. "lib/portable-net45+win8+wp8+wpa81/_._",
  7504. "lib/win8/_._",
  7505. "lib/wp80/_._",
  7506. "lib/wpa81/_._",
  7507. "lib/xamarinios10/_._",
  7508. "lib/xamarinmac20/_._",
  7509. "lib/xamarintvos10/_._",
  7510. "lib/xamarinwatchos10/_._",
  7511. "ref/MonoAndroid10/_._",
  7512. "ref/MonoTouch10/_._",
  7513. "ref/net45/_._",
  7514. "ref/net46/System.Xml.ReaderWriter.dll",
  7515. "ref/netcore50/System.Xml.ReaderWriter.dll",
  7516. "ref/netcore50/System.Xml.ReaderWriter.xml",
  7517. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  7518. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  7519. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  7520. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  7521. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  7522. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  7523. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  7524. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  7525. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  7526. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  7527. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  7528. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  7529. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  7530. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  7531. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  7532. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  7533. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  7534. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  7535. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  7536. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  7537. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  7538. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  7539. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  7540. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  7541. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  7542. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  7543. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  7544. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  7545. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  7546. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  7547. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  7548. "ref/portable-net45+win8+wp8+wpa81/_._",
  7549. "ref/win8/_._",
  7550. "ref/wp80/_._",
  7551. "ref/wpa81/_._",
  7552. "ref/xamarinios10/_._",
  7553. "ref/xamarinmac20/_._",
  7554. "ref/xamarintvos10/_._",
  7555. "ref/xamarinwatchos10/_._",
  7556. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  7557. "system.xml.readerwriter.nuspec"
  7558. ]
  7559. },
  7560. "System.Xml.XDocument/4.3.0": {
  7561. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  7562. "type": "package",
  7563. "path": "system.xml.xdocument/4.3.0",
  7564. "files": [
  7565. ".nupkg.metadata",
  7566. ".signature.p7s",
  7567. "ThirdPartyNotices.txt",
  7568. "dotnet_library_license.txt",
  7569. "lib/MonoAndroid10/_._",
  7570. "lib/MonoTouch10/_._",
  7571. "lib/net45/_._",
  7572. "lib/netcore50/System.Xml.XDocument.dll",
  7573. "lib/netstandard1.3/System.Xml.XDocument.dll",
  7574. "lib/portable-net45+win8+wp8+wpa81/_._",
  7575. "lib/win8/_._",
  7576. "lib/wp80/_._",
  7577. "lib/wpa81/_._",
  7578. "lib/xamarinios10/_._",
  7579. "lib/xamarinmac20/_._",
  7580. "lib/xamarintvos10/_._",
  7581. "lib/xamarinwatchos10/_._",
  7582. "ref/MonoAndroid10/_._",
  7583. "ref/MonoTouch10/_._",
  7584. "ref/net45/_._",
  7585. "ref/netcore50/System.Xml.XDocument.dll",
  7586. "ref/netcore50/System.Xml.XDocument.xml",
  7587. "ref/netcore50/de/System.Xml.XDocument.xml",
  7588. "ref/netcore50/es/System.Xml.XDocument.xml",
  7589. "ref/netcore50/fr/System.Xml.XDocument.xml",
  7590. "ref/netcore50/it/System.Xml.XDocument.xml",
  7591. "ref/netcore50/ja/System.Xml.XDocument.xml",
  7592. "ref/netcore50/ko/System.Xml.XDocument.xml",
  7593. "ref/netcore50/ru/System.Xml.XDocument.xml",
  7594. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  7595. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  7596. "ref/netstandard1.0/System.Xml.XDocument.dll",
  7597. "ref/netstandard1.0/System.Xml.XDocument.xml",
  7598. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  7599. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  7600. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  7601. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  7602. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  7603. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  7604. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  7605. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  7606. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  7607. "ref/netstandard1.3/System.Xml.XDocument.dll",
  7608. "ref/netstandard1.3/System.Xml.XDocument.xml",
  7609. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  7610. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  7611. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  7612. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  7613. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  7614. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  7615. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  7616. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  7617. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  7618. "ref/portable-net45+win8+wp8+wpa81/_._",
  7619. "ref/win8/_._",
  7620. "ref/wp80/_._",
  7621. "ref/wpa81/_._",
  7622. "ref/xamarinios10/_._",
  7623. "ref/xamarinmac20/_._",
  7624. "ref/xamarintvos10/_._",
  7625. "ref/xamarinwatchos10/_._",
  7626. "system.xml.xdocument.4.3.0.nupkg.sha512",
  7627. "system.xml.xdocument.nuspec"
  7628. ]
  7629. },
  7630. "System.Xml.XmlDocument/4.3.0": {
  7631. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  7632. "type": "package",
  7633. "path": "system.xml.xmldocument/4.3.0",
  7634. "files": [
  7635. ".nupkg.metadata",
  7636. ".signature.p7s",
  7637. "ThirdPartyNotices.txt",
  7638. "dotnet_library_license.txt",
  7639. "lib/MonoAndroid10/_._",
  7640. "lib/MonoTouch10/_._",
  7641. "lib/net46/System.Xml.XmlDocument.dll",
  7642. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  7643. "lib/xamarinios10/_._",
  7644. "lib/xamarinmac20/_._",
  7645. "lib/xamarintvos10/_._",
  7646. "lib/xamarinwatchos10/_._",
  7647. "ref/MonoAndroid10/_._",
  7648. "ref/MonoTouch10/_._",
  7649. "ref/net46/System.Xml.XmlDocument.dll",
  7650. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  7651. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  7652. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  7653. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  7654. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  7655. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  7656. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  7657. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  7658. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  7659. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  7660. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  7661. "ref/xamarinios10/_._",
  7662. "ref/xamarinmac20/_._",
  7663. "ref/xamarintvos10/_._",
  7664. "ref/xamarinwatchos10/_._",
  7665. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  7666. "system.xml.xmldocument.nuspec"
  7667. ]
  7668. },
  7669. "OASystem.Domain/1.0.0": {
  7670. "type": "project",
  7671. "path": "../OASystem.Domain/OASystem.Domain.csproj",
  7672. "msbuildProject": "../OASystem.Domain/OASystem.Domain.csproj"
  7673. }
  7674. },
  7675. "projectFileDependencyGroups": {
  7676. "net6.0": [
  7677. "Autofac >= 6.4.0",
  7678. "Autofac.Extensions.DependencyInjection >= 8.0.0",
  7679. "OASystem.Domain >= 1.0.0",
  7680. "SqlSugarCore >= 5.1.3.32"
  7681. ]
  7682. },
  7683. "packageFolders": {
  7684. "C:\\Users\\admin\\.nuget\\packages\\": {},
  7685. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  7686. },
  7687. "project": {
  7688. "version": "1.0.0",
  7689. "restore": {
  7690. "projectUniqueName": "E:\\Git\\ProjectsResposity\\OASystem\\EntitySync\\EntitySync.csproj",
  7691. "projectName": "EntitySync",
  7692. "projectPath": "E:\\Git\\ProjectsResposity\\OASystem\\EntitySync\\EntitySync.csproj",
  7693. "packagesPath": "C:\\Users\\admin\\.nuget\\packages\\",
  7694. "outputPath": "E:\\Git\\ProjectsResposity\\OASystem\\EntitySync\\obj\\",
  7695. "projectStyle": "PackageReference",
  7696. "fallbackFolders": [
  7697. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  7698. ],
  7699. "configFilePaths": [
  7700. "C:\\Users\\admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
  7701. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  7702. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  7703. ],
  7704. "originalTargetFrameworks": [
  7705. "net6.0"
  7706. ],
  7707. "sources": {
  7708. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  7709. "C:\\Program Files\\dotnet\\library-packs": {},
  7710. "https://api.nuget.org/v3/index.json": {}
  7711. },
  7712. "frameworks": {
  7713. "net6.0": {
  7714. "targetAlias": "net6.0",
  7715. "projectReferences": {
  7716. "E:\\Git\\ProjectsResposity\\OASystem\\OASystem.Domain\\OASystem.Domain.csproj": {
  7717. "projectPath": "E:\\Git\\ProjectsResposity\\OASystem\\OASystem.Domain\\OASystem.Domain.csproj"
  7718. }
  7719. }
  7720. }
  7721. },
  7722. "warningProperties": {
  7723. "warnAsError": [
  7724. "NU1605"
  7725. ]
  7726. }
  7727. },
  7728. "frameworks": {
  7729. "net6.0": {
  7730. "targetAlias": "net6.0",
  7731. "dependencies": {
  7732. "Autofac": {
  7733. "target": "Package",
  7734. "version": "[6.4.0, )"
  7735. },
  7736. "Autofac.Extensions.DependencyInjection": {
  7737. "target": "Package",
  7738. "version": "[8.0.0, )"
  7739. },
  7740. "SqlSugarCore": {
  7741. "target": "Package",
  7742. "version": "[5.1.3.32, )"
  7743. }
  7744. },
  7745. "imports": [
  7746. "net461",
  7747. "net462",
  7748. "net47",
  7749. "net471",
  7750. "net472",
  7751. "net48",
  7752. "net481"
  7753. ],
  7754. "assetTargetFallback": true,
  7755. "warn": true,
  7756. "frameworkReferences": {
  7757. "Microsoft.NETCore.App": {
  7758. "privateAssets": "all"
  7759. }
  7760. },
  7761. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json"
  7762. }
  7763. }
  7764. }
  7765. }