project.assets.json 348 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503
  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. "Betalgo.OpenAI.GPT3/6.6.7": {
  68. "type": "package",
  69. "dependencies": {
  70. "Microsoft.AspNet.WebApi.Client": "5.2.9",
  71. "Microsoft.Extensions.Http": "6.0.0",
  72. "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0"
  73. },
  74. "compile": {
  75. "lib/net6.0/OpenAI.GPT3.dll": {
  76. "related": ".xml"
  77. }
  78. },
  79. "runtime": {
  80. "lib/net6.0/OpenAI.GPT3.dll": {
  81. "related": ".xml"
  82. }
  83. }
  84. },
  85. "BouncyCastle.NetCore/1.8.8": {
  86. "type": "package",
  87. "compile": {
  88. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  89. "related": ".xml"
  90. }
  91. },
  92. "runtime": {
  93. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  94. "related": ".xml"
  95. }
  96. }
  97. },
  98. "Flurl/3.0.6": {
  99. "type": "package",
  100. "compile": {
  101. "lib/netstandard2.0/Flurl.dll": {
  102. "related": ".xml"
  103. }
  104. },
  105. "runtime": {
  106. "lib/netstandard2.0/Flurl.dll": {
  107. "related": ".xml"
  108. }
  109. }
  110. },
  111. "Flurl.Http/3.2.4": {
  112. "type": "package",
  113. "dependencies": {
  114. "Flurl": "3.0.6",
  115. "Newtonsoft.Json": "12.0.2",
  116. "System.Text.Encoding.CodePages": "4.5.1"
  117. },
  118. "compile": {
  119. "lib/netstandard2.0/Flurl.Http.dll": {
  120. "related": ".xml"
  121. }
  122. },
  123. "runtime": {
  124. "lib/netstandard2.0/Flurl.Http.dll": {
  125. "related": ".xml"
  126. }
  127. }
  128. },
  129. "Google.Protobuf/3.19.4": {
  130. "type": "package",
  131. "compile": {
  132. "lib/net5.0/Google.Protobuf.dll": {
  133. "related": ".pdb;.xml"
  134. }
  135. },
  136. "runtime": {
  137. "lib/net5.0/Google.Protobuf.dll": {
  138. "related": ".pdb;.xml"
  139. }
  140. }
  141. },
  142. "K4os.Compression.LZ4/1.2.6": {
  143. "type": "package",
  144. "dependencies": {
  145. "System.Memory": "4.5.4"
  146. },
  147. "compile": {
  148. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  149. "related": ".xml"
  150. }
  151. },
  152. "runtime": {
  153. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  154. "related": ".xml"
  155. }
  156. }
  157. },
  158. "K4os.Compression.LZ4.Streams/1.2.6": {
  159. "type": "package",
  160. "dependencies": {
  161. "K4os.Compression.LZ4": "1.2.6",
  162. "K4os.Hash.xxHash": "1.0.6"
  163. },
  164. "compile": {
  165. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  166. "related": ".xml"
  167. }
  168. },
  169. "runtime": {
  170. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  171. "related": ".xml"
  172. }
  173. }
  174. },
  175. "K4os.Hash.xxHash/1.0.6": {
  176. "type": "package",
  177. "dependencies": {
  178. "System.Memory": "4.5.3"
  179. },
  180. "compile": {
  181. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  182. "related": ".xml"
  183. }
  184. },
  185. "runtime": {
  186. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  187. "related": ".xml"
  188. }
  189. }
  190. },
  191. "Microsoft.AspNet.WebApi.Client/5.2.9": {
  192. "type": "package",
  193. "dependencies": {
  194. "Newtonsoft.Json": "10.0.1",
  195. "Newtonsoft.Json.Bson": "1.0.1"
  196. },
  197. "compile": {
  198. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
  199. "related": ".xml"
  200. }
  201. },
  202. "runtime": {
  203. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
  204. "related": ".xml"
  205. }
  206. }
  207. },
  208. "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.11": {
  209. "type": "package",
  210. "dependencies": {
  211. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0"
  212. },
  213. "compile": {
  214. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  215. "related": ".xml"
  216. }
  217. },
  218. "runtime": {
  219. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  220. "related": ".xml"
  221. }
  222. },
  223. "frameworkReferences": [
  224. "Microsoft.AspNetCore.App"
  225. ]
  226. },
  227. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  228. "type": "package",
  229. "dependencies": {
  230. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  231. "System.Text.Encodings.Web": "4.5.0"
  232. },
  233. "compile": {
  234. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  235. "related": ".xml"
  236. }
  237. },
  238. "runtime": {
  239. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  240. "related": ".xml"
  241. }
  242. }
  243. },
  244. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  245. "type": "package",
  246. "dependencies": {
  247. "Microsoft.Extensions.Primitives": "2.2.0"
  248. },
  249. "compile": {
  250. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  251. "related": ".xml"
  252. }
  253. },
  254. "runtime": {
  255. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  256. "related": ".xml"
  257. }
  258. }
  259. },
  260. "Microsoft.CSharp/4.7.0": {
  261. "type": "package",
  262. "compile": {
  263. "ref/netcoreapp2.0/_._": {}
  264. },
  265. "runtime": {
  266. "lib/netcoreapp2.0/_._": {}
  267. }
  268. },
  269. "Microsoft.Data.SqlClient/2.1.1": {
  270. "type": "package",
  271. "dependencies": {
  272. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  273. "Microsoft.Identity.Client": "4.21.1",
  274. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  275. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
  276. "Microsoft.Win32.Registry": "4.7.0",
  277. "System.Configuration.ConfigurationManager": "4.7.0",
  278. "System.Diagnostics.DiagnosticSource": "4.7.0",
  279. "System.Runtime.Caching": "4.7.0",
  280. "System.Security.Principal.Windows": "4.7.0",
  281. "System.Text.Encoding.CodePages": "4.7.0"
  282. },
  283. "compile": {
  284. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  285. "related": ".pdb;.xml"
  286. }
  287. },
  288. "runtime": {
  289. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  290. "related": ".pdb;.xml"
  291. }
  292. },
  293. "runtimeTargets": {
  294. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  295. "assetType": "runtime",
  296. "rid": "unix"
  297. },
  298. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  299. "assetType": "runtime",
  300. "rid": "win"
  301. }
  302. }
  303. },
  304. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  305. "type": "package",
  306. "runtimeTargets": {
  307. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  308. "assetType": "native",
  309. "rid": "win-arm"
  310. },
  311. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  312. "assetType": "native",
  313. "rid": "win-arm64"
  314. },
  315. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  316. "assetType": "native",
  317. "rid": "win-x64"
  318. },
  319. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  320. "assetType": "native",
  321. "rid": "win-x86"
  322. }
  323. }
  324. },
  325. "Microsoft.Data.Sqlite/5.0.5": {
  326. "type": "package",
  327. "dependencies": {
  328. "Microsoft.Data.Sqlite.Core": "5.0.5",
  329. "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4"
  330. },
  331. "compile": {
  332. "lib/netstandard2.0/_._": {}
  333. },
  334. "runtime": {
  335. "lib/netstandard2.0/_._": {}
  336. }
  337. },
  338. "Microsoft.Data.Sqlite.Core/5.0.5": {
  339. "type": "package",
  340. "dependencies": {
  341. "SQLitePCLRaw.core": "2.0.4"
  342. },
  343. "compile": {
  344. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  345. "related": ".xml"
  346. }
  347. },
  348. "runtime": {
  349. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  350. "related": ".xml"
  351. }
  352. }
  353. },
  354. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  355. "type": "package",
  356. "build": {
  357. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  358. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  359. },
  360. "buildMultiTargeting": {
  361. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  362. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  363. }
  364. },
  365. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  366. "type": "package",
  367. "dependencies": {
  368. "Microsoft.Extensions.Primitives": "7.0.0"
  369. },
  370. "compile": {
  371. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  372. "related": ".xml"
  373. }
  374. },
  375. "runtime": {
  376. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  377. "related": ".xml"
  378. }
  379. },
  380. "build": {
  381. "buildTransitive/net6.0/_._": {}
  382. }
  383. },
  384. "Microsoft.Extensions.Configuration.Binder/7.0.0": {
  385. "type": "package",
  386. "dependencies": {
  387. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
  388. },
  389. "compile": {
  390. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll": {
  391. "related": ".xml"
  392. }
  393. },
  394. "runtime": {
  395. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll": {
  396. "related": ".xml"
  397. }
  398. },
  399. "build": {
  400. "buildTransitive/net6.0/_._": {}
  401. }
  402. },
  403. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  404. "type": "package",
  405. "dependencies": {
  406. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  407. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  408. },
  409. "compile": {
  410. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  411. "related": ".xml"
  412. }
  413. },
  414. "runtime": {
  415. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  416. "related": ".xml"
  417. }
  418. },
  419. "build": {
  420. "buildTransitive/netcoreapp3.1/_._": {}
  421. }
  422. },
  423. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  424. "type": "package",
  425. "compile": {
  426. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  427. "related": ".xml"
  428. }
  429. },
  430. "runtime": {
  431. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  432. "related": ".xml"
  433. }
  434. },
  435. "build": {
  436. "buildTransitive/netcoreapp3.1/_._": {}
  437. }
  438. },
  439. "Microsoft.Extensions.Http/6.0.0": {
  440. "type": "package",
  441. "dependencies": {
  442. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  443. "Microsoft.Extensions.Logging": "6.0.0",
  444. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  445. "Microsoft.Extensions.Options": "6.0.0"
  446. },
  447. "compile": {
  448. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  449. "related": ".xml"
  450. }
  451. },
  452. "runtime": {
  453. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {
  454. "related": ".xml"
  455. }
  456. }
  457. },
  458. "Microsoft.Extensions.Logging/6.0.0": {
  459. "type": "package",
  460. "dependencies": {
  461. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  462. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  463. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  464. "Microsoft.Extensions.Options": "6.0.0",
  465. "System.Diagnostics.DiagnosticSource": "6.0.0"
  466. },
  467. "compile": {
  468. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  469. "related": ".xml"
  470. }
  471. },
  472. "runtime": {
  473. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  474. "related": ".xml"
  475. }
  476. }
  477. },
  478. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  479. "type": "package",
  480. "compile": {
  481. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  482. "related": ".xml"
  483. }
  484. },
  485. "runtime": {
  486. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  487. "related": ".xml"
  488. }
  489. },
  490. "build": {
  491. "buildTransitive/netcoreapp3.1/_._": {}
  492. }
  493. },
  494. "Microsoft.Extensions.Options/6.0.0": {
  495. "type": "package",
  496. "dependencies": {
  497. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  498. "Microsoft.Extensions.Primitives": "6.0.0"
  499. },
  500. "compile": {
  501. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  502. "related": ".xml"
  503. }
  504. },
  505. "runtime": {
  506. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  507. "related": ".xml"
  508. }
  509. }
  510. },
  511. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  512. "type": "package",
  513. "dependencies": {
  514. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  515. "Microsoft.Extensions.Configuration.Binder": "6.0.0",
  516. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  517. "Microsoft.Extensions.Options": "6.0.0",
  518. "Microsoft.Extensions.Primitives": "6.0.0"
  519. },
  520. "compile": {
  521. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  522. "related": ".xml"
  523. }
  524. },
  525. "runtime": {
  526. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  527. "related": ".xml"
  528. }
  529. }
  530. },
  531. "Microsoft.Extensions.Primitives/7.0.0": {
  532. "type": "package",
  533. "dependencies": {
  534. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  535. },
  536. "compile": {
  537. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  538. "related": ".xml"
  539. }
  540. },
  541. "runtime": {
  542. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  543. "related": ".xml"
  544. }
  545. },
  546. "build": {
  547. "buildTransitive/net6.0/_._": {}
  548. }
  549. },
  550. "Microsoft.Identity.Client/4.21.1": {
  551. "type": "package",
  552. "compile": {
  553. "ref/netcoreapp2.1/_._": {
  554. "related": ".xml"
  555. }
  556. },
  557. "runtime": {
  558. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  559. "related": ".xml"
  560. }
  561. }
  562. },
  563. "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
  564. "type": "package",
  565. "dependencies": {
  566. "Microsoft.IdentityModel.Tokens": "6.10.0"
  567. },
  568. "compile": {
  569. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  570. "related": ".xml"
  571. }
  572. },
  573. "runtime": {
  574. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  575. "related": ".xml"
  576. }
  577. }
  578. },
  579. "Microsoft.IdentityModel.Logging/6.10.0": {
  580. "type": "package",
  581. "compile": {
  582. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  583. "related": ".xml"
  584. }
  585. },
  586. "runtime": {
  587. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  588. "related": ".xml"
  589. }
  590. }
  591. },
  592. "Microsoft.IdentityModel.Protocols/6.10.0": {
  593. "type": "package",
  594. "dependencies": {
  595. "Microsoft.IdentityModel.Logging": "6.10.0",
  596. "Microsoft.IdentityModel.Tokens": "6.10.0"
  597. },
  598. "compile": {
  599. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  600. "related": ".xml"
  601. }
  602. },
  603. "runtime": {
  604. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  605. "related": ".xml"
  606. }
  607. }
  608. },
  609. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
  610. "type": "package",
  611. "dependencies": {
  612. "Microsoft.IdentityModel.Protocols": "6.10.0",
  613. "System.IdentityModel.Tokens.Jwt": "6.10.0"
  614. },
  615. "compile": {
  616. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  617. "related": ".xml"
  618. }
  619. },
  620. "runtime": {
  621. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  622. "related": ".xml"
  623. }
  624. }
  625. },
  626. "Microsoft.IdentityModel.Tokens/6.10.0": {
  627. "type": "package",
  628. "dependencies": {
  629. "Microsoft.CSharp": "4.5.0",
  630. "Microsoft.IdentityModel.Logging": "6.10.0",
  631. "System.Security.Cryptography.Cng": "4.5.0"
  632. },
  633. "compile": {
  634. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  635. "related": ".xml"
  636. }
  637. },
  638. "runtime": {
  639. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  640. "related": ".xml"
  641. }
  642. }
  643. },
  644. "Microsoft.NETCore.Platforms/3.1.0": {
  645. "type": "package",
  646. "compile": {
  647. "lib/netstandard1.0/_._": {}
  648. },
  649. "runtime": {
  650. "lib/netstandard1.0/_._": {}
  651. }
  652. },
  653. "Microsoft.NETCore.Targets/1.1.0": {
  654. "type": "package",
  655. "compile": {
  656. "lib/netstandard1.0/_._": {}
  657. },
  658. "runtime": {
  659. "lib/netstandard1.0/_._": {}
  660. }
  661. },
  662. "Microsoft.OpenApi/1.2.3": {
  663. "type": "package",
  664. "compile": {
  665. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  666. "related": ".pdb;.xml"
  667. }
  668. },
  669. "runtime": {
  670. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  671. "related": ".pdb;.xml"
  672. }
  673. }
  674. },
  675. "Microsoft.Win32.Primitives/4.3.0": {
  676. "type": "package",
  677. "dependencies": {
  678. "Microsoft.NETCore.Platforms": "1.1.0",
  679. "Microsoft.NETCore.Targets": "1.1.0",
  680. "System.Runtime": "4.3.0"
  681. },
  682. "compile": {
  683. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  684. "related": ".xml"
  685. }
  686. }
  687. },
  688. "Microsoft.Win32.Registry/4.7.0": {
  689. "type": "package",
  690. "dependencies": {
  691. "System.Security.AccessControl": "4.7.0",
  692. "System.Security.Principal.Windows": "4.7.0"
  693. },
  694. "compile": {
  695. "ref/netstandard2.0/_._": {
  696. "related": ".xml"
  697. }
  698. },
  699. "runtime": {
  700. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  701. "related": ".xml"
  702. }
  703. },
  704. "runtimeTargets": {
  705. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  706. "assetType": "runtime",
  707. "rid": "unix"
  708. },
  709. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  710. "assetType": "runtime",
  711. "rid": "win"
  712. }
  713. }
  714. },
  715. "Microsoft.Win32.SystemEvents/4.7.0": {
  716. "type": "package",
  717. "dependencies": {
  718. "Microsoft.NETCore.Platforms": "3.1.0"
  719. },
  720. "compile": {
  721. "ref/netstandard2.0/_._": {
  722. "related": ".xml"
  723. }
  724. },
  725. "runtime": {
  726. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  727. "related": ".xml"
  728. }
  729. },
  730. "runtimeTargets": {
  731. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  732. "assetType": "runtime",
  733. "rid": "win"
  734. }
  735. }
  736. },
  737. "MySql.Data/8.0.29": {
  738. "type": "package",
  739. "dependencies": {
  740. "BouncyCastle.NetCore": "1.8.5",
  741. "Google.Protobuf": "3.19.4",
  742. "K4os.Compression.LZ4.Streams": "1.2.6",
  743. "System.Buffers": "4.5.1",
  744. "System.Configuration.ConfigurationManager": "4.4.1",
  745. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  746. "System.Security.Permissions": "4.7.0",
  747. "System.Text.Encoding.CodePages": "4.4.0"
  748. },
  749. "compile": {
  750. "lib/net6.0/MySql.Data.dll": {
  751. "related": ".xml"
  752. },
  753. "lib/net6.0/Ubiety.Dns.Core.dll": {},
  754. "lib/net6.0/ZstdNet.dll": {}
  755. },
  756. "runtime": {
  757. "lib/net6.0/MySql.Data.dll": {
  758. "related": ".xml"
  759. },
  760. "lib/net6.0/Ubiety.Dns.Core.dll": {},
  761. "lib/net6.0/ZstdNet.dll": {}
  762. }
  763. },
  764. "NETStandard.Library/1.6.1": {
  765. "type": "package",
  766. "dependencies": {
  767. "Microsoft.NETCore.Platforms": "1.1.0",
  768. "Microsoft.Win32.Primitives": "4.3.0",
  769. "System.AppContext": "4.3.0",
  770. "System.Collections": "4.3.0",
  771. "System.Collections.Concurrent": "4.3.0",
  772. "System.Console": "4.3.0",
  773. "System.Diagnostics.Debug": "4.3.0",
  774. "System.Diagnostics.Tools": "4.3.0",
  775. "System.Diagnostics.Tracing": "4.3.0",
  776. "System.Globalization": "4.3.0",
  777. "System.Globalization.Calendars": "4.3.0",
  778. "System.IO": "4.3.0",
  779. "System.IO.Compression": "4.3.0",
  780. "System.IO.Compression.ZipFile": "4.3.0",
  781. "System.IO.FileSystem": "4.3.0",
  782. "System.IO.FileSystem.Primitives": "4.3.0",
  783. "System.Linq": "4.3.0",
  784. "System.Linq.Expressions": "4.3.0",
  785. "System.Net.Http": "4.3.0",
  786. "System.Net.Primitives": "4.3.0",
  787. "System.Net.Sockets": "4.3.0",
  788. "System.ObjectModel": "4.3.0",
  789. "System.Reflection": "4.3.0",
  790. "System.Reflection.Extensions": "4.3.0",
  791. "System.Reflection.Primitives": "4.3.0",
  792. "System.Resources.ResourceManager": "4.3.0",
  793. "System.Runtime": "4.3.0",
  794. "System.Runtime.Extensions": "4.3.0",
  795. "System.Runtime.Handles": "4.3.0",
  796. "System.Runtime.InteropServices": "4.3.0",
  797. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  798. "System.Runtime.Numerics": "4.3.0",
  799. "System.Security.Cryptography.Algorithms": "4.3.0",
  800. "System.Security.Cryptography.Encoding": "4.3.0",
  801. "System.Security.Cryptography.Primitives": "4.3.0",
  802. "System.Security.Cryptography.X509Certificates": "4.3.0",
  803. "System.Text.Encoding": "4.3.0",
  804. "System.Text.Encoding.Extensions": "4.3.0",
  805. "System.Text.RegularExpressions": "4.3.0",
  806. "System.Threading": "4.3.0",
  807. "System.Threading.Tasks": "4.3.0",
  808. "System.Threading.Timer": "4.3.0",
  809. "System.Xml.ReaderWriter": "4.3.0",
  810. "System.Xml.XDocument": "4.3.0"
  811. }
  812. },
  813. "Newtonsoft.Json/12.0.2": {
  814. "type": "package",
  815. "compile": {
  816. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  817. "related": ".xml"
  818. }
  819. },
  820. "runtime": {
  821. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  822. "related": ".xml"
  823. }
  824. }
  825. },
  826. "Newtonsoft.Json.Bson/1.0.1": {
  827. "type": "package",
  828. "dependencies": {
  829. "NETStandard.Library": "1.6.1",
  830. "Newtonsoft.Json": "10.0.1"
  831. },
  832. "compile": {
  833. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  834. "related": ".xml"
  835. }
  836. },
  837. "runtime": {
  838. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  839. "related": ".xml"
  840. }
  841. }
  842. },
  843. "Npgsql/5.0.7": {
  844. "type": "package",
  845. "dependencies": {
  846. "System.Runtime.CompilerServices.Unsafe": "4.6.0"
  847. },
  848. "compile": {
  849. "lib/net5.0/Npgsql.dll": {
  850. "related": ".xml"
  851. }
  852. },
  853. "runtime": {
  854. "lib/net5.0/Npgsql.dll": {
  855. "related": ".xml"
  856. }
  857. }
  858. },
  859. "Oracle.ManagedDataAccess.Core/3.21.1": {
  860. "type": "package",
  861. "dependencies": {
  862. "System.Diagnostics.PerformanceCounter": "4.7.0",
  863. "System.DirectoryServices": "4.7.0",
  864. "System.DirectoryServices.Protocols": "4.7.0",
  865. "System.Text.Json": "4.7.1"
  866. },
  867. "compile": {
  868. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
  869. },
  870. "runtime": {
  871. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
  872. }
  873. },
  874. "Pipelines.Sockets.Unofficial/2.2.2": {
  875. "type": "package",
  876. "dependencies": {
  877. "System.IO.Pipelines": "5.0.1"
  878. },
  879. "compile": {
  880. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  881. "related": ".xml"
  882. }
  883. },
  884. "runtime": {
  885. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  886. "related": ".xml"
  887. }
  888. }
  889. },
  890. "QRCoder/1.4.1": {
  891. "type": "package",
  892. "dependencies": {
  893. "System.Drawing.Common": "4.7.0"
  894. },
  895. "compile": {
  896. "lib/netstandard2.0/QRCoder.dll": {}
  897. },
  898. "runtime": {
  899. "lib/netstandard2.0/QRCoder.dll": {}
  900. }
  901. },
  902. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  903. "type": "package",
  904. "runtimeTargets": {
  905. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  906. "assetType": "native",
  907. "rid": "debian.8-x64"
  908. }
  909. }
  910. },
  911. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  912. "type": "package",
  913. "runtimeTargets": {
  914. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  915. "assetType": "native",
  916. "rid": "fedora.23-x64"
  917. }
  918. }
  919. },
  920. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  921. "type": "package",
  922. "runtimeTargets": {
  923. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  924. "assetType": "native",
  925. "rid": "fedora.24-x64"
  926. }
  927. }
  928. },
  929. "runtime.native.System/4.3.0": {
  930. "type": "package",
  931. "dependencies": {
  932. "Microsoft.NETCore.Platforms": "1.1.0",
  933. "Microsoft.NETCore.Targets": "1.1.0"
  934. },
  935. "compile": {
  936. "lib/netstandard1.0/_._": {}
  937. },
  938. "runtime": {
  939. "lib/netstandard1.0/_._": {}
  940. }
  941. },
  942. "runtime.native.System.IO.Compression/4.3.0": {
  943. "type": "package",
  944. "dependencies": {
  945. "Microsoft.NETCore.Platforms": "1.1.0",
  946. "Microsoft.NETCore.Targets": "1.1.0"
  947. },
  948. "compile": {
  949. "lib/netstandard1.0/_._": {}
  950. },
  951. "runtime": {
  952. "lib/netstandard1.0/_._": {}
  953. }
  954. },
  955. "runtime.native.System.Net.Http/4.3.0": {
  956. "type": "package",
  957. "dependencies": {
  958. "Microsoft.NETCore.Platforms": "1.1.0",
  959. "Microsoft.NETCore.Targets": "1.1.0"
  960. },
  961. "compile": {
  962. "lib/netstandard1.0/_._": {}
  963. },
  964. "runtime": {
  965. "lib/netstandard1.0/_._": {}
  966. }
  967. },
  968. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  969. "type": "package",
  970. "dependencies": {
  971. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  972. },
  973. "compile": {
  974. "lib/netstandard1.0/_._": {}
  975. },
  976. "runtime": {
  977. "lib/netstandard1.0/_._": {}
  978. }
  979. },
  980. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  981. "type": "package",
  982. "dependencies": {
  983. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  984. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  985. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  986. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  987. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  988. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  989. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  990. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  991. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  992. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  993. },
  994. "compile": {
  995. "lib/netstandard1.0/_._": {}
  996. },
  997. "runtime": {
  998. "lib/netstandard1.0/_._": {}
  999. }
  1000. },
  1001. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1002. "type": "package",
  1003. "runtimeTargets": {
  1004. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1005. "assetType": "native",
  1006. "rid": "opensuse.13.2-x64"
  1007. }
  1008. }
  1009. },
  1010. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1011. "type": "package",
  1012. "runtimeTargets": {
  1013. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1014. "assetType": "native",
  1015. "rid": "opensuse.42.1-x64"
  1016. }
  1017. }
  1018. },
  1019. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1020. "type": "package",
  1021. "runtimeTargets": {
  1022. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1023. "assetType": "native",
  1024. "rid": "osx.10.10-x64"
  1025. }
  1026. }
  1027. },
  1028. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1029. "type": "package",
  1030. "runtimeTargets": {
  1031. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1032. "assetType": "native",
  1033. "rid": "osx.10.10-x64"
  1034. }
  1035. }
  1036. },
  1037. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1038. "type": "package",
  1039. "runtimeTargets": {
  1040. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1041. "assetType": "native",
  1042. "rid": "rhel.7-x64"
  1043. }
  1044. }
  1045. },
  1046. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1047. "type": "package",
  1048. "runtimeTargets": {
  1049. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1050. "assetType": "native",
  1051. "rid": "ubuntu.14.04-x64"
  1052. }
  1053. }
  1054. },
  1055. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1056. "type": "package",
  1057. "runtimeTargets": {
  1058. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1059. "assetType": "native",
  1060. "rid": "ubuntu.16.04-x64"
  1061. }
  1062. }
  1063. },
  1064. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1065. "type": "package",
  1066. "runtimeTargets": {
  1067. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1068. "assetType": "native",
  1069. "rid": "ubuntu.16.10-x64"
  1070. }
  1071. }
  1072. },
  1073. "Serilog/2.10.0": {
  1074. "type": "package",
  1075. "compile": {
  1076. "lib/netstandard2.1/Serilog.dll": {
  1077. "related": ".xml"
  1078. }
  1079. },
  1080. "runtime": {
  1081. "lib/netstandard2.1/Serilog.dll": {
  1082. "related": ".xml"
  1083. }
  1084. }
  1085. },
  1086. "Serilog.Sinks.File/5.0.0": {
  1087. "type": "package",
  1088. "dependencies": {
  1089. "Serilog": "2.10.0"
  1090. },
  1091. "compile": {
  1092. "lib/net5.0/Serilog.Sinks.File.dll": {
  1093. "related": ".pdb;.xml"
  1094. }
  1095. },
  1096. "runtime": {
  1097. "lib/net5.0/Serilog.Sinks.File.dll": {
  1098. "related": ".pdb;.xml"
  1099. }
  1100. }
  1101. },
  1102. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  1103. "type": "package",
  1104. "dependencies": {
  1105. "SQLitePCLRaw.core": "2.0.4",
  1106. "SQLitePCLRaw.lib.e_sqlite3": "2.0.4",
  1107. "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4"
  1108. },
  1109. "compile": {
  1110. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
  1111. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
  1112. },
  1113. "runtime": {
  1114. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
  1115. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
  1116. }
  1117. },
  1118. "SQLitePCLRaw.core/2.0.4": {
  1119. "type": "package",
  1120. "dependencies": {
  1121. "System.Memory": "4.5.3"
  1122. },
  1123. "compile": {
  1124. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1125. },
  1126. "runtime": {
  1127. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
  1128. }
  1129. },
  1130. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  1131. "type": "package",
  1132. "compile": {
  1133. "lib/netstandard2.0/_._": {}
  1134. },
  1135. "runtime": {
  1136. "lib/netstandard2.0/_._": {}
  1137. },
  1138. "runtimeTargets": {
  1139. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  1140. "assetType": "native",
  1141. "rid": "alpine-x64"
  1142. },
  1143. "runtimes/linux-arm/native/libe_sqlite3.so": {
  1144. "assetType": "native",
  1145. "rid": "linux-arm"
  1146. },
  1147. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  1148. "assetType": "native",
  1149. "rid": "linux-arm64"
  1150. },
  1151. "runtimes/linux-armel/native/libe_sqlite3.so": {
  1152. "assetType": "native",
  1153. "rid": "linux-armel"
  1154. },
  1155. "runtimes/linux-mips64/native/libe_sqlite3.so": {
  1156. "assetType": "native",
  1157. "rid": "linux-mips64"
  1158. },
  1159. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  1160. "assetType": "native",
  1161. "rid": "linux-musl-x64"
  1162. },
  1163. "runtimes/linux-x64/native/libe_sqlite3.so": {
  1164. "assetType": "native",
  1165. "rid": "linux-x64"
  1166. },
  1167. "runtimes/linux-x86/native/libe_sqlite3.so": {
  1168. "assetType": "native",
  1169. "rid": "linux-x86"
  1170. },
  1171. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  1172. "assetType": "native",
  1173. "rid": "osx-x64"
  1174. },
  1175. "runtimes/win-arm/native/e_sqlite3.dll": {
  1176. "assetType": "native",
  1177. "rid": "win-arm"
  1178. },
  1179. "runtimes/win-arm64/native/e_sqlite3.dll": {
  1180. "assetType": "native",
  1181. "rid": "win-arm64"
  1182. },
  1183. "runtimes/win-x64/native/e_sqlite3.dll": {
  1184. "assetType": "native",
  1185. "rid": "win-x64"
  1186. },
  1187. "runtimes/win-x86/native/e_sqlite3.dll": {
  1188. "assetType": "native",
  1189. "rid": "win-x86"
  1190. }
  1191. }
  1192. },
  1193. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  1194. "type": "package",
  1195. "dependencies": {
  1196. "SQLitePCLRaw.core": "2.0.4"
  1197. },
  1198. "compile": {
  1199. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
  1200. },
  1201. "runtime": {
  1202. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
  1203. }
  1204. },
  1205. "SqlSugarCore/5.1.3.32": {
  1206. "type": "package",
  1207. "dependencies": {
  1208. "Microsoft.Data.SqlClient": "2.1.1",
  1209. "Microsoft.Data.Sqlite": "5.0.5",
  1210. "MySql.Data": "8.0.29",
  1211. "Newtonsoft.Json": "10.0.3",
  1212. "Npgsql": "5.0.7",
  1213. "Oracle.ManagedDataAccess.Core": "3.21.1",
  1214. "SqlSugarCore.Dm": "1.0.0",
  1215. "SqlSugarCore.Kdbndp": "1.0.0",
  1216. "System.Data.Common": "4.3.0",
  1217. "System.Reflection.Emit.Lightweight": "4.3.0"
  1218. },
  1219. "compile": {
  1220. "lib/netstandard2.1/SqlSugar.dll": {}
  1221. },
  1222. "runtime": {
  1223. "lib/netstandard2.1/SqlSugar.dll": {}
  1224. }
  1225. },
  1226. "SqlSugarCore.Dm/1.0.0": {
  1227. "type": "package",
  1228. "compile": {
  1229. "lib/netstandard2.0/DmProvider.dll": {}
  1230. },
  1231. "runtime": {
  1232. "lib/netstandard2.0/DmProvider.dll": {}
  1233. }
  1234. },
  1235. "SqlSugarCore.Kdbndp/1.0.0": {
  1236. "type": "package",
  1237. "compile": {
  1238. "lib/netstandard2.0/Kdbndp.dll": {}
  1239. },
  1240. "runtime": {
  1241. "lib/netstandard2.0/Kdbndp.dll": {}
  1242. }
  1243. },
  1244. "StackExchange.Redis/2.6.96": {
  1245. "type": "package",
  1246. "dependencies": {
  1247. "Pipelines.Sockets.Unofficial": "2.2.2"
  1248. },
  1249. "compile": {
  1250. "lib/net5.0/StackExchange.Redis.dll": {
  1251. "related": ".xml"
  1252. }
  1253. },
  1254. "runtime": {
  1255. "lib/net5.0/StackExchange.Redis.dll": {
  1256. "related": ".xml"
  1257. }
  1258. }
  1259. },
  1260. "Swashbuckle.AspNetCore/6.4.0": {
  1261. "type": "package",
  1262. "dependencies": {
  1263. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  1264. "Swashbuckle.AspNetCore.Swagger": "6.4.0",
  1265. "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0",
  1266. "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0"
  1267. },
  1268. "build": {
  1269. "build/Swashbuckle.AspNetCore.props": {}
  1270. }
  1271. },
  1272. "Swashbuckle.AspNetCore.Swagger/6.4.0": {
  1273. "type": "package",
  1274. "dependencies": {
  1275. "Microsoft.OpenApi": "1.2.3"
  1276. },
  1277. "compile": {
  1278. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1279. "related": ".pdb;.xml"
  1280. }
  1281. },
  1282. "runtime": {
  1283. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1284. "related": ".pdb;.xml"
  1285. }
  1286. },
  1287. "frameworkReferences": [
  1288. "Microsoft.AspNetCore.App"
  1289. ]
  1290. },
  1291. "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
  1292. "type": "package",
  1293. "dependencies": {
  1294. "Swashbuckle.AspNetCore.Swagger": "6.4.0"
  1295. },
  1296. "compile": {
  1297. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1298. "related": ".pdb;.xml"
  1299. }
  1300. },
  1301. "runtime": {
  1302. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1303. "related": ".pdb;.xml"
  1304. }
  1305. }
  1306. },
  1307. "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
  1308. "type": "package",
  1309. "compile": {
  1310. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1311. "related": ".pdb;.xml"
  1312. }
  1313. },
  1314. "runtime": {
  1315. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1316. "related": ".pdb;.xml"
  1317. }
  1318. },
  1319. "frameworkReferences": [
  1320. "Microsoft.AspNetCore.App"
  1321. ]
  1322. },
  1323. "System.AppContext/4.3.0": {
  1324. "type": "package",
  1325. "dependencies": {
  1326. "System.Runtime": "4.3.0"
  1327. },
  1328. "compile": {
  1329. "ref/netstandard1.6/System.AppContext.dll": {
  1330. "related": ".xml"
  1331. }
  1332. },
  1333. "runtime": {
  1334. "lib/netstandard1.6/System.AppContext.dll": {}
  1335. }
  1336. },
  1337. "System.Buffers/4.5.1": {
  1338. "type": "package",
  1339. "compile": {
  1340. "ref/netcoreapp2.0/_._": {}
  1341. },
  1342. "runtime": {
  1343. "lib/netcoreapp2.0/_._": {}
  1344. }
  1345. },
  1346. "System.Collections/4.3.0": {
  1347. "type": "package",
  1348. "dependencies": {
  1349. "Microsoft.NETCore.Platforms": "1.1.0",
  1350. "Microsoft.NETCore.Targets": "1.1.0",
  1351. "System.Runtime": "4.3.0"
  1352. },
  1353. "compile": {
  1354. "ref/netstandard1.3/System.Collections.dll": {
  1355. "related": ".xml"
  1356. }
  1357. }
  1358. },
  1359. "System.Collections.Concurrent/4.3.0": {
  1360. "type": "package",
  1361. "dependencies": {
  1362. "System.Collections": "4.3.0",
  1363. "System.Diagnostics.Debug": "4.3.0",
  1364. "System.Diagnostics.Tracing": "4.3.0",
  1365. "System.Globalization": "4.3.0",
  1366. "System.Reflection": "4.3.0",
  1367. "System.Resources.ResourceManager": "4.3.0",
  1368. "System.Runtime": "4.3.0",
  1369. "System.Runtime.Extensions": "4.3.0",
  1370. "System.Threading": "4.3.0",
  1371. "System.Threading.Tasks": "4.3.0"
  1372. },
  1373. "compile": {
  1374. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1375. "related": ".xml"
  1376. }
  1377. },
  1378. "runtime": {
  1379. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1380. }
  1381. },
  1382. "System.Configuration.ConfigurationManager/4.7.0": {
  1383. "type": "package",
  1384. "dependencies": {
  1385. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1386. "System.Security.Permissions": "4.7.0"
  1387. },
  1388. "compile": {
  1389. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1390. "related": ".xml"
  1391. }
  1392. },
  1393. "runtime": {
  1394. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1395. "related": ".xml"
  1396. }
  1397. }
  1398. },
  1399. "System.Console/4.3.0": {
  1400. "type": "package",
  1401. "dependencies": {
  1402. "Microsoft.NETCore.Platforms": "1.1.0",
  1403. "Microsoft.NETCore.Targets": "1.1.0",
  1404. "System.IO": "4.3.0",
  1405. "System.Runtime": "4.3.0",
  1406. "System.Text.Encoding": "4.3.0"
  1407. },
  1408. "compile": {
  1409. "ref/netstandard1.3/System.Console.dll": {
  1410. "related": ".xml"
  1411. }
  1412. }
  1413. },
  1414. "System.Data.Common/4.3.0": {
  1415. "type": "package",
  1416. "dependencies": {
  1417. "System.Collections": "4.3.0",
  1418. "System.Globalization": "4.3.0",
  1419. "System.IO": "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.RegularExpressions": "4.3.0",
  1424. "System.Threading.Tasks": "4.3.0"
  1425. },
  1426. "compile": {
  1427. "ref/netstandard1.2/System.Data.Common.dll": {
  1428. "related": ".xml"
  1429. }
  1430. },
  1431. "runtime": {
  1432. "lib/netstandard1.2/System.Data.Common.dll": {}
  1433. }
  1434. },
  1435. "System.Diagnostics.Debug/4.3.0": {
  1436. "type": "package",
  1437. "dependencies": {
  1438. "Microsoft.NETCore.Platforms": "1.1.0",
  1439. "Microsoft.NETCore.Targets": "1.1.0",
  1440. "System.Runtime": "4.3.0"
  1441. },
  1442. "compile": {
  1443. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1444. "related": ".xml"
  1445. }
  1446. }
  1447. },
  1448. "System.Diagnostics.DiagnosticSource/6.0.0": {
  1449. "type": "package",
  1450. "dependencies": {
  1451. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1452. },
  1453. "compile": {
  1454. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1455. "related": ".xml"
  1456. }
  1457. },
  1458. "runtime": {
  1459. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1460. "related": ".xml"
  1461. }
  1462. },
  1463. "build": {
  1464. "buildTransitive/netcoreapp3.1/_._": {}
  1465. }
  1466. },
  1467. "System.Diagnostics.PerformanceCounter/4.7.0": {
  1468. "type": "package",
  1469. "dependencies": {
  1470. "Microsoft.NETCore.Platforms": "3.1.0",
  1471. "Microsoft.Win32.Registry": "4.7.0",
  1472. "System.Configuration.ConfigurationManager": "4.7.0",
  1473. "System.Security.Principal.Windows": "4.7.0"
  1474. },
  1475. "compile": {
  1476. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1477. "related": ".xml"
  1478. }
  1479. },
  1480. "runtime": {
  1481. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  1482. "related": ".xml"
  1483. }
  1484. },
  1485. "runtimeTargets": {
  1486. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  1487. "assetType": "runtime",
  1488. "rid": "win"
  1489. }
  1490. }
  1491. },
  1492. "System.Diagnostics.Tools/4.3.0": {
  1493. "type": "package",
  1494. "dependencies": {
  1495. "Microsoft.NETCore.Platforms": "1.1.0",
  1496. "Microsoft.NETCore.Targets": "1.1.0",
  1497. "System.Runtime": "4.3.0"
  1498. },
  1499. "compile": {
  1500. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1501. "related": ".xml"
  1502. }
  1503. }
  1504. },
  1505. "System.Diagnostics.Tracing/4.3.0": {
  1506. "type": "package",
  1507. "dependencies": {
  1508. "Microsoft.NETCore.Platforms": "1.1.0",
  1509. "Microsoft.NETCore.Targets": "1.1.0",
  1510. "System.Runtime": "4.3.0"
  1511. },
  1512. "compile": {
  1513. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1514. "related": ".xml"
  1515. }
  1516. }
  1517. },
  1518. "System.DirectoryServices/4.7.0": {
  1519. "type": "package",
  1520. "dependencies": {
  1521. "Microsoft.NETCore.Platforms": "3.1.0",
  1522. "System.IO.FileSystem.AccessControl": "4.7.0",
  1523. "System.Security.AccessControl": "4.7.0",
  1524. "System.Security.Permissions": "4.7.0",
  1525. "System.Security.Principal.Windows": "4.7.0"
  1526. },
  1527. "compile": {
  1528. "ref/netstandard2.0/System.DirectoryServices.dll": {
  1529. "related": ".xml"
  1530. }
  1531. },
  1532. "runtime": {
  1533. "lib/netstandard2.0/System.DirectoryServices.dll": {
  1534. "related": ".xml"
  1535. }
  1536. },
  1537. "runtimeTargets": {
  1538. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
  1539. "assetType": "runtime",
  1540. "rid": "win"
  1541. }
  1542. }
  1543. },
  1544. "System.DirectoryServices.Protocols/4.7.0": {
  1545. "type": "package",
  1546. "dependencies": {
  1547. "Microsoft.NETCore.Platforms": "3.1.0",
  1548. "System.Security.Principal.Windows": "4.7.0"
  1549. },
  1550. "compile": {
  1551. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {
  1552. "related": ".xml"
  1553. }
  1554. },
  1555. "runtime": {
  1556. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {
  1557. "related": ".xml"
  1558. }
  1559. },
  1560. "runtimeTargets": {
  1561. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": {
  1562. "assetType": "runtime",
  1563. "rid": "win"
  1564. }
  1565. }
  1566. },
  1567. "System.Drawing.Common/4.7.0": {
  1568. "type": "package",
  1569. "dependencies": {
  1570. "Microsoft.NETCore.Platforms": "3.1.0",
  1571. "Microsoft.Win32.SystemEvents": "4.7.0"
  1572. },
  1573. "compile": {
  1574. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  1575. "related": ".xml"
  1576. }
  1577. },
  1578. "runtime": {
  1579. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1580. },
  1581. "runtimeTargets": {
  1582. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1583. "assetType": "runtime",
  1584. "rid": "unix"
  1585. },
  1586. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1587. "assetType": "runtime",
  1588. "rid": "win"
  1589. }
  1590. }
  1591. },
  1592. "System.Globalization/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. },
  1599. "compile": {
  1600. "ref/netstandard1.3/System.Globalization.dll": {
  1601. "related": ".xml"
  1602. }
  1603. }
  1604. },
  1605. "System.Globalization.Calendars/4.3.0": {
  1606. "type": "package",
  1607. "dependencies": {
  1608. "Microsoft.NETCore.Platforms": "1.1.0",
  1609. "Microsoft.NETCore.Targets": "1.1.0",
  1610. "System.Globalization": "4.3.0",
  1611. "System.Runtime": "4.3.0"
  1612. },
  1613. "compile": {
  1614. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1615. "related": ".xml"
  1616. }
  1617. }
  1618. },
  1619. "System.Globalization.Extensions/4.3.0": {
  1620. "type": "package",
  1621. "dependencies": {
  1622. "Microsoft.NETCore.Platforms": "1.1.0",
  1623. "System.Globalization": "4.3.0",
  1624. "System.Resources.ResourceManager": "4.3.0",
  1625. "System.Runtime": "4.3.0",
  1626. "System.Runtime.Extensions": "4.3.0",
  1627. "System.Runtime.InteropServices": "4.3.0"
  1628. },
  1629. "compile": {
  1630. "ref/netstandard1.3/_._": {
  1631. "related": ".xml"
  1632. }
  1633. },
  1634. "runtimeTargets": {
  1635. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1636. "assetType": "runtime",
  1637. "rid": "unix"
  1638. },
  1639. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1640. "assetType": "runtime",
  1641. "rid": "win"
  1642. }
  1643. }
  1644. },
  1645. "System.IdentityModel.Tokens.Jwt/6.10.0": {
  1646. "type": "package",
  1647. "dependencies": {
  1648. "Microsoft.IdentityModel.JsonWebTokens": "6.10.0",
  1649. "Microsoft.IdentityModel.Tokens": "6.10.0"
  1650. },
  1651. "compile": {
  1652. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1653. "related": ".xml"
  1654. }
  1655. },
  1656. "runtime": {
  1657. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1658. "related": ".xml"
  1659. }
  1660. }
  1661. },
  1662. "System.IO/4.3.0": {
  1663. "type": "package",
  1664. "dependencies": {
  1665. "Microsoft.NETCore.Platforms": "1.1.0",
  1666. "Microsoft.NETCore.Targets": "1.1.0",
  1667. "System.Runtime": "4.3.0",
  1668. "System.Text.Encoding": "4.3.0",
  1669. "System.Threading.Tasks": "4.3.0"
  1670. },
  1671. "compile": {
  1672. "ref/netstandard1.5/System.IO.dll": {
  1673. "related": ".xml"
  1674. }
  1675. }
  1676. },
  1677. "System.IO.Compression/4.3.0": {
  1678. "type": "package",
  1679. "dependencies": {
  1680. "Microsoft.NETCore.Platforms": "1.1.0",
  1681. "System.Buffers": "4.3.0",
  1682. "System.Collections": "4.3.0",
  1683. "System.Diagnostics.Debug": "4.3.0",
  1684. "System.IO": "4.3.0",
  1685. "System.Resources.ResourceManager": "4.3.0",
  1686. "System.Runtime": "4.3.0",
  1687. "System.Runtime.Extensions": "4.3.0",
  1688. "System.Runtime.Handles": "4.3.0",
  1689. "System.Runtime.InteropServices": "4.3.0",
  1690. "System.Text.Encoding": "4.3.0",
  1691. "System.Threading": "4.3.0",
  1692. "System.Threading.Tasks": "4.3.0",
  1693. "runtime.native.System": "4.3.0",
  1694. "runtime.native.System.IO.Compression": "4.3.0"
  1695. },
  1696. "compile": {
  1697. "ref/netstandard1.3/System.IO.Compression.dll": {
  1698. "related": ".xml"
  1699. }
  1700. },
  1701. "runtimeTargets": {
  1702. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1703. "assetType": "runtime",
  1704. "rid": "unix"
  1705. },
  1706. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1707. "assetType": "runtime",
  1708. "rid": "win"
  1709. }
  1710. }
  1711. },
  1712. "System.IO.Compression.ZipFile/4.3.0": {
  1713. "type": "package",
  1714. "dependencies": {
  1715. "System.Buffers": "4.3.0",
  1716. "System.IO": "4.3.0",
  1717. "System.IO.Compression": "4.3.0",
  1718. "System.IO.FileSystem": "4.3.0",
  1719. "System.IO.FileSystem.Primitives": "4.3.0",
  1720. "System.Resources.ResourceManager": "4.3.0",
  1721. "System.Runtime": "4.3.0",
  1722. "System.Runtime.Extensions": "4.3.0",
  1723. "System.Text.Encoding": "4.3.0"
  1724. },
  1725. "compile": {
  1726. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1727. "related": ".xml"
  1728. }
  1729. },
  1730. "runtime": {
  1731. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1732. }
  1733. },
  1734. "System.IO.FileSystem/4.3.0": {
  1735. "type": "package",
  1736. "dependencies": {
  1737. "Microsoft.NETCore.Platforms": "1.1.0",
  1738. "Microsoft.NETCore.Targets": "1.1.0",
  1739. "System.IO": "4.3.0",
  1740. "System.IO.FileSystem.Primitives": "4.3.0",
  1741. "System.Runtime": "4.3.0",
  1742. "System.Runtime.Handles": "4.3.0",
  1743. "System.Text.Encoding": "4.3.0",
  1744. "System.Threading.Tasks": "4.3.0"
  1745. },
  1746. "compile": {
  1747. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1748. "related": ".xml"
  1749. }
  1750. }
  1751. },
  1752. "System.IO.FileSystem.AccessControl/4.7.0": {
  1753. "type": "package",
  1754. "dependencies": {
  1755. "System.Security.AccessControl": "4.7.0",
  1756. "System.Security.Principal.Windows": "4.7.0"
  1757. },
  1758. "compile": {
  1759. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1760. "related": ".xml"
  1761. }
  1762. },
  1763. "runtime": {
  1764. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1765. "related": ".xml"
  1766. }
  1767. },
  1768. "runtimeTargets": {
  1769. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
  1770. "assetType": "runtime",
  1771. "rid": "win"
  1772. }
  1773. }
  1774. },
  1775. "System.IO.FileSystem.Primitives/4.3.0": {
  1776. "type": "package",
  1777. "dependencies": {
  1778. "System.Runtime": "4.3.0"
  1779. },
  1780. "compile": {
  1781. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1782. "related": ".xml"
  1783. }
  1784. },
  1785. "runtime": {
  1786. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1787. }
  1788. },
  1789. "System.IO.Pipelines/5.0.1": {
  1790. "type": "package",
  1791. "compile": {
  1792. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1793. "related": ".xml"
  1794. }
  1795. },
  1796. "runtime": {
  1797. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1798. "related": ".xml"
  1799. }
  1800. }
  1801. },
  1802. "System.Linq/4.3.0": {
  1803. "type": "package",
  1804. "dependencies": {
  1805. "System.Collections": "4.3.0",
  1806. "System.Diagnostics.Debug": "4.3.0",
  1807. "System.Resources.ResourceManager": "4.3.0",
  1808. "System.Runtime": "4.3.0",
  1809. "System.Runtime.Extensions": "4.3.0"
  1810. },
  1811. "compile": {
  1812. "ref/netstandard1.6/System.Linq.dll": {
  1813. "related": ".xml"
  1814. }
  1815. },
  1816. "runtime": {
  1817. "lib/netstandard1.6/System.Linq.dll": {}
  1818. }
  1819. },
  1820. "System.Linq.Expressions/4.3.0": {
  1821. "type": "package",
  1822. "dependencies": {
  1823. "System.Collections": "4.3.0",
  1824. "System.Diagnostics.Debug": "4.3.0",
  1825. "System.Globalization": "4.3.0",
  1826. "System.IO": "4.3.0",
  1827. "System.Linq": "4.3.0",
  1828. "System.ObjectModel": "4.3.0",
  1829. "System.Reflection": "4.3.0",
  1830. "System.Reflection.Emit": "4.3.0",
  1831. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1832. "System.Reflection.Emit.Lightweight": "4.3.0",
  1833. "System.Reflection.Extensions": "4.3.0",
  1834. "System.Reflection.Primitives": "4.3.0",
  1835. "System.Reflection.TypeExtensions": "4.3.0",
  1836. "System.Resources.ResourceManager": "4.3.0",
  1837. "System.Runtime": "4.3.0",
  1838. "System.Runtime.Extensions": "4.3.0",
  1839. "System.Threading": "4.3.0"
  1840. },
  1841. "compile": {
  1842. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1843. "related": ".xml"
  1844. }
  1845. },
  1846. "runtime": {
  1847. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1848. }
  1849. },
  1850. "System.Memory/4.5.4": {
  1851. "type": "package",
  1852. "compile": {
  1853. "ref/netcoreapp2.1/_._": {}
  1854. },
  1855. "runtime": {
  1856. "lib/netcoreapp2.1/_._": {}
  1857. }
  1858. },
  1859. "System.Net.Http/4.3.0": {
  1860. "type": "package",
  1861. "dependencies": {
  1862. "Microsoft.NETCore.Platforms": "1.1.0",
  1863. "System.Collections": "4.3.0",
  1864. "System.Diagnostics.Debug": "4.3.0",
  1865. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1866. "System.Diagnostics.Tracing": "4.3.0",
  1867. "System.Globalization": "4.3.0",
  1868. "System.Globalization.Extensions": "4.3.0",
  1869. "System.IO": "4.3.0",
  1870. "System.IO.FileSystem": "4.3.0",
  1871. "System.Net.Primitives": "4.3.0",
  1872. "System.Resources.ResourceManager": "4.3.0",
  1873. "System.Runtime": "4.3.0",
  1874. "System.Runtime.Extensions": "4.3.0",
  1875. "System.Runtime.Handles": "4.3.0",
  1876. "System.Runtime.InteropServices": "4.3.0",
  1877. "System.Security.Cryptography.Algorithms": "4.3.0",
  1878. "System.Security.Cryptography.Encoding": "4.3.0",
  1879. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1880. "System.Security.Cryptography.Primitives": "4.3.0",
  1881. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1882. "System.Text.Encoding": "4.3.0",
  1883. "System.Threading": "4.3.0",
  1884. "System.Threading.Tasks": "4.3.0",
  1885. "runtime.native.System": "4.3.0",
  1886. "runtime.native.System.Net.Http": "4.3.0",
  1887. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1888. },
  1889. "compile": {
  1890. "ref/netstandard1.3/System.Net.Http.dll": {
  1891. "related": ".xml"
  1892. }
  1893. },
  1894. "runtimeTargets": {
  1895. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1896. "assetType": "runtime",
  1897. "rid": "unix"
  1898. },
  1899. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1900. "assetType": "runtime",
  1901. "rid": "win"
  1902. }
  1903. }
  1904. },
  1905. "System.Net.Primitives/4.3.0": {
  1906. "type": "package",
  1907. "dependencies": {
  1908. "Microsoft.NETCore.Platforms": "1.1.0",
  1909. "Microsoft.NETCore.Targets": "1.1.0",
  1910. "System.Runtime": "4.3.0",
  1911. "System.Runtime.Handles": "4.3.0"
  1912. },
  1913. "compile": {
  1914. "ref/netstandard1.3/System.Net.Primitives.dll": {
  1915. "related": ".xml"
  1916. }
  1917. }
  1918. },
  1919. "System.Net.Sockets/4.3.0": {
  1920. "type": "package",
  1921. "dependencies": {
  1922. "Microsoft.NETCore.Platforms": "1.1.0",
  1923. "Microsoft.NETCore.Targets": "1.1.0",
  1924. "System.IO": "4.3.0",
  1925. "System.Net.Primitives": "4.3.0",
  1926. "System.Runtime": "4.3.0",
  1927. "System.Threading.Tasks": "4.3.0"
  1928. },
  1929. "compile": {
  1930. "ref/netstandard1.3/System.Net.Sockets.dll": {
  1931. "related": ".xml"
  1932. }
  1933. }
  1934. },
  1935. "System.ObjectModel/4.3.0": {
  1936. "type": "package",
  1937. "dependencies": {
  1938. "System.Collections": "4.3.0",
  1939. "System.Diagnostics.Debug": "4.3.0",
  1940. "System.Resources.ResourceManager": "4.3.0",
  1941. "System.Runtime": "4.3.0",
  1942. "System.Threading": "4.3.0"
  1943. },
  1944. "compile": {
  1945. "ref/netstandard1.3/System.ObjectModel.dll": {
  1946. "related": ".xml"
  1947. }
  1948. },
  1949. "runtime": {
  1950. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1951. }
  1952. },
  1953. "System.Reflection/4.3.0": {
  1954. "type": "package",
  1955. "dependencies": {
  1956. "Microsoft.NETCore.Platforms": "1.1.0",
  1957. "Microsoft.NETCore.Targets": "1.1.0",
  1958. "System.IO": "4.3.0",
  1959. "System.Reflection.Primitives": "4.3.0",
  1960. "System.Runtime": "4.3.0"
  1961. },
  1962. "compile": {
  1963. "ref/netstandard1.5/System.Reflection.dll": {
  1964. "related": ".xml"
  1965. }
  1966. }
  1967. },
  1968. "System.Reflection.Emit/4.3.0": {
  1969. "type": "package",
  1970. "dependencies": {
  1971. "System.IO": "4.3.0",
  1972. "System.Reflection": "4.3.0",
  1973. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1974. "System.Reflection.Primitives": "4.3.0",
  1975. "System.Runtime": "4.3.0"
  1976. },
  1977. "compile": {
  1978. "ref/netstandard1.1/_._": {
  1979. "related": ".xml"
  1980. }
  1981. },
  1982. "runtime": {
  1983. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1984. }
  1985. },
  1986. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1987. "type": "package",
  1988. "dependencies": {
  1989. "System.Reflection": "4.3.0",
  1990. "System.Reflection.Primitives": "4.3.0",
  1991. "System.Runtime": "4.3.0"
  1992. },
  1993. "compile": {
  1994. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  1995. "related": ".xml"
  1996. }
  1997. },
  1998. "runtime": {
  1999. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2000. }
  2001. },
  2002. "System.Reflection.Emit.Lightweight/4.3.0": {
  2003. "type": "package",
  2004. "dependencies": {
  2005. "System.Reflection": "4.3.0",
  2006. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2007. "System.Reflection.Primitives": "4.3.0",
  2008. "System.Runtime": "4.3.0"
  2009. },
  2010. "compile": {
  2011. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2012. "related": ".xml"
  2013. }
  2014. },
  2015. "runtime": {
  2016. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2017. }
  2018. },
  2019. "System.Reflection.Extensions/4.3.0": {
  2020. "type": "package",
  2021. "dependencies": {
  2022. "Microsoft.NETCore.Platforms": "1.1.0",
  2023. "Microsoft.NETCore.Targets": "1.1.0",
  2024. "System.Reflection": "4.3.0",
  2025. "System.Runtime": "4.3.0"
  2026. },
  2027. "compile": {
  2028. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2029. "related": ".xml"
  2030. }
  2031. }
  2032. },
  2033. "System.Reflection.Primitives/4.3.0": {
  2034. "type": "package",
  2035. "dependencies": {
  2036. "Microsoft.NETCore.Platforms": "1.1.0",
  2037. "Microsoft.NETCore.Targets": "1.1.0",
  2038. "System.Runtime": "4.3.0"
  2039. },
  2040. "compile": {
  2041. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2042. "related": ".xml"
  2043. }
  2044. }
  2045. },
  2046. "System.Reflection.TypeExtensions/4.3.0": {
  2047. "type": "package",
  2048. "dependencies": {
  2049. "System.Reflection": "4.3.0",
  2050. "System.Runtime": "4.3.0"
  2051. },
  2052. "compile": {
  2053. "ref/netstandard1.5/_._": {
  2054. "related": ".xml"
  2055. }
  2056. },
  2057. "runtime": {
  2058. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2059. }
  2060. },
  2061. "System.Resources.ResourceManager/4.3.0": {
  2062. "type": "package",
  2063. "dependencies": {
  2064. "Microsoft.NETCore.Platforms": "1.1.0",
  2065. "Microsoft.NETCore.Targets": "1.1.0",
  2066. "System.Globalization": "4.3.0",
  2067. "System.Reflection": "4.3.0",
  2068. "System.Runtime": "4.3.0"
  2069. },
  2070. "compile": {
  2071. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2072. "related": ".xml"
  2073. }
  2074. }
  2075. },
  2076. "System.Runtime/4.3.0": {
  2077. "type": "package",
  2078. "dependencies": {
  2079. "Microsoft.NETCore.Platforms": "1.1.0",
  2080. "Microsoft.NETCore.Targets": "1.1.0"
  2081. },
  2082. "compile": {
  2083. "ref/netstandard1.5/System.Runtime.dll": {
  2084. "related": ".xml"
  2085. }
  2086. }
  2087. },
  2088. "System.Runtime.Caching/4.7.0": {
  2089. "type": "package",
  2090. "dependencies": {
  2091. "System.Configuration.ConfigurationManager": "4.7.0"
  2092. },
  2093. "compile": {
  2094. "ref/netstandard2.0/_._": {
  2095. "related": ".xml"
  2096. }
  2097. },
  2098. "runtime": {
  2099. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  2100. "related": ".xml"
  2101. }
  2102. },
  2103. "runtimeTargets": {
  2104. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  2105. "assetType": "runtime",
  2106. "rid": "win"
  2107. }
  2108. }
  2109. },
  2110. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2111. "type": "package",
  2112. "compile": {
  2113. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2114. "related": ".xml"
  2115. }
  2116. },
  2117. "runtime": {
  2118. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2119. "related": ".xml"
  2120. }
  2121. },
  2122. "build": {
  2123. "buildTransitive/netcoreapp3.1/_._": {}
  2124. }
  2125. },
  2126. "System.Runtime.Extensions/4.3.0": {
  2127. "type": "package",
  2128. "dependencies": {
  2129. "Microsoft.NETCore.Platforms": "1.1.0",
  2130. "Microsoft.NETCore.Targets": "1.1.0",
  2131. "System.Runtime": "4.3.0"
  2132. },
  2133. "compile": {
  2134. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2135. "related": ".xml"
  2136. }
  2137. }
  2138. },
  2139. "System.Runtime.Handles/4.3.0": {
  2140. "type": "package",
  2141. "dependencies": {
  2142. "Microsoft.NETCore.Platforms": "1.1.0",
  2143. "Microsoft.NETCore.Targets": "1.1.0",
  2144. "System.Runtime": "4.3.0"
  2145. },
  2146. "compile": {
  2147. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2148. "related": ".xml"
  2149. }
  2150. }
  2151. },
  2152. "System.Runtime.InteropServices/4.3.0": {
  2153. "type": "package",
  2154. "dependencies": {
  2155. "Microsoft.NETCore.Platforms": "1.1.0",
  2156. "Microsoft.NETCore.Targets": "1.1.0",
  2157. "System.Reflection": "4.3.0",
  2158. "System.Reflection.Primitives": "4.3.0",
  2159. "System.Runtime": "4.3.0",
  2160. "System.Runtime.Handles": "4.3.0"
  2161. },
  2162. "compile": {
  2163. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2164. }
  2165. },
  2166. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2167. "type": "package",
  2168. "dependencies": {
  2169. "System.Reflection": "4.3.0",
  2170. "System.Reflection.Extensions": "4.3.0",
  2171. "System.Resources.ResourceManager": "4.3.0",
  2172. "System.Runtime": "4.3.0",
  2173. "System.Runtime.InteropServices": "4.3.0",
  2174. "System.Threading": "4.3.0",
  2175. "runtime.native.System": "4.3.0"
  2176. },
  2177. "compile": {
  2178. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2179. },
  2180. "runtime": {
  2181. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2182. },
  2183. "runtimeTargets": {
  2184. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2185. "assetType": "runtime",
  2186. "rid": "unix"
  2187. },
  2188. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2189. "assetType": "runtime",
  2190. "rid": "win"
  2191. }
  2192. }
  2193. },
  2194. "System.Runtime.Numerics/4.3.0": {
  2195. "type": "package",
  2196. "dependencies": {
  2197. "System.Globalization": "4.3.0",
  2198. "System.Resources.ResourceManager": "4.3.0",
  2199. "System.Runtime": "4.3.0",
  2200. "System.Runtime.Extensions": "4.3.0"
  2201. },
  2202. "compile": {
  2203. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2204. "related": ".xml"
  2205. }
  2206. },
  2207. "runtime": {
  2208. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2209. }
  2210. },
  2211. "System.Security.AccessControl/4.7.0": {
  2212. "type": "package",
  2213. "dependencies": {
  2214. "Microsoft.NETCore.Platforms": "3.1.0",
  2215. "System.Security.Principal.Windows": "4.7.0"
  2216. },
  2217. "compile": {
  2218. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2219. "related": ".xml"
  2220. }
  2221. },
  2222. "runtime": {
  2223. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2224. "related": ".xml"
  2225. }
  2226. },
  2227. "runtimeTargets": {
  2228. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2229. "assetType": "runtime",
  2230. "rid": "win"
  2231. }
  2232. }
  2233. },
  2234. "System.Security.Cryptography.Algorithms/4.3.0": {
  2235. "type": "package",
  2236. "dependencies": {
  2237. "Microsoft.NETCore.Platforms": "1.1.0",
  2238. "System.Collections": "4.3.0",
  2239. "System.IO": "4.3.0",
  2240. "System.Resources.ResourceManager": "4.3.0",
  2241. "System.Runtime": "4.3.0",
  2242. "System.Runtime.Extensions": "4.3.0",
  2243. "System.Runtime.Handles": "4.3.0",
  2244. "System.Runtime.InteropServices": "4.3.0",
  2245. "System.Runtime.Numerics": "4.3.0",
  2246. "System.Security.Cryptography.Encoding": "4.3.0",
  2247. "System.Security.Cryptography.Primitives": "4.3.0",
  2248. "System.Text.Encoding": "4.3.0",
  2249. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2250. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2251. },
  2252. "compile": {
  2253. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2254. },
  2255. "runtimeTargets": {
  2256. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2257. "assetType": "runtime",
  2258. "rid": "osx"
  2259. },
  2260. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2261. "assetType": "runtime",
  2262. "rid": "unix"
  2263. },
  2264. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2265. "assetType": "runtime",
  2266. "rid": "win"
  2267. }
  2268. }
  2269. },
  2270. "System.Security.Cryptography.Cng/4.5.0": {
  2271. "type": "package",
  2272. "compile": {
  2273. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2274. "related": ".xml"
  2275. }
  2276. },
  2277. "runtime": {
  2278. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2279. },
  2280. "runtimeTargets": {
  2281. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2282. "assetType": "runtime",
  2283. "rid": "win"
  2284. }
  2285. }
  2286. },
  2287. "System.Security.Cryptography.Csp/4.3.0": {
  2288. "type": "package",
  2289. "dependencies": {
  2290. "Microsoft.NETCore.Platforms": "1.1.0",
  2291. "System.IO": "4.3.0",
  2292. "System.Reflection": "4.3.0",
  2293. "System.Resources.ResourceManager": "4.3.0",
  2294. "System.Runtime": "4.3.0",
  2295. "System.Runtime.Extensions": "4.3.0",
  2296. "System.Runtime.Handles": "4.3.0",
  2297. "System.Runtime.InteropServices": "4.3.0",
  2298. "System.Security.Cryptography.Algorithms": "4.3.0",
  2299. "System.Security.Cryptography.Encoding": "4.3.0",
  2300. "System.Security.Cryptography.Primitives": "4.3.0",
  2301. "System.Text.Encoding": "4.3.0",
  2302. "System.Threading": "4.3.0"
  2303. },
  2304. "compile": {
  2305. "ref/netstandard1.3/_._": {}
  2306. },
  2307. "runtimeTargets": {
  2308. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2309. "assetType": "runtime",
  2310. "rid": "unix"
  2311. },
  2312. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2313. "assetType": "runtime",
  2314. "rid": "win"
  2315. }
  2316. }
  2317. },
  2318. "System.Security.Cryptography.Encoding/4.3.0": {
  2319. "type": "package",
  2320. "dependencies": {
  2321. "Microsoft.NETCore.Platforms": "1.1.0",
  2322. "System.Collections": "4.3.0",
  2323. "System.Collections.Concurrent": "4.3.0",
  2324. "System.Linq": "4.3.0",
  2325. "System.Resources.ResourceManager": "4.3.0",
  2326. "System.Runtime": "4.3.0",
  2327. "System.Runtime.Extensions": "4.3.0",
  2328. "System.Runtime.Handles": "4.3.0",
  2329. "System.Runtime.InteropServices": "4.3.0",
  2330. "System.Security.Cryptography.Primitives": "4.3.0",
  2331. "System.Text.Encoding": "4.3.0",
  2332. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2333. },
  2334. "compile": {
  2335. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2336. "related": ".xml"
  2337. }
  2338. },
  2339. "runtimeTargets": {
  2340. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2341. "assetType": "runtime",
  2342. "rid": "unix"
  2343. },
  2344. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2345. "assetType": "runtime",
  2346. "rid": "win"
  2347. }
  2348. }
  2349. },
  2350. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2351. "type": "package",
  2352. "dependencies": {
  2353. "System.Collections": "4.3.0",
  2354. "System.IO": "4.3.0",
  2355. "System.Resources.ResourceManager": "4.3.0",
  2356. "System.Runtime": "4.3.0",
  2357. "System.Runtime.Extensions": "4.3.0",
  2358. "System.Runtime.Handles": "4.3.0",
  2359. "System.Runtime.InteropServices": "4.3.0",
  2360. "System.Runtime.Numerics": "4.3.0",
  2361. "System.Security.Cryptography.Algorithms": "4.3.0",
  2362. "System.Security.Cryptography.Encoding": "4.3.0",
  2363. "System.Security.Cryptography.Primitives": "4.3.0",
  2364. "System.Text.Encoding": "4.3.0",
  2365. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2366. },
  2367. "compile": {
  2368. "ref/netstandard1.6/_._": {}
  2369. },
  2370. "runtime": {
  2371. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2372. },
  2373. "runtimeTargets": {
  2374. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2375. "assetType": "runtime",
  2376. "rid": "unix"
  2377. }
  2378. }
  2379. },
  2380. "System.Security.Cryptography.Primitives/4.3.0": {
  2381. "type": "package",
  2382. "dependencies": {
  2383. "System.Diagnostics.Debug": "4.3.0",
  2384. "System.Globalization": "4.3.0",
  2385. "System.IO": "4.3.0",
  2386. "System.Resources.ResourceManager": "4.3.0",
  2387. "System.Runtime": "4.3.0",
  2388. "System.Threading": "4.3.0",
  2389. "System.Threading.Tasks": "4.3.0"
  2390. },
  2391. "compile": {
  2392. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2393. },
  2394. "runtime": {
  2395. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2396. }
  2397. },
  2398. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2399. "type": "package",
  2400. "compile": {
  2401. "ref/netstandard2.0/_._": {
  2402. "related": ".xml"
  2403. }
  2404. },
  2405. "runtime": {
  2406. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2407. "related": ".xml"
  2408. }
  2409. },
  2410. "runtimeTargets": {
  2411. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2412. "assetType": "runtime",
  2413. "rid": "win"
  2414. }
  2415. }
  2416. },
  2417. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2418. "type": "package",
  2419. "dependencies": {
  2420. "Microsoft.NETCore.Platforms": "1.1.0",
  2421. "System.Collections": "4.3.0",
  2422. "System.Diagnostics.Debug": "4.3.0",
  2423. "System.Globalization": "4.3.0",
  2424. "System.Globalization.Calendars": "4.3.0",
  2425. "System.IO": "4.3.0",
  2426. "System.IO.FileSystem": "4.3.0",
  2427. "System.IO.FileSystem.Primitives": "4.3.0",
  2428. "System.Resources.ResourceManager": "4.3.0",
  2429. "System.Runtime": "4.3.0",
  2430. "System.Runtime.Extensions": "4.3.0",
  2431. "System.Runtime.Handles": "4.3.0",
  2432. "System.Runtime.InteropServices": "4.3.0",
  2433. "System.Runtime.Numerics": "4.3.0",
  2434. "System.Security.Cryptography.Algorithms": "4.3.0",
  2435. "System.Security.Cryptography.Cng": "4.3.0",
  2436. "System.Security.Cryptography.Csp": "4.3.0",
  2437. "System.Security.Cryptography.Encoding": "4.3.0",
  2438. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2439. "System.Security.Cryptography.Primitives": "4.3.0",
  2440. "System.Text.Encoding": "4.3.0",
  2441. "System.Threading": "4.3.0",
  2442. "runtime.native.System": "4.3.0",
  2443. "runtime.native.System.Net.Http": "4.3.0",
  2444. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2445. },
  2446. "compile": {
  2447. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2448. "related": ".xml"
  2449. }
  2450. },
  2451. "runtimeTargets": {
  2452. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2453. "assetType": "runtime",
  2454. "rid": "unix"
  2455. },
  2456. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2457. "assetType": "runtime",
  2458. "rid": "win"
  2459. }
  2460. }
  2461. },
  2462. "System.Security.Permissions/4.7.0": {
  2463. "type": "package",
  2464. "dependencies": {
  2465. "System.Security.AccessControl": "4.7.0",
  2466. "System.Windows.Extensions": "4.7.0"
  2467. },
  2468. "compile": {
  2469. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  2470. "related": ".xml"
  2471. }
  2472. },
  2473. "runtime": {
  2474. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  2475. "related": ".xml"
  2476. }
  2477. }
  2478. },
  2479. "System.Security.Principal.Windows/4.7.0": {
  2480. "type": "package",
  2481. "compile": {
  2482. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2483. "related": ".xml"
  2484. }
  2485. },
  2486. "runtime": {
  2487. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2488. "related": ".xml"
  2489. }
  2490. },
  2491. "runtimeTargets": {
  2492. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2493. "assetType": "runtime",
  2494. "rid": "unix"
  2495. },
  2496. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2497. "assetType": "runtime",
  2498. "rid": "win"
  2499. }
  2500. }
  2501. },
  2502. "System.Text.Encoding/4.3.0": {
  2503. "type": "package",
  2504. "dependencies": {
  2505. "Microsoft.NETCore.Platforms": "1.1.0",
  2506. "Microsoft.NETCore.Targets": "1.1.0",
  2507. "System.Runtime": "4.3.0"
  2508. },
  2509. "compile": {
  2510. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2511. "related": ".xml"
  2512. }
  2513. }
  2514. },
  2515. "System.Text.Encoding.CodePages/4.7.0": {
  2516. "type": "package",
  2517. "dependencies": {
  2518. "Microsoft.NETCore.Platforms": "3.1.0"
  2519. },
  2520. "compile": {
  2521. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2522. "related": ".xml"
  2523. }
  2524. },
  2525. "runtime": {
  2526. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2527. "related": ".xml"
  2528. }
  2529. },
  2530. "runtimeTargets": {
  2531. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2532. "assetType": "runtime",
  2533. "rid": "win"
  2534. }
  2535. }
  2536. },
  2537. "System.Text.Encoding.Extensions/4.3.0": {
  2538. "type": "package",
  2539. "dependencies": {
  2540. "Microsoft.NETCore.Platforms": "1.1.0",
  2541. "Microsoft.NETCore.Targets": "1.1.0",
  2542. "System.Runtime": "4.3.0",
  2543. "System.Text.Encoding": "4.3.0"
  2544. },
  2545. "compile": {
  2546. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2547. "related": ".xml"
  2548. }
  2549. }
  2550. },
  2551. "System.Text.Encodings.Web/4.5.0": {
  2552. "type": "package",
  2553. "compile": {
  2554. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2555. "related": ".xml"
  2556. }
  2557. },
  2558. "runtime": {
  2559. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2560. "related": ".xml"
  2561. }
  2562. }
  2563. },
  2564. "System.Text.Json/4.7.1": {
  2565. "type": "package",
  2566. "compile": {
  2567. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2568. "related": ".xml"
  2569. }
  2570. },
  2571. "runtime": {
  2572. "lib/netcoreapp3.0/System.Text.Json.dll": {
  2573. "related": ".xml"
  2574. }
  2575. }
  2576. },
  2577. "System.Text.RegularExpressions/4.3.0": {
  2578. "type": "package",
  2579. "dependencies": {
  2580. "System.Runtime": "4.3.0"
  2581. },
  2582. "compile": {
  2583. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2584. },
  2585. "runtime": {
  2586. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2587. }
  2588. },
  2589. "System.Threading/4.3.0": {
  2590. "type": "package",
  2591. "dependencies": {
  2592. "System.Runtime": "4.3.0",
  2593. "System.Threading.Tasks": "4.3.0"
  2594. },
  2595. "compile": {
  2596. "ref/netstandard1.3/System.Threading.dll": {
  2597. "related": ".xml"
  2598. }
  2599. },
  2600. "runtime": {
  2601. "lib/netstandard1.3/System.Threading.dll": {}
  2602. }
  2603. },
  2604. "System.Threading.Tasks/4.3.0": {
  2605. "type": "package",
  2606. "dependencies": {
  2607. "Microsoft.NETCore.Platforms": "1.1.0",
  2608. "Microsoft.NETCore.Targets": "1.1.0",
  2609. "System.Runtime": "4.3.0"
  2610. },
  2611. "compile": {
  2612. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2613. "related": ".xml"
  2614. }
  2615. }
  2616. },
  2617. "System.Threading.Tasks.Extensions/4.3.0": {
  2618. "type": "package",
  2619. "dependencies": {
  2620. "System.Collections": "4.3.0",
  2621. "System.Runtime": "4.3.0",
  2622. "System.Threading.Tasks": "4.3.0"
  2623. },
  2624. "compile": {
  2625. "lib/netstandard1.0/_._": {
  2626. "related": ".xml"
  2627. }
  2628. },
  2629. "runtime": {
  2630. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  2631. "related": ".xml"
  2632. }
  2633. }
  2634. },
  2635. "System.Threading.Timer/4.3.0": {
  2636. "type": "package",
  2637. "dependencies": {
  2638. "Microsoft.NETCore.Platforms": "1.1.0",
  2639. "Microsoft.NETCore.Targets": "1.1.0",
  2640. "System.Runtime": "4.3.0"
  2641. },
  2642. "compile": {
  2643. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2644. "related": ".xml"
  2645. }
  2646. }
  2647. },
  2648. "System.Windows.Extensions/4.7.0": {
  2649. "type": "package",
  2650. "dependencies": {
  2651. "System.Drawing.Common": "4.7.0"
  2652. },
  2653. "compile": {
  2654. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  2655. "related": ".xml"
  2656. }
  2657. },
  2658. "runtime": {
  2659. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2660. "related": ".xml"
  2661. }
  2662. },
  2663. "runtimeTargets": {
  2664. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2665. "assetType": "runtime",
  2666. "rid": "win"
  2667. }
  2668. }
  2669. },
  2670. "System.Xml.ReaderWriter/4.3.0": {
  2671. "type": "package",
  2672. "dependencies": {
  2673. "System.Collections": "4.3.0",
  2674. "System.Diagnostics.Debug": "4.3.0",
  2675. "System.Globalization": "4.3.0",
  2676. "System.IO": "4.3.0",
  2677. "System.IO.FileSystem": "4.3.0",
  2678. "System.IO.FileSystem.Primitives": "4.3.0",
  2679. "System.Resources.ResourceManager": "4.3.0",
  2680. "System.Runtime": "4.3.0",
  2681. "System.Runtime.Extensions": "4.3.0",
  2682. "System.Runtime.InteropServices": "4.3.0",
  2683. "System.Text.Encoding": "4.3.0",
  2684. "System.Text.Encoding.Extensions": "4.3.0",
  2685. "System.Text.RegularExpressions": "4.3.0",
  2686. "System.Threading.Tasks": "4.3.0",
  2687. "System.Threading.Tasks.Extensions": "4.3.0"
  2688. },
  2689. "compile": {
  2690. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2691. "related": ".xml"
  2692. }
  2693. },
  2694. "runtime": {
  2695. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2696. }
  2697. },
  2698. "System.Xml.XDocument/4.3.0": {
  2699. "type": "package",
  2700. "dependencies": {
  2701. "System.Collections": "4.3.0",
  2702. "System.Diagnostics.Debug": "4.3.0",
  2703. "System.Diagnostics.Tools": "4.3.0",
  2704. "System.Globalization": "4.3.0",
  2705. "System.IO": "4.3.0",
  2706. "System.Reflection": "4.3.0",
  2707. "System.Resources.ResourceManager": "4.3.0",
  2708. "System.Runtime": "4.3.0",
  2709. "System.Runtime.Extensions": "4.3.0",
  2710. "System.Text.Encoding": "4.3.0",
  2711. "System.Threading": "4.3.0",
  2712. "System.Xml.ReaderWriter": "4.3.0"
  2713. },
  2714. "compile": {
  2715. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2716. "related": ".xml"
  2717. }
  2718. },
  2719. "runtime": {
  2720. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2721. }
  2722. },
  2723. "OASystem.Domain/1.0.0": {
  2724. "type": "project",
  2725. "framework": ".NETCoreApp,Version=v6.0",
  2726. "dependencies": {
  2727. "AutoMapper": "12.0.0",
  2728. "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.0",
  2729. "Autofac": "6.4.0",
  2730. "Autofac.Extensions.DependencyInjection": "8.0.0",
  2731. "Serilog.Sinks.File": "5.0.0",
  2732. "SqlSugarCore": "5.1.3.32"
  2733. },
  2734. "compile": {
  2735. "bin/placeholder/OASystem.Domain.dll": {}
  2736. },
  2737. "runtime": {
  2738. "bin/placeholder/OASystem.Domain.dll": {}
  2739. }
  2740. },
  2741. "OASystem.Infrastructure/1.0.0": {
  2742. "type": "project",
  2743. "framework": ".NETCoreApp,Version=v6.0",
  2744. "dependencies": {
  2745. "AutoMapper": "12.0.0",
  2746. "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.0",
  2747. "Autofac": "6.4.0",
  2748. "Autofac.Extensions.DependencyInjection": "8.0.0",
  2749. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2750. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
  2751. "Microsoft.Extensions.Configuration.Binder": "7.0.0",
  2752. "OASystem.Domain": "1.0.0",
  2753. "Serilog.Sinks.File": "5.0.0",
  2754. "SqlSugarCore": "5.1.3.32",
  2755. "StackExchange.Redis": "2.6.96"
  2756. },
  2757. "compile": {
  2758. "bin/placeholder/OASystem.Infrastructure.dll": {}
  2759. },
  2760. "runtime": {
  2761. "bin/placeholder/OASystem.Infrastructure.dll": {}
  2762. }
  2763. }
  2764. }
  2765. },
  2766. "libraries": {
  2767. "Autofac/6.4.0": {
  2768. "sha512": "tkFxl6wAPuwVhrlN8wuNADnd+k2tv4ReP7ZZSL0vjfcN0RcfC9v25ogxK6b03HC7D4NwWjSLf1G/zTG8Bw43wQ==",
  2769. "type": "package",
  2770. "path": "autofac/6.4.0",
  2771. "files": [
  2772. ".nupkg.metadata",
  2773. ".signature.p7s",
  2774. "README.md",
  2775. "autofac.6.4.0.nupkg.sha512",
  2776. "autofac.nuspec",
  2777. "icon.png",
  2778. "lib/net5.0/Autofac.dll",
  2779. "lib/net5.0/Autofac.xml",
  2780. "lib/net6.0/Autofac.dll",
  2781. "lib/net6.0/Autofac.xml",
  2782. "lib/netstandard2.0/Autofac.dll",
  2783. "lib/netstandard2.0/Autofac.xml",
  2784. "lib/netstandard2.1/Autofac.dll",
  2785. "lib/netstandard2.1/Autofac.xml"
  2786. ]
  2787. },
  2788. "Autofac.Extensions.DependencyInjection/8.0.0": {
  2789. "sha512": "nGrXNpQX2FiZpIBydK9cxZnnoqP/cUd3k/53uRERYEqLtWzKtE15R6L+j5q5ax5Rv/+3wAIkOaPePkahfqrwjg==",
  2790. "type": "package",
  2791. "path": "autofac.extensions.dependencyinjection/8.0.0",
  2792. "files": [
  2793. ".nupkg.metadata",
  2794. ".signature.p7s",
  2795. "autofac.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  2796. "autofac.extensions.dependencyinjection.nuspec",
  2797. "icon.png",
  2798. "lib/net5.0/Autofac.Extensions.DependencyInjection.dll",
  2799. "lib/net5.0/Autofac.Extensions.DependencyInjection.xml",
  2800. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll",
  2801. "lib/net6.0/Autofac.Extensions.DependencyInjection.xml",
  2802. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  2803. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  2804. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  2805. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  2806. ]
  2807. },
  2808. "AutoMapper/12.0.0": {
  2809. "sha512": "0Rmg0zI5AFu1O/y//o9VGyhxKjhggWpk9mOA1tp0DEVx40c61bs+lnQv+0jUq8XbniF7FKgIVvI1perqiMtLrA==",
  2810. "type": "package",
  2811. "path": "automapper/12.0.0",
  2812. "files": [
  2813. ".nupkg.metadata",
  2814. ".signature.p7s",
  2815. "README.md",
  2816. "automapper.12.0.0.nupkg.sha512",
  2817. "automapper.nuspec",
  2818. "icon.png",
  2819. "lib/netstandard2.1/AutoMapper.dll",
  2820. "lib/netstandard2.1/AutoMapper.xml"
  2821. ]
  2822. },
  2823. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.0": {
  2824. "sha512": "XCJ4E3oKrbRl1qY9Mr+7uyC0xZj1+bqQjmQRWTiTKiVuuXTny+7YFWHi20tPjwkMukLbicN6yGlDy5PZ4wyi1w==",
  2825. "type": "package",
  2826. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.0",
  2827. "files": [
  2828. ".nupkg.metadata",
  2829. ".signature.p7s",
  2830. "README.md",
  2831. "automapper.extensions.microsoft.dependencyinjection.12.0.0.nupkg.sha512",
  2832. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  2833. "icon.png",
  2834. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  2835. ]
  2836. },
  2837. "Betalgo.OpenAI.GPT3/6.6.7": {
  2838. "sha512": "BThAQX/JnWb6TwdQwz3UFGz888qSnfNxTzjuZH2MiQVQ2qhzGbxzMODNjosKSH778xMUJMUr4+F0s6M23BrRnA==",
  2839. "type": "package",
  2840. "path": "betalgo.openai.gpt3/6.6.7",
  2841. "files": [
  2842. ".nupkg.metadata",
  2843. ".signature.p7s",
  2844. "OpenAI-Betalgo.png",
  2845. "Readme.md",
  2846. "betalgo.openai.gpt3.6.6.7.nupkg.sha512",
  2847. "betalgo.openai.gpt3.nuspec",
  2848. "lib/net6.0/OpenAI.GPT3.dll",
  2849. "lib/net6.0/OpenAI.GPT3.xml"
  2850. ]
  2851. },
  2852. "BouncyCastle.NetCore/1.8.8": {
  2853. "sha512": "Jx3dQd4SQOHZmxcImYSp0YT2WpYxosQXoZutbHORhFK/zHGH8aykfIyM6S4DVGyu4g9+KHGJUQEh2RH4qXj/Jg==",
  2854. "type": "package",
  2855. "path": "bouncycastle.netcore/1.8.8",
  2856. "files": [
  2857. ".nupkg.metadata",
  2858. ".signature.p7s",
  2859. "bouncycastle.netcore.1.8.8.nupkg.sha512",
  2860. "bouncycastle.netcore.nuspec",
  2861. "lib/Mono/BouncyCastle.Crypto.dll",
  2862. "lib/Mono/BouncyCastle.Crypto.xml",
  2863. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  2864. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  2865. "lib/MonoMac/BouncyCastle.Crypto.dll",
  2866. "lib/MonoMac/BouncyCastle.Crypto.xml",
  2867. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  2868. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  2869. "lib/net20/BouncyCastle.Crypto.dll",
  2870. "lib/net20/BouncyCastle.Crypto.xml",
  2871. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  2872. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  2873. "lib/xamarinios/BouncyCastle.Crypto.dll",
  2874. "lib/xamarinios/BouncyCastle.Crypto.xml"
  2875. ]
  2876. },
  2877. "Flurl/3.0.6": {
  2878. "sha512": "XMIlB/tJ4nTYF2+79xDsnnlgbXHpKyizKX2fffrECekI6pEsa9MSLzf5tPVMdLy4k4AcJPLs356Sa2Le5VRDCw==",
  2879. "type": "package",
  2880. "path": "flurl/3.0.6",
  2881. "files": [
  2882. ".nupkg.metadata",
  2883. ".signature.p7s",
  2884. "flurl.3.0.6.nupkg.sha512",
  2885. "flurl.nuspec",
  2886. "icon.png",
  2887. "lib/net461/Flurl.dll",
  2888. "lib/net461/Flurl.xml",
  2889. "lib/net472/Flurl.dll",
  2890. "lib/net472/Flurl.xml",
  2891. "lib/netstandard2.0/Flurl.dll",
  2892. "lib/netstandard2.0/Flurl.xml"
  2893. ]
  2894. },
  2895. "Flurl.Http/3.2.4": {
  2896. "sha512": "Me9Vm4Lm21vt/pbR0G2Dww/ZOjJgh6mB2FiH28aiUYStJD10ZecDp8jxg2zKxcy6lnkvLm99pjG4yC/k7a/d8w==",
  2897. "type": "package",
  2898. "path": "flurl.http/3.2.4",
  2899. "files": [
  2900. ".nupkg.metadata",
  2901. ".signature.p7s",
  2902. "flurl.http.3.2.4.nupkg.sha512",
  2903. "flurl.http.nuspec",
  2904. "icon.png",
  2905. "lib/net461/Flurl.Http.dll",
  2906. "lib/net461/Flurl.Http.xml",
  2907. "lib/net472/Flurl.Http.dll",
  2908. "lib/net472/Flurl.Http.xml",
  2909. "lib/netstandard2.0/Flurl.Http.dll",
  2910. "lib/netstandard2.0/Flurl.Http.xml"
  2911. ]
  2912. },
  2913. "Google.Protobuf/3.19.4": {
  2914. "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==",
  2915. "type": "package",
  2916. "path": "google.protobuf/3.19.4",
  2917. "files": [
  2918. ".nupkg.metadata",
  2919. ".signature.p7s",
  2920. "google.protobuf.3.19.4.nupkg.sha512",
  2921. "google.protobuf.nuspec",
  2922. "lib/net45/Google.Protobuf.dll",
  2923. "lib/net45/Google.Protobuf.pdb",
  2924. "lib/net45/Google.Protobuf.xml",
  2925. "lib/net5.0/Google.Protobuf.dll",
  2926. "lib/net5.0/Google.Protobuf.pdb",
  2927. "lib/net5.0/Google.Protobuf.xml",
  2928. "lib/netstandard1.1/Google.Protobuf.dll",
  2929. "lib/netstandard1.1/Google.Protobuf.pdb",
  2930. "lib/netstandard1.1/Google.Protobuf.xml",
  2931. "lib/netstandard2.0/Google.Protobuf.dll",
  2932. "lib/netstandard2.0/Google.Protobuf.pdb",
  2933. "lib/netstandard2.0/Google.Protobuf.xml"
  2934. ]
  2935. },
  2936. "K4os.Compression.LZ4/1.2.6": {
  2937. "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
  2938. "type": "package",
  2939. "path": "k4os.compression.lz4/1.2.6",
  2940. "files": [
  2941. ".nupkg.metadata",
  2942. ".signature.p7s",
  2943. "k4os.compression.lz4.1.2.6.nupkg.sha512",
  2944. "k4os.compression.lz4.nuspec",
  2945. "lib/net45/K4os.Compression.LZ4.dll",
  2946. "lib/net45/K4os.Compression.LZ4.xml",
  2947. "lib/net46/K4os.Compression.LZ4.dll",
  2948. "lib/net46/K4os.Compression.LZ4.xml",
  2949. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2950. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2951. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2952. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2953. ]
  2954. },
  2955. "K4os.Compression.LZ4.Streams/1.2.6": {
  2956. "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
  2957. "type": "package",
  2958. "path": "k4os.compression.lz4.streams/1.2.6",
  2959. "files": [
  2960. ".nupkg.metadata",
  2961. ".signature.p7s",
  2962. "k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
  2963. "k4os.compression.lz4.streams.nuspec",
  2964. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2965. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2966. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2967. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2968. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2969. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2970. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2971. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
  2972. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
  2973. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
  2974. ]
  2975. },
  2976. "K4os.Hash.xxHash/1.0.6": {
  2977. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2978. "type": "package",
  2979. "path": "k4os.hash.xxhash/1.0.6",
  2980. "files": [
  2981. ".nupkg.metadata",
  2982. ".signature.p7s",
  2983. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2984. "k4os.hash.xxhash.nuspec",
  2985. "lib/net45/K4os.Hash.xxHash.dll",
  2986. "lib/net45/K4os.Hash.xxHash.xml",
  2987. "lib/net46/K4os.Hash.xxHash.dll",
  2988. "lib/net46/K4os.Hash.xxHash.xml",
  2989. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2990. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2991. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2992. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2993. ]
  2994. },
  2995. "Microsoft.AspNet.WebApi.Client/5.2.9": {
  2996. "sha512": "cuVhPjjNMSEFpKXweMNBbsG4RUFuuZpFBm8tSyw309U9JEjcnbB6n3EPb4xwgcy9bJ38ctIbv5G8zXUBhlrPWw==",
  2997. "type": "package",
  2998. "path": "microsoft.aspnet.webapi.client/5.2.9",
  2999. "files": [
  3000. ".nupkg.metadata",
  3001. ".signature.p7s",
  3002. "NET.icon.png",
  3003. "NET_Library_EULA_ENU.txt",
  3004. "lib/net45/System.Net.Http.Formatting.dll",
  3005. "lib/net45/System.Net.Http.Formatting.xml",
  3006. "lib/netstandard2.0/System.Net.Http.Formatting.dll",
  3007. "lib/netstandard2.0/System.Net.Http.Formatting.xml",
  3008. "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll",
  3009. "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml",
  3010. "microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512",
  3011. "microsoft.aspnet.webapi.client.nuspec"
  3012. ]
  3013. },
  3014. "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.11": {
  3015. "sha512": "ivpWC8L84Y+l9VZOa0uJXPoUE+n3TiSRZpfKxMElRtLMYCeXmz5x3O7CuCJkZ65z1520RWuEZDmHefxiz5TqPg==",
  3016. "type": "package",
  3017. "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.11",
  3018. "files": [
  3019. ".nupkg.metadata",
  3020. ".signature.p7s",
  3021. "Icon.png",
  3022. "THIRD-PARTY-NOTICES.TXT",
  3023. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  3024. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  3025. "microsoft.aspnetcore.authentication.jwtbearer.6.0.11.nupkg.sha512",
  3026. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  3027. ]
  3028. },
  3029. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3030. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3031. "type": "package",
  3032. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3033. "files": [
  3034. ".nupkg.metadata",
  3035. ".signature.p7s",
  3036. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3037. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3038. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3039. "microsoft.aspnetcore.http.abstractions.nuspec"
  3040. ]
  3041. },
  3042. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  3043. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  3044. "type": "package",
  3045. "path": "microsoft.aspnetcore.http.features/2.2.0",
  3046. "files": [
  3047. ".nupkg.metadata",
  3048. ".signature.p7s",
  3049. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3050. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3051. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  3052. "microsoft.aspnetcore.http.features.nuspec"
  3053. ]
  3054. },
  3055. "Microsoft.CSharp/4.7.0": {
  3056. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  3057. "type": "package",
  3058. "path": "microsoft.csharp/4.7.0",
  3059. "files": [
  3060. ".nupkg.metadata",
  3061. ".signature.p7s",
  3062. "LICENSE.TXT",
  3063. "THIRD-PARTY-NOTICES.TXT",
  3064. "lib/MonoAndroid10/_._",
  3065. "lib/MonoTouch10/_._",
  3066. "lib/net45/_._",
  3067. "lib/netcore50/Microsoft.CSharp.dll",
  3068. "lib/netcoreapp2.0/_._",
  3069. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3070. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3071. "lib/netstandard2.0/Microsoft.CSharp.xml",
  3072. "lib/portable-net45+win8+wp8+wpa81/_._",
  3073. "lib/uap10.0.16299/_._",
  3074. "lib/win8/_._",
  3075. "lib/wp80/_._",
  3076. "lib/wpa81/_._",
  3077. "lib/xamarinios10/_._",
  3078. "lib/xamarinmac20/_._",
  3079. "lib/xamarintvos10/_._",
  3080. "lib/xamarinwatchos10/_._",
  3081. "microsoft.csharp.4.7.0.nupkg.sha512",
  3082. "microsoft.csharp.nuspec",
  3083. "ref/MonoAndroid10/_._",
  3084. "ref/MonoTouch10/_._",
  3085. "ref/net45/_._",
  3086. "ref/netcore50/Microsoft.CSharp.dll",
  3087. "ref/netcore50/Microsoft.CSharp.xml",
  3088. "ref/netcore50/de/Microsoft.CSharp.xml",
  3089. "ref/netcore50/es/Microsoft.CSharp.xml",
  3090. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3091. "ref/netcore50/it/Microsoft.CSharp.xml",
  3092. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3093. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3094. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3095. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3096. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3097. "ref/netcoreapp2.0/_._",
  3098. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3099. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3100. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3101. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3102. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3103. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3104. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3105. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3106. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3107. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3108. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3109. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3110. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3111. "ref/portable-net45+win8+wp8+wpa81/_._",
  3112. "ref/uap10.0.16299/_._",
  3113. "ref/win8/_._",
  3114. "ref/wp80/_._",
  3115. "ref/wpa81/_._",
  3116. "ref/xamarinios10/_._",
  3117. "ref/xamarinmac20/_._",
  3118. "ref/xamarintvos10/_._",
  3119. "ref/xamarinwatchos10/_._",
  3120. "useSharedDesignerContext.txt",
  3121. "version.txt"
  3122. ]
  3123. },
  3124. "Microsoft.Data.SqlClient/2.1.1": {
  3125. "sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==",
  3126. "type": "package",
  3127. "path": "microsoft.data.sqlclient/2.1.1",
  3128. "files": [
  3129. ".nupkg.metadata",
  3130. ".signature.p7s",
  3131. "dotnet.png",
  3132. "lib/net46/Microsoft.Data.SqlClient.dll",
  3133. "lib/net46/Microsoft.Data.SqlClient.pdb",
  3134. "lib/net46/Microsoft.Data.SqlClient.xml",
  3135. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  3136. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  3137. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  3138. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  3139. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  3140. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  3141. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  3142. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  3143. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  3144. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  3145. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3146. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3147. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  3148. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  3149. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  3150. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  3151. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3152. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3153. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  3154. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  3155. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  3156. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  3157. "microsoft.data.sqlclient.2.1.1.nupkg.sha512",
  3158. "microsoft.data.sqlclient.nuspec",
  3159. "ref/net46/Microsoft.Data.SqlClient.dll",
  3160. "ref/net46/Microsoft.Data.SqlClient.pdb",
  3161. "ref/net46/Microsoft.Data.SqlClient.xml",
  3162. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3163. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3164. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  3165. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  3166. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  3167. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  3168. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3169. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3170. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  3171. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  3172. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  3173. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  3174. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3175. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3176. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  3177. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  3178. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3179. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3180. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  3181. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  3182. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  3183. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  3184. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3185. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3186. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  3187. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  3188. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3189. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3190. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  3191. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  3192. ]
  3193. },
  3194. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  3195. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  3196. "type": "package",
  3197. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  3198. "files": [
  3199. ".nupkg.metadata",
  3200. ".signature.p7s",
  3201. "LICENSE.txt",
  3202. "dotnet.png",
  3203. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  3204. "microsoft.data.sqlclient.sni.runtime.nuspec",
  3205. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  3206. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  3207. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  3208. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  3209. ]
  3210. },
  3211. "Microsoft.Data.Sqlite/5.0.5": {
  3212. "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==",
  3213. "type": "package",
  3214. "path": "microsoft.data.sqlite/5.0.5",
  3215. "files": [
  3216. ".nupkg.metadata",
  3217. ".signature.p7s",
  3218. "Icon.png",
  3219. "lib/netstandard2.0/_._",
  3220. "microsoft.data.sqlite.5.0.5.nupkg.sha512",
  3221. "microsoft.data.sqlite.nuspec"
  3222. ]
  3223. },
  3224. "Microsoft.Data.Sqlite.Core/5.0.5": {
  3225. "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==",
  3226. "type": "package",
  3227. "path": "microsoft.data.sqlite.core/5.0.5",
  3228. "files": [
  3229. ".nupkg.metadata",
  3230. ".signature.p7s",
  3231. "Icon.png",
  3232. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  3233. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  3234. "microsoft.data.sqlite.core.5.0.5.nupkg.sha512",
  3235. "microsoft.data.sqlite.core.nuspec"
  3236. ]
  3237. },
  3238. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  3239. "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  3240. "type": "package",
  3241. "path": "microsoft.extensions.apidescription.server/6.0.5",
  3242. "hasTools": true,
  3243. "files": [
  3244. ".nupkg.metadata",
  3245. ".signature.p7s",
  3246. "Icon.png",
  3247. "build/Microsoft.Extensions.ApiDescription.Server.props",
  3248. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  3249. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  3250. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  3251. "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
  3252. "microsoft.extensions.apidescription.server.nuspec",
  3253. "tools/Newtonsoft.Json.dll",
  3254. "tools/dotnet-getdocument.deps.json",
  3255. "tools/dotnet-getdocument.dll",
  3256. "tools/dotnet-getdocument.runtimeconfig.json",
  3257. "tools/net461-x86/GetDocument.Insider.exe",
  3258. "tools/net461-x86/GetDocument.Insider.exe.config",
  3259. "tools/net461-x86/Microsoft.Win32.Primitives.dll",
  3260. "tools/net461-x86/System.AppContext.dll",
  3261. "tools/net461-x86/System.Buffers.dll",
  3262. "tools/net461-x86/System.Collections.Concurrent.dll",
  3263. "tools/net461-x86/System.Collections.NonGeneric.dll",
  3264. "tools/net461-x86/System.Collections.Specialized.dll",
  3265. "tools/net461-x86/System.Collections.dll",
  3266. "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
  3267. "tools/net461-x86/System.ComponentModel.Primitives.dll",
  3268. "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
  3269. "tools/net461-x86/System.ComponentModel.dll",
  3270. "tools/net461-x86/System.Console.dll",
  3271. "tools/net461-x86/System.Data.Common.dll",
  3272. "tools/net461-x86/System.Diagnostics.Contracts.dll",
  3273. "tools/net461-x86/System.Diagnostics.Debug.dll",
  3274. "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
  3275. "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
  3276. "tools/net461-x86/System.Diagnostics.Process.dll",
  3277. "tools/net461-x86/System.Diagnostics.StackTrace.dll",
  3278. "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
  3279. "tools/net461-x86/System.Diagnostics.Tools.dll",
  3280. "tools/net461-x86/System.Diagnostics.TraceSource.dll",
  3281. "tools/net461-x86/System.Diagnostics.Tracing.dll",
  3282. "tools/net461-x86/System.Drawing.Primitives.dll",
  3283. "tools/net461-x86/System.Dynamic.Runtime.dll",
  3284. "tools/net461-x86/System.Globalization.Calendars.dll",
  3285. "tools/net461-x86/System.Globalization.Extensions.dll",
  3286. "tools/net461-x86/System.Globalization.dll",
  3287. "tools/net461-x86/System.IO.Compression.ZipFile.dll",
  3288. "tools/net461-x86/System.IO.Compression.dll",
  3289. "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
  3290. "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
  3291. "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
  3292. "tools/net461-x86/System.IO.FileSystem.dll",
  3293. "tools/net461-x86/System.IO.IsolatedStorage.dll",
  3294. "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
  3295. "tools/net461-x86/System.IO.Pipes.dll",
  3296. "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
  3297. "tools/net461-x86/System.IO.dll",
  3298. "tools/net461-x86/System.Linq.Expressions.dll",
  3299. "tools/net461-x86/System.Linq.Parallel.dll",
  3300. "tools/net461-x86/System.Linq.Queryable.dll",
  3301. "tools/net461-x86/System.Linq.dll",
  3302. "tools/net461-x86/System.Memory.dll",
  3303. "tools/net461-x86/System.Net.Http.dll",
  3304. "tools/net461-x86/System.Net.NameResolution.dll",
  3305. "tools/net461-x86/System.Net.NetworkInformation.dll",
  3306. "tools/net461-x86/System.Net.Ping.dll",
  3307. "tools/net461-x86/System.Net.Primitives.dll",
  3308. "tools/net461-x86/System.Net.Requests.dll",
  3309. "tools/net461-x86/System.Net.Security.dll",
  3310. "tools/net461-x86/System.Net.Sockets.dll",
  3311. "tools/net461-x86/System.Net.WebHeaderCollection.dll",
  3312. "tools/net461-x86/System.Net.WebSockets.Client.dll",
  3313. "tools/net461-x86/System.Net.WebSockets.dll",
  3314. "tools/net461-x86/System.Numerics.Vectors.dll",
  3315. "tools/net461-x86/System.ObjectModel.dll",
  3316. "tools/net461-x86/System.Reflection.Extensions.dll",
  3317. "tools/net461-x86/System.Reflection.Primitives.dll",
  3318. "tools/net461-x86/System.Reflection.dll",
  3319. "tools/net461-x86/System.Resources.Reader.dll",
  3320. "tools/net461-x86/System.Resources.ResourceManager.dll",
  3321. "tools/net461-x86/System.Resources.Writer.dll",
  3322. "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
  3323. "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
  3324. "tools/net461-x86/System.Runtime.Extensions.dll",
  3325. "tools/net461-x86/System.Runtime.Handles.dll",
  3326. "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
  3327. "tools/net461-x86/System.Runtime.InteropServices.dll",
  3328. "tools/net461-x86/System.Runtime.Numerics.dll",
  3329. "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
  3330. "tools/net461-x86/System.Runtime.Serialization.Json.dll",
  3331. "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
  3332. "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
  3333. "tools/net461-x86/System.Runtime.dll",
  3334. "tools/net461-x86/System.Security.Claims.dll",
  3335. "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
  3336. "tools/net461-x86/System.Security.Cryptography.Csp.dll",
  3337. "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
  3338. "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
  3339. "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
  3340. "tools/net461-x86/System.Security.Principal.dll",
  3341. "tools/net461-x86/System.Security.SecureString.dll",
  3342. "tools/net461-x86/System.Text.Encoding.Extensions.dll",
  3343. "tools/net461-x86/System.Text.Encoding.dll",
  3344. "tools/net461-x86/System.Text.RegularExpressions.dll",
  3345. "tools/net461-x86/System.Threading.Overlapped.dll",
  3346. "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
  3347. "tools/net461-x86/System.Threading.Tasks.dll",
  3348. "tools/net461-x86/System.Threading.Thread.dll",
  3349. "tools/net461-x86/System.Threading.ThreadPool.dll",
  3350. "tools/net461-x86/System.Threading.Timer.dll",
  3351. "tools/net461-x86/System.Threading.dll",
  3352. "tools/net461-x86/System.ValueTuple.dll",
  3353. "tools/net461-x86/System.Xml.ReaderWriter.dll",
  3354. "tools/net461-x86/System.Xml.XDocument.dll",
  3355. "tools/net461-x86/System.Xml.XPath.XDocument.dll",
  3356. "tools/net461-x86/System.Xml.XPath.dll",
  3357. "tools/net461-x86/System.Xml.XmlDocument.dll",
  3358. "tools/net461-x86/System.Xml.XmlSerializer.dll",
  3359. "tools/net461-x86/netstandard.dll",
  3360. "tools/net461/GetDocument.Insider.exe",
  3361. "tools/net461/GetDocument.Insider.exe.config",
  3362. "tools/net461/Microsoft.Win32.Primitives.dll",
  3363. "tools/net461/System.AppContext.dll",
  3364. "tools/net461/System.Buffers.dll",
  3365. "tools/net461/System.Collections.Concurrent.dll",
  3366. "tools/net461/System.Collections.NonGeneric.dll",
  3367. "tools/net461/System.Collections.Specialized.dll",
  3368. "tools/net461/System.Collections.dll",
  3369. "tools/net461/System.ComponentModel.EventBasedAsync.dll",
  3370. "tools/net461/System.ComponentModel.Primitives.dll",
  3371. "tools/net461/System.ComponentModel.TypeConverter.dll",
  3372. "tools/net461/System.ComponentModel.dll",
  3373. "tools/net461/System.Console.dll",
  3374. "tools/net461/System.Data.Common.dll",
  3375. "tools/net461/System.Diagnostics.Contracts.dll",
  3376. "tools/net461/System.Diagnostics.Debug.dll",
  3377. "tools/net461/System.Diagnostics.DiagnosticSource.dll",
  3378. "tools/net461/System.Diagnostics.FileVersionInfo.dll",
  3379. "tools/net461/System.Diagnostics.Process.dll",
  3380. "tools/net461/System.Diagnostics.StackTrace.dll",
  3381. "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
  3382. "tools/net461/System.Diagnostics.Tools.dll",
  3383. "tools/net461/System.Diagnostics.TraceSource.dll",
  3384. "tools/net461/System.Diagnostics.Tracing.dll",
  3385. "tools/net461/System.Drawing.Primitives.dll",
  3386. "tools/net461/System.Dynamic.Runtime.dll",
  3387. "tools/net461/System.Globalization.Calendars.dll",
  3388. "tools/net461/System.Globalization.Extensions.dll",
  3389. "tools/net461/System.Globalization.dll",
  3390. "tools/net461/System.IO.Compression.ZipFile.dll",
  3391. "tools/net461/System.IO.Compression.dll",
  3392. "tools/net461/System.IO.FileSystem.DriveInfo.dll",
  3393. "tools/net461/System.IO.FileSystem.Primitives.dll",
  3394. "tools/net461/System.IO.FileSystem.Watcher.dll",
  3395. "tools/net461/System.IO.FileSystem.dll",
  3396. "tools/net461/System.IO.IsolatedStorage.dll",
  3397. "tools/net461/System.IO.MemoryMappedFiles.dll",
  3398. "tools/net461/System.IO.Pipes.dll",
  3399. "tools/net461/System.IO.UnmanagedMemoryStream.dll",
  3400. "tools/net461/System.IO.dll",
  3401. "tools/net461/System.Linq.Expressions.dll",
  3402. "tools/net461/System.Linq.Parallel.dll",
  3403. "tools/net461/System.Linq.Queryable.dll",
  3404. "tools/net461/System.Linq.dll",
  3405. "tools/net461/System.Memory.dll",
  3406. "tools/net461/System.Net.Http.dll",
  3407. "tools/net461/System.Net.NameResolution.dll",
  3408. "tools/net461/System.Net.NetworkInformation.dll",
  3409. "tools/net461/System.Net.Ping.dll",
  3410. "tools/net461/System.Net.Primitives.dll",
  3411. "tools/net461/System.Net.Requests.dll",
  3412. "tools/net461/System.Net.Security.dll",
  3413. "tools/net461/System.Net.Sockets.dll",
  3414. "tools/net461/System.Net.WebHeaderCollection.dll",
  3415. "tools/net461/System.Net.WebSockets.Client.dll",
  3416. "tools/net461/System.Net.WebSockets.dll",
  3417. "tools/net461/System.Numerics.Vectors.dll",
  3418. "tools/net461/System.ObjectModel.dll",
  3419. "tools/net461/System.Reflection.Extensions.dll",
  3420. "tools/net461/System.Reflection.Primitives.dll",
  3421. "tools/net461/System.Reflection.dll",
  3422. "tools/net461/System.Resources.Reader.dll",
  3423. "tools/net461/System.Resources.ResourceManager.dll",
  3424. "tools/net461/System.Resources.Writer.dll",
  3425. "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3426. "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
  3427. "tools/net461/System.Runtime.Extensions.dll",
  3428. "tools/net461/System.Runtime.Handles.dll",
  3429. "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
  3430. "tools/net461/System.Runtime.InteropServices.dll",
  3431. "tools/net461/System.Runtime.Numerics.dll",
  3432. "tools/net461/System.Runtime.Serialization.Formatters.dll",
  3433. "tools/net461/System.Runtime.Serialization.Json.dll",
  3434. "tools/net461/System.Runtime.Serialization.Primitives.dll",
  3435. "tools/net461/System.Runtime.Serialization.Xml.dll",
  3436. "tools/net461/System.Runtime.dll",
  3437. "tools/net461/System.Security.Claims.dll",
  3438. "tools/net461/System.Security.Cryptography.Algorithms.dll",
  3439. "tools/net461/System.Security.Cryptography.Csp.dll",
  3440. "tools/net461/System.Security.Cryptography.Encoding.dll",
  3441. "tools/net461/System.Security.Cryptography.Primitives.dll",
  3442. "tools/net461/System.Security.Cryptography.X509Certificates.dll",
  3443. "tools/net461/System.Security.Principal.dll",
  3444. "tools/net461/System.Security.SecureString.dll",
  3445. "tools/net461/System.Text.Encoding.Extensions.dll",
  3446. "tools/net461/System.Text.Encoding.dll",
  3447. "tools/net461/System.Text.RegularExpressions.dll",
  3448. "tools/net461/System.Threading.Overlapped.dll",
  3449. "tools/net461/System.Threading.Tasks.Parallel.dll",
  3450. "tools/net461/System.Threading.Tasks.dll",
  3451. "tools/net461/System.Threading.Thread.dll",
  3452. "tools/net461/System.Threading.ThreadPool.dll",
  3453. "tools/net461/System.Threading.Timer.dll",
  3454. "tools/net461/System.Threading.dll",
  3455. "tools/net461/System.ValueTuple.dll",
  3456. "tools/net461/System.Xml.ReaderWriter.dll",
  3457. "tools/net461/System.Xml.XDocument.dll",
  3458. "tools/net461/System.Xml.XPath.XDocument.dll",
  3459. "tools/net461/System.Xml.XPath.dll",
  3460. "tools/net461/System.Xml.XmlDocument.dll",
  3461. "tools/net461/System.Xml.XmlSerializer.dll",
  3462. "tools/net461/netstandard.dll",
  3463. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  3464. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  3465. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
  3466. "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
  3467. ]
  3468. },
  3469. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  3470. "sha512": "f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
  3471. "type": "package",
  3472. "path": "microsoft.extensions.configuration.abstractions/7.0.0",
  3473. "files": [
  3474. ".nupkg.metadata",
  3475. ".signature.p7s",
  3476. "Icon.png",
  3477. "LICENSE.TXT",
  3478. "THIRD-PARTY-NOTICES.TXT",
  3479. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  3480. "buildTransitive/net462/_._",
  3481. "buildTransitive/net6.0/_._",
  3482. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  3483. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  3484. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  3485. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3486. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3487. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3488. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3489. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3490. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3491. "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
  3492. "microsoft.extensions.configuration.abstractions.nuspec",
  3493. "useSharedDesignerContext.txt"
  3494. ]
  3495. },
  3496. "Microsoft.Extensions.Configuration.Binder/7.0.0": {
  3497. "sha512": "tgU4u7bZsoS9MKVRiotVMAwHtbREHr5/5zSEV+JPhg46+ox47Au84E3D2IacAaB0bk5ePNaNieTlPrfjbbRJkg==",
  3498. "type": "package",
  3499. "path": "microsoft.extensions.configuration.binder/7.0.0",
  3500. "files": [
  3501. ".nupkg.metadata",
  3502. ".signature.p7s",
  3503. "Icon.png",
  3504. "LICENSE.TXT",
  3505. "THIRD-PARTY-NOTICES.TXT",
  3506. "buildTransitive/net461/Microsoft.Extensions.Configuration.Binder.targets",
  3507. "buildTransitive/net462/_._",
  3508. "buildTransitive/net6.0/_._",
  3509. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Binder.targets",
  3510. "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
  3511. "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
  3512. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
  3513. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
  3514. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
  3515. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
  3516. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3517. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3518. "microsoft.extensions.configuration.binder.7.0.0.nupkg.sha512",
  3519. "microsoft.extensions.configuration.binder.nuspec",
  3520. "useSharedDesignerContext.txt"
  3521. ]
  3522. },
  3523. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  3524. "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  3525. "type": "package",
  3526. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  3527. "files": [
  3528. ".nupkg.metadata",
  3529. ".signature.p7s",
  3530. "Icon.png",
  3531. "LICENSE.TXT",
  3532. "THIRD-PARTY-NOTICES.TXT",
  3533. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  3534. "buildTransitive/netcoreapp3.1/_._",
  3535. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3536. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3537. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  3538. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  3539. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3540. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3541. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3542. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3543. "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
  3544. "microsoft.extensions.dependencyinjection.nuspec",
  3545. "useSharedDesignerContext.txt"
  3546. ]
  3547. },
  3548. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  3549. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  3550. "type": "package",
  3551. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  3552. "files": [
  3553. ".nupkg.metadata",
  3554. ".signature.p7s",
  3555. "Icon.png",
  3556. "LICENSE.TXT",
  3557. "THIRD-PARTY-NOTICES.TXT",
  3558. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3559. "buildTransitive/netcoreapp3.1/_._",
  3560. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3561. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3562. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3563. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3564. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3565. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3566. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3567. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3568. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  3569. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3570. "useSharedDesignerContext.txt"
  3571. ]
  3572. },
  3573. "Microsoft.Extensions.Http/6.0.0": {
  3574. "sha512": "15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==",
  3575. "type": "package",
  3576. "path": "microsoft.extensions.http/6.0.0",
  3577. "files": [
  3578. ".nupkg.metadata",
  3579. ".signature.p7s",
  3580. "Icon.png",
  3581. "LICENSE.TXT",
  3582. "THIRD-PARTY-NOTICES.TXT",
  3583. "lib/net461/Microsoft.Extensions.Http.dll",
  3584. "lib/net461/Microsoft.Extensions.Http.xml",
  3585. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  3586. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  3587. "microsoft.extensions.http.6.0.0.nupkg.sha512",
  3588. "microsoft.extensions.http.nuspec",
  3589. "useSharedDesignerContext.txt"
  3590. ]
  3591. },
  3592. "Microsoft.Extensions.Logging/6.0.0": {
  3593. "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  3594. "type": "package",
  3595. "path": "microsoft.extensions.logging/6.0.0",
  3596. "files": [
  3597. ".nupkg.metadata",
  3598. ".signature.p7s",
  3599. "Icon.png",
  3600. "LICENSE.TXT",
  3601. "THIRD-PARTY-NOTICES.TXT",
  3602. "lib/net461/Microsoft.Extensions.Logging.dll",
  3603. "lib/net461/Microsoft.Extensions.Logging.xml",
  3604. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3605. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3606. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3607. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3608. "microsoft.extensions.logging.6.0.0.nupkg.sha512",
  3609. "microsoft.extensions.logging.nuspec",
  3610. "useSharedDesignerContext.txt"
  3611. ]
  3612. },
  3613. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  3614. "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==",
  3615. "type": "package",
  3616. "path": "microsoft.extensions.logging.abstractions/6.0.0",
  3617. "files": [
  3618. ".nupkg.metadata",
  3619. ".signature.p7s",
  3620. "Icon.png",
  3621. "LICENSE.TXT",
  3622. "THIRD-PARTY-NOTICES.TXT",
  3623. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  3624. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3625. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3626. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3627. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3628. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3629. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3630. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3631. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3632. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3633. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3634. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3635. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3636. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3637. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  3638. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3639. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3640. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3641. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3642. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3643. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3644. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3645. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3646. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3647. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3648. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3649. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3650. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3651. "build/Microsoft.Extensions.Logging.Abstractions.targets",
  3652. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3653. "buildTransitive/netcoreapp3.1/_._",
  3654. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  3655. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  3656. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3657. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3658. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3659. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3660. "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512",
  3661. "microsoft.extensions.logging.abstractions.nuspec",
  3662. "useSharedDesignerContext.txt"
  3663. ]
  3664. },
  3665. "Microsoft.Extensions.Options/6.0.0": {
  3666. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  3667. "type": "package",
  3668. "path": "microsoft.extensions.options/6.0.0",
  3669. "files": [
  3670. ".nupkg.metadata",
  3671. ".signature.p7s",
  3672. "Icon.png",
  3673. "LICENSE.TXT",
  3674. "THIRD-PARTY-NOTICES.TXT",
  3675. "lib/net461/Microsoft.Extensions.Options.dll",
  3676. "lib/net461/Microsoft.Extensions.Options.xml",
  3677. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3678. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3679. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  3680. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  3681. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  3682. "microsoft.extensions.options.nuspec",
  3683. "useSharedDesignerContext.txt"
  3684. ]
  3685. },
  3686. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  3687. "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==",
  3688. "type": "package",
  3689. "path": "microsoft.extensions.options.configurationextensions/6.0.0",
  3690. "files": [
  3691. ".nupkg.metadata",
  3692. ".signature.p7s",
  3693. "Icon.png",
  3694. "LICENSE.TXT",
  3695. "THIRD-PARTY-NOTICES.TXT",
  3696. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3697. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3698. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3699. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3700. "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512",
  3701. "microsoft.extensions.options.configurationextensions.nuspec",
  3702. "useSharedDesignerContext.txt"
  3703. ]
  3704. },
  3705. "Microsoft.Extensions.Primitives/7.0.0": {
  3706. "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  3707. "type": "package",
  3708. "path": "microsoft.extensions.primitives/7.0.0",
  3709. "files": [
  3710. ".nupkg.metadata",
  3711. ".signature.p7s",
  3712. "Icon.png",
  3713. "LICENSE.TXT",
  3714. "THIRD-PARTY-NOTICES.TXT",
  3715. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  3716. "buildTransitive/net462/_._",
  3717. "buildTransitive/net6.0/_._",
  3718. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  3719. "lib/net462/Microsoft.Extensions.Primitives.dll",
  3720. "lib/net462/Microsoft.Extensions.Primitives.xml",
  3721. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  3722. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  3723. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  3724. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  3725. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3726. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3727. "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
  3728. "microsoft.extensions.primitives.nuspec",
  3729. "useSharedDesignerContext.txt"
  3730. ]
  3731. },
  3732. "Microsoft.Identity.Client/4.21.1": {
  3733. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  3734. "type": "package",
  3735. "path": "microsoft.identity.client/4.21.1",
  3736. "files": [
  3737. ".nupkg.metadata",
  3738. ".signature.p7s",
  3739. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  3740. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  3741. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  3742. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  3743. "lib/net45/Microsoft.Identity.Client.dll",
  3744. "lib/net45/Microsoft.Identity.Client.xml",
  3745. "lib/net461/Microsoft.Identity.Client.dll",
  3746. "lib/net461/Microsoft.Identity.Client.xml",
  3747. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3748. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3749. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  3750. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  3751. "lib/uap10.0/Microsoft.Identity.Client.dll",
  3752. "lib/uap10.0/Microsoft.Identity.Client.pri",
  3753. "lib/uap10.0/Microsoft.Identity.Client.xml",
  3754. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  3755. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  3756. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  3757. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  3758. "microsoft.identity.client.4.21.1.nupkg.sha512",
  3759. "microsoft.identity.client.nuspec",
  3760. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  3761. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  3762. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  3763. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  3764. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  3765. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  3766. "ref/net45/Microsoft.Identity.Client.dll",
  3767. "ref/net45/Microsoft.Identity.Client.xml",
  3768. "ref/net461/Microsoft.Identity.Client.dll",
  3769. "ref/net461/Microsoft.Identity.Client.xml",
  3770. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3771. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3772. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  3773. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  3774. "ref/uap10.0/Microsoft.Identity.Client.dll",
  3775. "ref/uap10.0/Microsoft.Identity.Client.xml",
  3776. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  3777. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  3778. ]
  3779. },
  3780. "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
  3781. "sha512": "0qjS31rN1MQTc46tAYbzmMTSRfdV5ndZxSjYxIGqKSidd4wpNJfNII/pdhU5Fx8olarQoKL9lqqYw4yNOIwT0Q==",
  3782. "type": "package",
  3783. "path": "microsoft.identitymodel.jsonwebtokens/6.10.0",
  3784. "files": [
  3785. ".nupkg.metadata",
  3786. ".signature.p7s",
  3787. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3788. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3789. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3790. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3791. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  3792. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  3793. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3794. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3795. "microsoft.identitymodel.jsonwebtokens.6.10.0.nupkg.sha512",
  3796. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3797. ]
  3798. },
  3799. "Microsoft.IdentityModel.Logging/6.10.0": {
  3800. "sha512": "zbcwV6esnNzhZZ/VP87dji6VrUBLB5rxnZBkDMqNYpyG+nrBnBsbm4PUYLCBMUflHCM9EMLDG0rLnqqT+l0ldA==",
  3801. "type": "package",
  3802. "path": "microsoft.identitymodel.logging/6.10.0",
  3803. "files": [
  3804. ".nupkg.metadata",
  3805. ".signature.p7s",
  3806. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3807. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3808. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3809. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3810. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  3811. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  3812. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3813. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3814. "microsoft.identitymodel.logging.6.10.0.nupkg.sha512",
  3815. "microsoft.identitymodel.logging.nuspec"
  3816. ]
  3817. },
  3818. "Microsoft.IdentityModel.Protocols/6.10.0": {
  3819. "sha512": "DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==",
  3820. "type": "package",
  3821. "path": "microsoft.identitymodel.protocols/6.10.0",
  3822. "files": [
  3823. ".nupkg.metadata",
  3824. ".signature.p7s",
  3825. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  3826. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  3827. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3828. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3829. "lib/net472/Microsoft.IdentityModel.Protocols.dll",
  3830. "lib/net472/Microsoft.IdentityModel.Protocols.xml",
  3831. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3832. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3833. "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512",
  3834. "microsoft.identitymodel.protocols.nuspec"
  3835. ]
  3836. },
  3837. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
  3838. "sha512": "LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==",
  3839. "type": "package",
  3840. "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0",
  3841. "files": [
  3842. ".nupkg.metadata",
  3843. ".signature.p7s",
  3844. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3845. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3846. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3847. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3848. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3849. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3850. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3851. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3852. "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512",
  3853. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3854. ]
  3855. },
  3856. "Microsoft.IdentityModel.Tokens/6.10.0": {
  3857. "sha512": "qbf1NslutDB4oLrriYTJpy7oB1pbh2ej2lEHd2IPDQH9C74ysOdhU5wAC7KoXblldbo7YsNR2QYFOqQM/b0Rsg==",
  3858. "type": "package",
  3859. "path": "microsoft.identitymodel.tokens/6.10.0",
  3860. "files": [
  3861. ".nupkg.metadata",
  3862. ".signature.p7s",
  3863. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3864. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3865. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3866. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3867. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  3868. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  3869. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3870. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3871. "microsoft.identitymodel.tokens.6.10.0.nupkg.sha512",
  3872. "microsoft.identitymodel.tokens.nuspec"
  3873. ]
  3874. },
  3875. "Microsoft.NETCore.Platforms/3.1.0": {
  3876. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  3877. "type": "package",
  3878. "path": "microsoft.netcore.platforms/3.1.0",
  3879. "files": [
  3880. ".nupkg.metadata",
  3881. ".signature.p7s",
  3882. "LICENSE.TXT",
  3883. "THIRD-PARTY-NOTICES.TXT",
  3884. "lib/netstandard1.0/_._",
  3885. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  3886. "microsoft.netcore.platforms.nuspec",
  3887. "runtime.json",
  3888. "useSharedDesignerContext.txt",
  3889. "version.txt"
  3890. ]
  3891. },
  3892. "Microsoft.NETCore.Targets/1.1.0": {
  3893. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3894. "type": "package",
  3895. "path": "microsoft.netcore.targets/1.1.0",
  3896. "files": [
  3897. ".nupkg.metadata",
  3898. ".signature.p7s",
  3899. "ThirdPartyNotices.txt",
  3900. "dotnet_library_license.txt",
  3901. "lib/netstandard1.0/_._",
  3902. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3903. "microsoft.netcore.targets.nuspec",
  3904. "runtime.json"
  3905. ]
  3906. },
  3907. "Microsoft.OpenApi/1.2.3": {
  3908. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  3909. "type": "package",
  3910. "path": "microsoft.openapi/1.2.3",
  3911. "files": [
  3912. ".nupkg.metadata",
  3913. ".signature.p7s",
  3914. "lib/net46/Microsoft.OpenApi.dll",
  3915. "lib/net46/Microsoft.OpenApi.pdb",
  3916. "lib/net46/Microsoft.OpenApi.xml",
  3917. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  3918. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  3919. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  3920. "microsoft.openapi.1.2.3.nupkg.sha512",
  3921. "microsoft.openapi.nuspec"
  3922. ]
  3923. },
  3924. "Microsoft.Win32.Primitives/4.3.0": {
  3925. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3926. "type": "package",
  3927. "path": "microsoft.win32.primitives/4.3.0",
  3928. "files": [
  3929. ".nupkg.metadata",
  3930. ".signature.p7s",
  3931. "ThirdPartyNotices.txt",
  3932. "dotnet_library_license.txt",
  3933. "lib/MonoAndroid10/_._",
  3934. "lib/MonoTouch10/_._",
  3935. "lib/net46/Microsoft.Win32.Primitives.dll",
  3936. "lib/xamarinios10/_._",
  3937. "lib/xamarinmac20/_._",
  3938. "lib/xamarintvos10/_._",
  3939. "lib/xamarinwatchos10/_._",
  3940. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3941. "microsoft.win32.primitives.nuspec",
  3942. "ref/MonoAndroid10/_._",
  3943. "ref/MonoTouch10/_._",
  3944. "ref/net46/Microsoft.Win32.Primitives.dll",
  3945. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3946. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3947. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3948. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3949. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3950. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3951. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3952. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3953. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3954. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3955. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3956. "ref/xamarinios10/_._",
  3957. "ref/xamarinmac20/_._",
  3958. "ref/xamarintvos10/_._",
  3959. "ref/xamarinwatchos10/_._"
  3960. ]
  3961. },
  3962. "Microsoft.Win32.Registry/4.7.0": {
  3963. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  3964. "type": "package",
  3965. "path": "microsoft.win32.registry/4.7.0",
  3966. "files": [
  3967. ".nupkg.metadata",
  3968. ".signature.p7s",
  3969. "LICENSE.TXT",
  3970. "THIRD-PARTY-NOTICES.TXT",
  3971. "lib/net46/Microsoft.Win32.Registry.dll",
  3972. "lib/net461/Microsoft.Win32.Registry.dll",
  3973. "lib/net461/Microsoft.Win32.Registry.xml",
  3974. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3975. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3976. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3977. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  3978. "microsoft.win32.registry.nuspec",
  3979. "ref/net46/Microsoft.Win32.Registry.dll",
  3980. "ref/net461/Microsoft.Win32.Registry.dll",
  3981. "ref/net461/Microsoft.Win32.Registry.xml",
  3982. "ref/net472/Microsoft.Win32.Registry.dll",
  3983. "ref/net472/Microsoft.Win32.Registry.xml",
  3984. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3985. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3986. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3987. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3988. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3989. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3990. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3991. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3992. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3993. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3994. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3995. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3996. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3997. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3998. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3999. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4000. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  4001. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  4002. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4003. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4004. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  4005. "useSharedDesignerContext.txt",
  4006. "version.txt"
  4007. ]
  4008. },
  4009. "Microsoft.Win32.SystemEvents/4.7.0": {
  4010. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  4011. "type": "package",
  4012. "path": "microsoft.win32.systemevents/4.7.0",
  4013. "files": [
  4014. ".nupkg.metadata",
  4015. ".signature.p7s",
  4016. "LICENSE.TXT",
  4017. "THIRD-PARTY-NOTICES.TXT",
  4018. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4019. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4020. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4021. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4022. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  4023. "microsoft.win32.systemevents.nuspec",
  4024. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4025. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4026. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  4027. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  4028. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4029. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4030. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4031. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4032. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4033. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4034. "useSharedDesignerContext.txt",
  4035. "version.txt"
  4036. ]
  4037. },
  4038. "MySql.Data/8.0.29": {
  4039. "sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==",
  4040. "type": "package",
  4041. "path": "mysql.data/8.0.29",
  4042. "files": [
  4043. ".nupkg.metadata",
  4044. ".signature.p7s",
  4045. "lib/net452/MySql.Data.dll",
  4046. "lib/net452/MySql.Data.xml",
  4047. "lib/net452/Ubiety.Dns.Core.dll",
  4048. "lib/net452/ZstdNet.dll",
  4049. "lib/net48/MySql.Data.dll",
  4050. "lib/net48/MySql.Data.xml",
  4051. "lib/net48/Ubiety.Dns.Core.dll",
  4052. "lib/net48/ZstdNet.dll",
  4053. "lib/net5.0/MySql.Data.dll",
  4054. "lib/net5.0/MySql.Data.xml",
  4055. "lib/net5.0/Ubiety.Dns.Core.dll",
  4056. "lib/net5.0/ZstdNet.dll",
  4057. "lib/net6.0/MySql.Data.dll",
  4058. "lib/net6.0/MySql.Data.xml",
  4059. "lib/net6.0/Ubiety.Dns.Core.dll",
  4060. "lib/net6.0/ZstdNet.dll",
  4061. "lib/netstandard2.0/MySql.Data.dll",
  4062. "lib/netstandard2.0/MySql.Data.xml",
  4063. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  4064. "lib/netstandard2.0/ZstdNet.dll",
  4065. "lib/netstandard2.1/MySql.Data.dll",
  4066. "lib/netstandard2.1/MySql.Data.xml",
  4067. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  4068. "lib/netstandard2.1/ZstdNet.dll",
  4069. "mysql.data.8.0.29.nupkg.sha512",
  4070. "mysql.data.nuspec"
  4071. ]
  4072. },
  4073. "NETStandard.Library/1.6.1": {
  4074. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4075. "type": "package",
  4076. "path": "netstandard.library/1.6.1",
  4077. "files": [
  4078. ".nupkg.metadata",
  4079. ".signature.p7s",
  4080. "ThirdPartyNotices.txt",
  4081. "dotnet_library_license.txt",
  4082. "netstandard.library.1.6.1.nupkg.sha512",
  4083. "netstandard.library.nuspec"
  4084. ]
  4085. },
  4086. "Newtonsoft.Json/12.0.2": {
  4087. "sha512": "rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==",
  4088. "type": "package",
  4089. "path": "newtonsoft.json/12.0.2",
  4090. "files": [
  4091. ".nupkg.metadata",
  4092. ".signature.p7s",
  4093. "LICENSE.md",
  4094. "lib/net20/Newtonsoft.Json.dll",
  4095. "lib/net20/Newtonsoft.Json.xml",
  4096. "lib/net35/Newtonsoft.Json.dll",
  4097. "lib/net35/Newtonsoft.Json.xml",
  4098. "lib/net40/Newtonsoft.Json.dll",
  4099. "lib/net40/Newtonsoft.Json.xml",
  4100. "lib/net45/Newtonsoft.Json.dll",
  4101. "lib/net45/Newtonsoft.Json.xml",
  4102. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4103. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4104. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4105. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4106. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4107. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4108. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4109. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4110. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4111. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4112. "newtonsoft.json.12.0.2.nupkg.sha512",
  4113. "newtonsoft.json.nuspec"
  4114. ]
  4115. },
  4116. "Newtonsoft.Json.Bson/1.0.1": {
  4117. "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
  4118. "type": "package",
  4119. "path": "newtonsoft.json.bson/1.0.1",
  4120. "files": [
  4121. ".nupkg.metadata",
  4122. ".signature.p7s",
  4123. "lib/net45/Newtonsoft.Json.Bson.dll",
  4124. "lib/net45/Newtonsoft.Json.Bson.xml",
  4125. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  4126. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  4127. "newtonsoft.json.bson.1.0.1.nupkg.sha512",
  4128. "newtonsoft.json.bson.nuspec"
  4129. ]
  4130. },
  4131. "Npgsql/5.0.7": {
  4132. "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==",
  4133. "type": "package",
  4134. "path": "npgsql/5.0.7",
  4135. "files": [
  4136. ".nupkg.metadata",
  4137. ".signature.p7s",
  4138. "lib/net5.0/Npgsql.dll",
  4139. "lib/net5.0/Npgsql.xml",
  4140. "lib/netcoreapp3.1/Npgsql.dll",
  4141. "lib/netcoreapp3.1/Npgsql.xml",
  4142. "lib/netstandard2.0/Npgsql.dll",
  4143. "lib/netstandard2.0/Npgsql.xml",
  4144. "lib/netstandard2.1/Npgsql.dll",
  4145. "lib/netstandard2.1/Npgsql.xml",
  4146. "npgsql.5.0.7.nupkg.sha512",
  4147. "npgsql.nuspec",
  4148. "postgresql.png"
  4149. ]
  4150. },
  4151. "Oracle.ManagedDataAccess.Core/3.21.1": {
  4152. "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==",
  4153. "type": "package",
  4154. "path": "oracle.manageddataaccess.core/3.21.1",
  4155. "files": [
  4156. ".nupkg.metadata",
  4157. ".signature.p7s",
  4158. "PerfCounters/register_odpc_perfmon_counters.ps1",
  4159. "PerfCounters/unregister_odpc_perfmon_counters.ps1",
  4160. "info.txt",
  4161. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll",
  4162. "oracle.manageddataaccess.core.3.21.1.nupkg.sha512",
  4163. "oracle.manageddataaccess.core.nuspec",
  4164. "readme.txt"
  4165. ]
  4166. },
  4167. "Pipelines.Sockets.Unofficial/2.2.2": {
  4168. "sha512": "Bhk0FWxH1paI+18zr1g5cTL+ebeuDcBCR+rRFO+fKEhretgjs7MF2Mc1P64FGLecWp4zKCUOPzngBNrqVyY7Zg==",
  4169. "type": "package",
  4170. "path": "pipelines.sockets.unofficial/2.2.2",
  4171. "files": [
  4172. ".nupkg.metadata",
  4173. ".signature.p7s",
  4174. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  4175. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  4176. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  4177. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  4178. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  4179. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  4180. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  4181. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  4182. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  4183. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  4184. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  4185. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  4186. "pipelines.sockets.unofficial.2.2.2.nupkg.sha512",
  4187. "pipelines.sockets.unofficial.nuspec"
  4188. ]
  4189. },
  4190. "QRCoder/1.4.1": {
  4191. "sha512": "W8KwCwsOJe9SI7Cm7XeIMawd08F/US6xNw34lg2Qnx6m7GYYakxbyBQaNoW1Q75oJOmX/32sJUZr6Cix2B6GUQ==",
  4192. "type": "package",
  4193. "path": "qrcoder/1.4.1",
  4194. "files": [
  4195. ".nupkg.metadata",
  4196. ".signature.p7s",
  4197. "lib/net35/QRCoder.dll",
  4198. "lib/net40/QRCoder.dll",
  4199. "lib/netstandard1.1/QRCoder.dll",
  4200. "lib/netstandard2.0/QRCoder.dll",
  4201. "qrcoder.1.4.1.nupkg.sha512",
  4202. "qrcoder.nuspec"
  4203. ]
  4204. },
  4205. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4206. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4207. "type": "package",
  4208. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4209. "files": [
  4210. ".nupkg.metadata",
  4211. ".signature.p7s",
  4212. "ThirdPartyNotices.txt",
  4213. "dotnet_library_license.txt",
  4214. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4215. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4216. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4217. ]
  4218. },
  4219. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4220. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4221. "type": "package",
  4222. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4223. "files": [
  4224. ".nupkg.metadata",
  4225. ".signature.p7s",
  4226. "ThirdPartyNotices.txt",
  4227. "dotnet_library_license.txt",
  4228. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4229. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4230. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4231. ]
  4232. },
  4233. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4234. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4235. "type": "package",
  4236. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4237. "files": [
  4238. ".nupkg.metadata",
  4239. ".signature.p7s",
  4240. "ThirdPartyNotices.txt",
  4241. "dotnet_library_license.txt",
  4242. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4243. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4244. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4245. ]
  4246. },
  4247. "runtime.native.System/4.3.0": {
  4248. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4249. "type": "package",
  4250. "path": "runtime.native.system/4.3.0",
  4251. "files": [
  4252. ".nupkg.metadata",
  4253. ".signature.p7s",
  4254. "ThirdPartyNotices.txt",
  4255. "dotnet_library_license.txt",
  4256. "lib/netstandard1.0/_._",
  4257. "runtime.native.system.4.3.0.nupkg.sha512",
  4258. "runtime.native.system.nuspec"
  4259. ]
  4260. },
  4261. "runtime.native.System.IO.Compression/4.3.0": {
  4262. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4263. "type": "package",
  4264. "path": "runtime.native.system.io.compression/4.3.0",
  4265. "files": [
  4266. ".nupkg.metadata",
  4267. ".signature.p7s",
  4268. "ThirdPartyNotices.txt",
  4269. "dotnet_library_license.txt",
  4270. "lib/netstandard1.0/_._",
  4271. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4272. "runtime.native.system.io.compression.nuspec"
  4273. ]
  4274. },
  4275. "runtime.native.System.Net.Http/4.3.0": {
  4276. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4277. "type": "package",
  4278. "path": "runtime.native.system.net.http/4.3.0",
  4279. "files": [
  4280. ".nupkg.metadata",
  4281. ".signature.p7s",
  4282. "ThirdPartyNotices.txt",
  4283. "dotnet_library_license.txt",
  4284. "lib/netstandard1.0/_._",
  4285. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4286. "runtime.native.system.net.http.nuspec"
  4287. ]
  4288. },
  4289. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4290. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4291. "type": "package",
  4292. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4293. "files": [
  4294. ".nupkg.metadata",
  4295. ".signature.p7s",
  4296. "ThirdPartyNotices.txt",
  4297. "dotnet_library_license.txt",
  4298. "lib/netstandard1.0/_._",
  4299. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4300. "runtime.native.system.security.cryptography.apple.nuspec"
  4301. ]
  4302. },
  4303. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4304. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4305. "type": "package",
  4306. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4307. "files": [
  4308. ".nupkg.metadata",
  4309. ".signature.p7s",
  4310. "ThirdPartyNotices.txt",
  4311. "dotnet_library_license.txt",
  4312. "lib/netstandard1.0/_._",
  4313. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4314. "runtime.native.system.security.cryptography.openssl.nuspec"
  4315. ]
  4316. },
  4317. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4318. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4319. "type": "package",
  4320. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4321. "files": [
  4322. ".nupkg.metadata",
  4323. ".signature.p7s",
  4324. "ThirdPartyNotices.txt",
  4325. "dotnet_library_license.txt",
  4326. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4327. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4328. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4329. ]
  4330. },
  4331. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4332. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4333. "type": "package",
  4334. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4335. "files": [
  4336. ".nupkg.metadata",
  4337. ".signature.p7s",
  4338. "ThirdPartyNotices.txt",
  4339. "dotnet_library_license.txt",
  4340. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4341. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4342. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4343. ]
  4344. },
  4345. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4346. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4347. "type": "package",
  4348. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4349. "files": [
  4350. ".nupkg.metadata",
  4351. ".signature.p7s",
  4352. "ThirdPartyNotices.txt",
  4353. "dotnet_library_license.txt",
  4354. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4355. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4356. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4357. ]
  4358. },
  4359. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4360. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4361. "type": "package",
  4362. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4363. "files": [
  4364. ".nupkg.metadata",
  4365. ".signature.p7s",
  4366. "ThirdPartyNotices.txt",
  4367. "dotnet_library_license.txt",
  4368. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4369. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4370. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4371. ]
  4372. },
  4373. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4374. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4375. "type": "package",
  4376. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4377. "files": [
  4378. ".nupkg.metadata",
  4379. ".signature.p7s",
  4380. "ThirdPartyNotices.txt",
  4381. "dotnet_library_license.txt",
  4382. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4383. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4384. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4385. ]
  4386. },
  4387. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4388. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4389. "type": "package",
  4390. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4391. "files": [
  4392. ".nupkg.metadata",
  4393. ".signature.p7s",
  4394. "ThirdPartyNotices.txt",
  4395. "dotnet_library_license.txt",
  4396. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4397. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4398. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4399. ]
  4400. },
  4401. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4402. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4403. "type": "package",
  4404. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4405. "files": [
  4406. ".nupkg.metadata",
  4407. ".signature.p7s",
  4408. "ThirdPartyNotices.txt",
  4409. "dotnet_library_license.txt",
  4410. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4411. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4412. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4413. ]
  4414. },
  4415. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4416. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4417. "type": "package",
  4418. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4419. "files": [
  4420. ".nupkg.metadata",
  4421. ".signature.p7s",
  4422. "ThirdPartyNotices.txt",
  4423. "dotnet_library_license.txt",
  4424. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4425. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4426. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4427. ]
  4428. },
  4429. "Serilog/2.10.0": {
  4430. "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
  4431. "type": "package",
  4432. "path": "serilog/2.10.0",
  4433. "files": [
  4434. ".nupkg.metadata",
  4435. ".signature.p7s",
  4436. "icon.png",
  4437. "lib/net45/Serilog.dll",
  4438. "lib/net45/Serilog.xml",
  4439. "lib/net46/Serilog.dll",
  4440. "lib/net46/Serilog.xml",
  4441. "lib/netstandard1.0/Serilog.dll",
  4442. "lib/netstandard1.0/Serilog.xml",
  4443. "lib/netstandard1.3/Serilog.dll",
  4444. "lib/netstandard1.3/Serilog.xml",
  4445. "lib/netstandard2.0/Serilog.dll",
  4446. "lib/netstandard2.0/Serilog.xml",
  4447. "lib/netstandard2.1/Serilog.dll",
  4448. "lib/netstandard2.1/Serilog.xml",
  4449. "serilog.2.10.0.nupkg.sha512",
  4450. "serilog.nuspec"
  4451. ]
  4452. },
  4453. "Serilog.Sinks.File/5.0.0": {
  4454. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  4455. "type": "package",
  4456. "path": "serilog.sinks.file/5.0.0",
  4457. "files": [
  4458. ".nupkg.metadata",
  4459. ".signature.p7s",
  4460. "images/icon.png",
  4461. "lib/net45/Serilog.Sinks.File.dll",
  4462. "lib/net45/Serilog.Sinks.File.pdb",
  4463. "lib/net45/Serilog.Sinks.File.xml",
  4464. "lib/net5.0/Serilog.Sinks.File.dll",
  4465. "lib/net5.0/Serilog.Sinks.File.pdb",
  4466. "lib/net5.0/Serilog.Sinks.File.xml",
  4467. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  4468. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  4469. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  4470. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  4471. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  4472. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  4473. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  4474. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  4475. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  4476. "serilog.sinks.file.5.0.0.nupkg.sha512",
  4477. "serilog.sinks.file.nuspec"
  4478. ]
  4479. },
  4480. "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
  4481. "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
  4482. "type": "package",
  4483. "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
  4484. "files": [
  4485. ".nupkg.metadata",
  4486. ".signature.p7s",
  4487. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4488. "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll",
  4489. "lib/net461/SQLitePCLRaw.batteries_v2.dll",
  4490. "lib/net461/SQLitePCLRaw.nativelibrary.dll",
  4491. "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll",
  4492. "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll",
  4493. "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
  4494. "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512",
  4495. "sqlitepclraw.bundle_e_sqlite3.nuspec"
  4496. ]
  4497. },
  4498. "SQLitePCLRaw.core/2.0.4": {
  4499. "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==",
  4500. "type": "package",
  4501. "path": "sqlitepclraw.core/2.0.4",
  4502. "files": [
  4503. ".nupkg.metadata",
  4504. ".signature.p7s",
  4505. "lib/netstandard2.0/SQLitePCLRaw.core.dll",
  4506. "sqlitepclraw.core.2.0.4.nupkg.sha512",
  4507. "sqlitepclraw.core.nuspec"
  4508. ]
  4509. },
  4510. "SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
  4511. "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==",
  4512. "type": "package",
  4513. "path": "sqlitepclraw.lib.e_sqlite3/2.0.4",
  4514. "files": [
  4515. ".nupkg.metadata",
  4516. ".signature.p7s",
  4517. "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
  4518. "lib/net461/_._",
  4519. "lib/netstandard2.0/_._",
  4520. "runtimes/alpine-x64/native/libe_sqlite3.so",
  4521. "runtimes/linux-arm/native/libe_sqlite3.so",
  4522. "runtimes/linux-arm64/native/libe_sqlite3.so",
  4523. "runtimes/linux-armel/native/libe_sqlite3.so",
  4524. "runtimes/linux-mips64/native/libe_sqlite3.so",
  4525. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  4526. "runtimes/linux-x64/native/libe_sqlite3.so",
  4527. "runtimes/linux-x86/native/libe_sqlite3.so",
  4528. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  4529. "runtimes/win-arm/native/e_sqlite3.dll",
  4530. "runtimes/win-arm64/native/e_sqlite3.dll",
  4531. "runtimes/win-x64/native/e_sqlite3.dll",
  4532. "runtimes/win-x86/native/e_sqlite3.dll",
  4533. "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
  4534. "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
  4535. "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
  4536. "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
  4537. "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512",
  4538. "sqlitepclraw.lib.e_sqlite3.nuspec"
  4539. ]
  4540. },
  4541. "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
  4542. "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==",
  4543. "type": "package",
  4544. "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4",
  4545. "files": [
  4546. ".nupkg.metadata",
  4547. ".signature.p7s",
  4548. "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll",
  4549. "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512",
  4550. "sqlitepclraw.provider.dynamic_cdecl.nuspec"
  4551. ]
  4552. },
  4553. "SqlSugarCore/5.1.3.32": {
  4554. "sha512": "Rd+N9idSgHMmAZ3c93UV/h2xMDqkR+0uFXxiJMKDwOEeqIVcG207OzoXt15/D4Sk6oxwksZuqK4AMft35QPSjA==",
  4555. "type": "package",
  4556. "path": "sqlsugarcore/5.1.3.32",
  4557. "files": [
  4558. ".nupkg.metadata",
  4559. ".signature.p7s",
  4560. "lib/netstandard2.1/SqlSugar.dll",
  4561. "sqlsugarcore.5.1.3.32.nupkg.sha512",
  4562. "sqlsugarcore.nuspec"
  4563. ]
  4564. },
  4565. "SqlSugarCore.Dm/1.0.0": {
  4566. "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==",
  4567. "type": "package",
  4568. "path": "sqlsugarcore.dm/1.0.0",
  4569. "files": [
  4570. ".nupkg.metadata",
  4571. ".signature.p7s",
  4572. "lib/netstandard2.0/DmProvider.dll",
  4573. "sqlsugarcore.dm.1.0.0.nupkg.sha512",
  4574. "sqlsugarcore.dm.nuspec"
  4575. ]
  4576. },
  4577. "SqlSugarCore.Kdbndp/1.0.0": {
  4578. "sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==",
  4579. "type": "package",
  4580. "path": "sqlsugarcore.kdbndp/1.0.0",
  4581. "files": [
  4582. ".nupkg.metadata",
  4583. ".signature.p7s",
  4584. "lib/netstandard2.0/Kdbndp.dll",
  4585. "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512",
  4586. "sqlsugarcore.kdbndp.nuspec"
  4587. ]
  4588. },
  4589. "StackExchange.Redis/2.6.96": {
  4590. "sha512": "JDj94bTwBZ6zA1vknEYJppRXRejTnl5u2z6cRBQ0DJ+Uy94qvn0XsQZ2M+1/VkqtxQ+LUU1h4JZWwcvVojGiQg==",
  4591. "type": "package",
  4592. "path": "stackexchange.redis/2.6.96",
  4593. "files": [
  4594. ".nupkg.metadata",
  4595. ".signature.p7s",
  4596. "lib/net461/StackExchange.Redis.dll",
  4597. "lib/net461/StackExchange.Redis.xml",
  4598. "lib/net472/StackExchange.Redis.dll",
  4599. "lib/net472/StackExchange.Redis.xml",
  4600. "lib/net5.0/StackExchange.Redis.dll",
  4601. "lib/net5.0/StackExchange.Redis.xml",
  4602. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  4603. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  4604. "lib/netstandard2.0/StackExchange.Redis.dll",
  4605. "lib/netstandard2.0/StackExchange.Redis.xml",
  4606. "stackexchange.redis.2.6.96.nupkg.sha512",
  4607. "stackexchange.redis.nuspec"
  4608. ]
  4609. },
  4610. "Swashbuckle.AspNetCore/6.4.0": {
  4611. "sha512": "eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==",
  4612. "type": "package",
  4613. "path": "swashbuckle.aspnetcore/6.4.0",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. ".signature.p7s",
  4617. "build/Swashbuckle.AspNetCore.props",
  4618. "swashbuckle.aspnetcore.6.4.0.nupkg.sha512",
  4619. "swashbuckle.aspnetcore.nuspec"
  4620. ]
  4621. },
  4622. "Swashbuckle.AspNetCore.Swagger/6.4.0": {
  4623. "sha512": "nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==",
  4624. "type": "package",
  4625. "path": "swashbuckle.aspnetcore.swagger/6.4.0",
  4626. "files": [
  4627. ".nupkg.metadata",
  4628. ".signature.p7s",
  4629. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  4630. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4631. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  4632. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  4633. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4634. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  4635. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  4636. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4637. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  4638. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  4639. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  4640. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  4641. "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512",
  4642. "swashbuckle.aspnetcore.swagger.nuspec"
  4643. ]
  4644. },
  4645. "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
  4646. "sha512": "lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==",
  4647. "type": "package",
  4648. "path": "swashbuckle.aspnetcore.swaggergen/6.4.0",
  4649. "files": [
  4650. ".nupkg.metadata",
  4651. ".signature.p7s",
  4652. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4653. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4654. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4655. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4656. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4657. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4658. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4659. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4660. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4661. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  4662. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  4663. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  4664. "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512",
  4665. "swashbuckle.aspnetcore.swaggergen.nuspec"
  4666. ]
  4667. },
  4668. "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
  4669. "sha512": "1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==",
  4670. "type": "package",
  4671. "path": "swashbuckle.aspnetcore.swaggerui/6.4.0",
  4672. "files": [
  4673. ".nupkg.metadata",
  4674. ".signature.p7s",
  4675. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4676. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4677. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4678. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4679. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4680. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4681. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4682. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4683. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4684. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  4685. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  4686. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  4687. "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512",
  4688. "swashbuckle.aspnetcore.swaggerui.nuspec"
  4689. ]
  4690. },
  4691. "System.AppContext/4.3.0": {
  4692. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4693. "type": "package",
  4694. "path": "system.appcontext/4.3.0",
  4695. "files": [
  4696. ".nupkg.metadata",
  4697. ".signature.p7s",
  4698. "ThirdPartyNotices.txt",
  4699. "dotnet_library_license.txt",
  4700. "lib/MonoAndroid10/_._",
  4701. "lib/MonoTouch10/_._",
  4702. "lib/net46/System.AppContext.dll",
  4703. "lib/net463/System.AppContext.dll",
  4704. "lib/netcore50/System.AppContext.dll",
  4705. "lib/netstandard1.6/System.AppContext.dll",
  4706. "lib/xamarinios10/_._",
  4707. "lib/xamarinmac20/_._",
  4708. "lib/xamarintvos10/_._",
  4709. "lib/xamarinwatchos10/_._",
  4710. "ref/MonoAndroid10/_._",
  4711. "ref/MonoTouch10/_._",
  4712. "ref/net46/System.AppContext.dll",
  4713. "ref/net463/System.AppContext.dll",
  4714. "ref/netstandard/_._",
  4715. "ref/netstandard1.3/System.AppContext.dll",
  4716. "ref/netstandard1.3/System.AppContext.xml",
  4717. "ref/netstandard1.3/de/System.AppContext.xml",
  4718. "ref/netstandard1.3/es/System.AppContext.xml",
  4719. "ref/netstandard1.3/fr/System.AppContext.xml",
  4720. "ref/netstandard1.3/it/System.AppContext.xml",
  4721. "ref/netstandard1.3/ja/System.AppContext.xml",
  4722. "ref/netstandard1.3/ko/System.AppContext.xml",
  4723. "ref/netstandard1.3/ru/System.AppContext.xml",
  4724. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4725. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4726. "ref/netstandard1.6/System.AppContext.dll",
  4727. "ref/netstandard1.6/System.AppContext.xml",
  4728. "ref/netstandard1.6/de/System.AppContext.xml",
  4729. "ref/netstandard1.6/es/System.AppContext.xml",
  4730. "ref/netstandard1.6/fr/System.AppContext.xml",
  4731. "ref/netstandard1.6/it/System.AppContext.xml",
  4732. "ref/netstandard1.6/ja/System.AppContext.xml",
  4733. "ref/netstandard1.6/ko/System.AppContext.xml",
  4734. "ref/netstandard1.6/ru/System.AppContext.xml",
  4735. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4736. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4737. "ref/xamarinios10/_._",
  4738. "ref/xamarinmac20/_._",
  4739. "ref/xamarintvos10/_._",
  4740. "ref/xamarinwatchos10/_._",
  4741. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4742. "system.appcontext.4.3.0.nupkg.sha512",
  4743. "system.appcontext.nuspec"
  4744. ]
  4745. },
  4746. "System.Buffers/4.5.1": {
  4747. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4748. "type": "package",
  4749. "path": "system.buffers/4.5.1",
  4750. "files": [
  4751. ".nupkg.metadata",
  4752. ".signature.p7s",
  4753. "LICENSE.TXT",
  4754. "THIRD-PARTY-NOTICES.TXT",
  4755. "lib/net461/System.Buffers.dll",
  4756. "lib/net461/System.Buffers.xml",
  4757. "lib/netcoreapp2.0/_._",
  4758. "lib/netstandard1.1/System.Buffers.dll",
  4759. "lib/netstandard1.1/System.Buffers.xml",
  4760. "lib/netstandard2.0/System.Buffers.dll",
  4761. "lib/netstandard2.0/System.Buffers.xml",
  4762. "lib/uap10.0.16299/_._",
  4763. "ref/net45/System.Buffers.dll",
  4764. "ref/net45/System.Buffers.xml",
  4765. "ref/netcoreapp2.0/_._",
  4766. "ref/netstandard1.1/System.Buffers.dll",
  4767. "ref/netstandard1.1/System.Buffers.xml",
  4768. "ref/netstandard2.0/System.Buffers.dll",
  4769. "ref/netstandard2.0/System.Buffers.xml",
  4770. "ref/uap10.0.16299/_._",
  4771. "system.buffers.4.5.1.nupkg.sha512",
  4772. "system.buffers.nuspec",
  4773. "useSharedDesignerContext.txt",
  4774. "version.txt"
  4775. ]
  4776. },
  4777. "System.Collections/4.3.0": {
  4778. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4779. "type": "package",
  4780. "path": "system.collections/4.3.0",
  4781. "files": [
  4782. ".nupkg.metadata",
  4783. ".signature.p7s",
  4784. "ThirdPartyNotices.txt",
  4785. "dotnet_library_license.txt",
  4786. "lib/MonoAndroid10/_._",
  4787. "lib/MonoTouch10/_._",
  4788. "lib/net45/_._",
  4789. "lib/portable-net45+win8+wp8+wpa81/_._",
  4790. "lib/win8/_._",
  4791. "lib/wp80/_._",
  4792. "lib/wpa81/_._",
  4793. "lib/xamarinios10/_._",
  4794. "lib/xamarinmac20/_._",
  4795. "lib/xamarintvos10/_._",
  4796. "lib/xamarinwatchos10/_._",
  4797. "ref/MonoAndroid10/_._",
  4798. "ref/MonoTouch10/_._",
  4799. "ref/net45/_._",
  4800. "ref/netcore50/System.Collections.dll",
  4801. "ref/netcore50/System.Collections.xml",
  4802. "ref/netcore50/de/System.Collections.xml",
  4803. "ref/netcore50/es/System.Collections.xml",
  4804. "ref/netcore50/fr/System.Collections.xml",
  4805. "ref/netcore50/it/System.Collections.xml",
  4806. "ref/netcore50/ja/System.Collections.xml",
  4807. "ref/netcore50/ko/System.Collections.xml",
  4808. "ref/netcore50/ru/System.Collections.xml",
  4809. "ref/netcore50/zh-hans/System.Collections.xml",
  4810. "ref/netcore50/zh-hant/System.Collections.xml",
  4811. "ref/netstandard1.0/System.Collections.dll",
  4812. "ref/netstandard1.0/System.Collections.xml",
  4813. "ref/netstandard1.0/de/System.Collections.xml",
  4814. "ref/netstandard1.0/es/System.Collections.xml",
  4815. "ref/netstandard1.0/fr/System.Collections.xml",
  4816. "ref/netstandard1.0/it/System.Collections.xml",
  4817. "ref/netstandard1.0/ja/System.Collections.xml",
  4818. "ref/netstandard1.0/ko/System.Collections.xml",
  4819. "ref/netstandard1.0/ru/System.Collections.xml",
  4820. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4821. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4822. "ref/netstandard1.3/System.Collections.dll",
  4823. "ref/netstandard1.3/System.Collections.xml",
  4824. "ref/netstandard1.3/de/System.Collections.xml",
  4825. "ref/netstandard1.3/es/System.Collections.xml",
  4826. "ref/netstandard1.3/fr/System.Collections.xml",
  4827. "ref/netstandard1.3/it/System.Collections.xml",
  4828. "ref/netstandard1.3/ja/System.Collections.xml",
  4829. "ref/netstandard1.3/ko/System.Collections.xml",
  4830. "ref/netstandard1.3/ru/System.Collections.xml",
  4831. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4832. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4833. "ref/portable-net45+win8+wp8+wpa81/_._",
  4834. "ref/win8/_._",
  4835. "ref/wp80/_._",
  4836. "ref/wpa81/_._",
  4837. "ref/xamarinios10/_._",
  4838. "ref/xamarinmac20/_._",
  4839. "ref/xamarintvos10/_._",
  4840. "ref/xamarinwatchos10/_._",
  4841. "system.collections.4.3.0.nupkg.sha512",
  4842. "system.collections.nuspec"
  4843. ]
  4844. },
  4845. "System.Collections.Concurrent/4.3.0": {
  4846. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4847. "type": "package",
  4848. "path": "system.collections.concurrent/4.3.0",
  4849. "files": [
  4850. ".nupkg.metadata",
  4851. ".signature.p7s",
  4852. "ThirdPartyNotices.txt",
  4853. "dotnet_library_license.txt",
  4854. "lib/MonoAndroid10/_._",
  4855. "lib/MonoTouch10/_._",
  4856. "lib/net45/_._",
  4857. "lib/netcore50/System.Collections.Concurrent.dll",
  4858. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4859. "lib/portable-net45+win8+wpa81/_._",
  4860. "lib/win8/_._",
  4861. "lib/wpa81/_._",
  4862. "lib/xamarinios10/_._",
  4863. "lib/xamarinmac20/_._",
  4864. "lib/xamarintvos10/_._",
  4865. "lib/xamarinwatchos10/_._",
  4866. "ref/MonoAndroid10/_._",
  4867. "ref/MonoTouch10/_._",
  4868. "ref/net45/_._",
  4869. "ref/netcore50/System.Collections.Concurrent.dll",
  4870. "ref/netcore50/System.Collections.Concurrent.xml",
  4871. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4872. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4873. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4874. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4875. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4876. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4877. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4878. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4879. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4880. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4881. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4882. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4883. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4884. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4885. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4886. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4887. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4888. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4889. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4890. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4891. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4892. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4893. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4894. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4895. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4896. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4897. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4898. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4899. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4900. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4901. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4902. "ref/portable-net45+win8+wpa81/_._",
  4903. "ref/win8/_._",
  4904. "ref/wpa81/_._",
  4905. "ref/xamarinios10/_._",
  4906. "ref/xamarinmac20/_._",
  4907. "ref/xamarintvos10/_._",
  4908. "ref/xamarinwatchos10/_._",
  4909. "system.collections.concurrent.4.3.0.nupkg.sha512",
  4910. "system.collections.concurrent.nuspec"
  4911. ]
  4912. },
  4913. "System.Configuration.ConfigurationManager/4.7.0": {
  4914. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  4915. "type": "package",
  4916. "path": "system.configuration.configurationmanager/4.7.0",
  4917. "files": [
  4918. ".nupkg.metadata",
  4919. ".signature.p7s",
  4920. "LICENSE.TXT",
  4921. "THIRD-PARTY-NOTICES.TXT",
  4922. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4923. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4924. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4925. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4926. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4927. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4928. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4929. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4930. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  4931. "system.configuration.configurationmanager.nuspec",
  4932. "useSharedDesignerContext.txt",
  4933. "version.txt"
  4934. ]
  4935. },
  4936. "System.Console/4.3.0": {
  4937. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4938. "type": "package",
  4939. "path": "system.console/4.3.0",
  4940. "files": [
  4941. ".nupkg.metadata",
  4942. ".signature.p7s",
  4943. "ThirdPartyNotices.txt",
  4944. "dotnet_library_license.txt",
  4945. "lib/MonoAndroid10/_._",
  4946. "lib/MonoTouch10/_._",
  4947. "lib/net46/System.Console.dll",
  4948. "lib/xamarinios10/_._",
  4949. "lib/xamarinmac20/_._",
  4950. "lib/xamarintvos10/_._",
  4951. "lib/xamarinwatchos10/_._",
  4952. "ref/MonoAndroid10/_._",
  4953. "ref/MonoTouch10/_._",
  4954. "ref/net46/System.Console.dll",
  4955. "ref/netstandard1.3/System.Console.dll",
  4956. "ref/netstandard1.3/System.Console.xml",
  4957. "ref/netstandard1.3/de/System.Console.xml",
  4958. "ref/netstandard1.3/es/System.Console.xml",
  4959. "ref/netstandard1.3/fr/System.Console.xml",
  4960. "ref/netstandard1.3/it/System.Console.xml",
  4961. "ref/netstandard1.3/ja/System.Console.xml",
  4962. "ref/netstandard1.3/ko/System.Console.xml",
  4963. "ref/netstandard1.3/ru/System.Console.xml",
  4964. "ref/netstandard1.3/zh-hans/System.Console.xml",
  4965. "ref/netstandard1.3/zh-hant/System.Console.xml",
  4966. "ref/xamarinios10/_._",
  4967. "ref/xamarinmac20/_._",
  4968. "ref/xamarintvos10/_._",
  4969. "ref/xamarinwatchos10/_._",
  4970. "system.console.4.3.0.nupkg.sha512",
  4971. "system.console.nuspec"
  4972. ]
  4973. },
  4974. "System.Data.Common/4.3.0": {
  4975. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  4976. "type": "package",
  4977. "path": "system.data.common/4.3.0",
  4978. "files": [
  4979. ".nupkg.metadata",
  4980. ".signature.p7s",
  4981. "ThirdPartyNotices.txt",
  4982. "dotnet_library_license.txt",
  4983. "lib/MonoAndroid10/_._",
  4984. "lib/MonoTouch10/_._",
  4985. "lib/net451/System.Data.Common.dll",
  4986. "lib/netstandard1.2/System.Data.Common.dll",
  4987. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  4988. "lib/xamarinios10/_._",
  4989. "lib/xamarinmac20/_._",
  4990. "lib/xamarintvos10/_._",
  4991. "lib/xamarinwatchos10/_._",
  4992. "ref/MonoAndroid10/_._",
  4993. "ref/MonoTouch10/_._",
  4994. "ref/net451/System.Data.Common.dll",
  4995. "ref/netstandard1.2/System.Data.Common.dll",
  4996. "ref/netstandard1.2/System.Data.Common.xml",
  4997. "ref/netstandard1.2/de/System.Data.Common.xml",
  4998. "ref/netstandard1.2/es/System.Data.Common.xml",
  4999. "ref/netstandard1.2/fr/System.Data.Common.xml",
  5000. "ref/netstandard1.2/it/System.Data.Common.xml",
  5001. "ref/netstandard1.2/ja/System.Data.Common.xml",
  5002. "ref/netstandard1.2/ko/System.Data.Common.xml",
  5003. "ref/netstandard1.2/ru/System.Data.Common.xml",
  5004. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  5005. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  5006. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5007. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  5008. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  5009. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  5010. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  5011. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  5012. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  5013. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  5014. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  5015. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  5016. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  5017. "ref/xamarinios10/_._",
  5018. "ref/xamarinmac20/_._",
  5019. "ref/xamarintvos10/_._",
  5020. "ref/xamarinwatchos10/_._",
  5021. "system.data.common.4.3.0.nupkg.sha512",
  5022. "system.data.common.nuspec"
  5023. ]
  5024. },
  5025. "System.Diagnostics.Debug/4.3.0": {
  5026. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5027. "type": "package",
  5028. "path": "system.diagnostics.debug/4.3.0",
  5029. "files": [
  5030. ".nupkg.metadata",
  5031. ".signature.p7s",
  5032. "ThirdPartyNotices.txt",
  5033. "dotnet_library_license.txt",
  5034. "lib/MonoAndroid10/_._",
  5035. "lib/MonoTouch10/_._",
  5036. "lib/net45/_._",
  5037. "lib/portable-net45+win8+wp8+wpa81/_._",
  5038. "lib/win8/_._",
  5039. "lib/wp80/_._",
  5040. "lib/wpa81/_._",
  5041. "lib/xamarinios10/_._",
  5042. "lib/xamarinmac20/_._",
  5043. "lib/xamarintvos10/_._",
  5044. "lib/xamarinwatchos10/_._",
  5045. "ref/MonoAndroid10/_._",
  5046. "ref/MonoTouch10/_._",
  5047. "ref/net45/_._",
  5048. "ref/netcore50/System.Diagnostics.Debug.dll",
  5049. "ref/netcore50/System.Diagnostics.Debug.xml",
  5050. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5051. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5052. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5053. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5054. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5055. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5056. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5057. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5058. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5059. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5060. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5061. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5062. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5063. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5064. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5065. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5066. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5067. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5068. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5069. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5070. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5071. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5072. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5073. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5074. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5075. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5076. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5077. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5078. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5079. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5080. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5081. "ref/portable-net45+win8+wp8+wpa81/_._",
  5082. "ref/win8/_._",
  5083. "ref/wp80/_._",
  5084. "ref/wpa81/_._",
  5085. "ref/xamarinios10/_._",
  5086. "ref/xamarinmac20/_._",
  5087. "ref/xamarintvos10/_._",
  5088. "ref/xamarinwatchos10/_._",
  5089. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5090. "system.diagnostics.debug.nuspec"
  5091. ]
  5092. },
  5093. "System.Diagnostics.DiagnosticSource/6.0.0": {
  5094. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  5095. "type": "package",
  5096. "path": "system.diagnostics.diagnosticsource/6.0.0",
  5097. "files": [
  5098. ".nupkg.metadata",
  5099. ".signature.p7s",
  5100. "Icon.png",
  5101. "LICENSE.TXT",
  5102. "THIRD-PARTY-NOTICES.TXT",
  5103. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  5104. "buildTransitive/netcoreapp3.1/_._",
  5105. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  5106. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  5107. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  5108. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  5109. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  5110. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  5111. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  5112. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  5113. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  5114. "system.diagnostics.diagnosticsource.nuspec",
  5115. "useSharedDesignerContext.txt"
  5116. ]
  5117. },
  5118. "System.Diagnostics.PerformanceCounter/4.7.0": {
  5119. "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==",
  5120. "type": "package",
  5121. "path": "system.diagnostics.performancecounter/4.7.0",
  5122. "files": [
  5123. ".nupkg.metadata",
  5124. ".signature.p7s",
  5125. "LICENSE.TXT",
  5126. "THIRD-PARTY-NOTICES.TXT",
  5127. "lib/MonoAndroid10/_._",
  5128. "lib/MonoTouch10/_._",
  5129. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  5130. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  5131. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  5132. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  5133. "lib/xamarinios10/_._",
  5134. "lib/xamarinmac20/_._",
  5135. "lib/xamarintvos10/_._",
  5136. "lib/xamarinwatchos10/_._",
  5137. "ref/MonoAndroid10/_._",
  5138. "ref/MonoTouch10/_._",
  5139. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  5140. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  5141. "ref/net472/System.Diagnostics.PerformanceCounter.dll",
  5142. "ref/net472/System.Diagnostics.PerformanceCounter.xml",
  5143. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  5144. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  5145. "ref/xamarinios10/_._",
  5146. "ref/xamarinmac20/_._",
  5147. "ref/xamarintvos10/_._",
  5148. "ref/xamarinwatchos10/_._",
  5149. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  5150. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  5151. "system.diagnostics.performancecounter.4.7.0.nupkg.sha512",
  5152. "system.diagnostics.performancecounter.nuspec",
  5153. "useSharedDesignerContext.txt",
  5154. "version.txt"
  5155. ]
  5156. },
  5157. "System.Diagnostics.Tools/4.3.0": {
  5158. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5159. "type": "package",
  5160. "path": "system.diagnostics.tools/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/portable-net45+win8+wp8+wpa81/_._",
  5170. "lib/win8/_._",
  5171. "lib/wp80/_._",
  5172. "lib/wpa81/_._",
  5173. "lib/xamarinios10/_._",
  5174. "lib/xamarinmac20/_._",
  5175. "lib/xamarintvos10/_._",
  5176. "lib/xamarinwatchos10/_._",
  5177. "ref/MonoAndroid10/_._",
  5178. "ref/MonoTouch10/_._",
  5179. "ref/net45/_._",
  5180. "ref/netcore50/System.Diagnostics.Tools.dll",
  5181. "ref/netcore50/System.Diagnostics.Tools.xml",
  5182. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5183. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5184. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5185. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5186. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5187. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5188. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5189. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5190. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5191. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5192. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5193. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5194. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5195. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5196. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5197. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5198. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5199. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5200. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5201. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5202. "ref/portable-net45+win8+wp8+wpa81/_._",
  5203. "ref/win8/_._",
  5204. "ref/wp80/_._",
  5205. "ref/wpa81/_._",
  5206. "ref/xamarinios10/_._",
  5207. "ref/xamarinmac20/_._",
  5208. "ref/xamarintvos10/_._",
  5209. "ref/xamarinwatchos10/_._",
  5210. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5211. "system.diagnostics.tools.nuspec"
  5212. ]
  5213. },
  5214. "System.Diagnostics.Tracing/4.3.0": {
  5215. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5216. "type": "package",
  5217. "path": "system.diagnostics.tracing/4.3.0",
  5218. "files": [
  5219. ".nupkg.metadata",
  5220. ".signature.p7s",
  5221. "ThirdPartyNotices.txt",
  5222. "dotnet_library_license.txt",
  5223. "lib/MonoAndroid10/_._",
  5224. "lib/MonoTouch10/_._",
  5225. "lib/net45/_._",
  5226. "lib/net462/System.Diagnostics.Tracing.dll",
  5227. "lib/portable-net45+win8+wpa81/_._",
  5228. "lib/win8/_._",
  5229. "lib/wpa81/_._",
  5230. "lib/xamarinios10/_._",
  5231. "lib/xamarinmac20/_._",
  5232. "lib/xamarintvos10/_._",
  5233. "lib/xamarinwatchos10/_._",
  5234. "ref/MonoAndroid10/_._",
  5235. "ref/MonoTouch10/_._",
  5236. "ref/net45/_._",
  5237. "ref/net462/System.Diagnostics.Tracing.dll",
  5238. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5239. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5240. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5241. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5242. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5243. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5244. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5245. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5246. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5247. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5248. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5249. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5250. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5251. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5252. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5253. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5254. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5255. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5256. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5257. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5258. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5259. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5260. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5261. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5262. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5263. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5264. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5265. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5266. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5267. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5268. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5269. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5270. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5271. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5272. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5273. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5274. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5275. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5276. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5277. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5278. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5279. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5280. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5281. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5282. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5283. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5284. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5285. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5286. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5287. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5288. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5289. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5290. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5291. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5292. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5293. "ref/portable-net45+win8+wpa81/_._",
  5294. "ref/win8/_._",
  5295. "ref/wpa81/_._",
  5296. "ref/xamarinios10/_._",
  5297. "ref/xamarinmac20/_._",
  5298. "ref/xamarintvos10/_._",
  5299. "ref/xamarinwatchos10/_._",
  5300. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5301. "system.diagnostics.tracing.nuspec"
  5302. ]
  5303. },
  5304. "System.DirectoryServices/4.7.0": {
  5305. "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
  5306. "type": "package",
  5307. "path": "system.directoryservices/4.7.0",
  5308. "files": [
  5309. ".nupkg.metadata",
  5310. ".signature.p7s",
  5311. "LICENSE.TXT",
  5312. "THIRD-PARTY-NOTICES.TXT",
  5313. "lib/net45/_._",
  5314. "lib/netstandard2.0/System.DirectoryServices.dll",
  5315. "lib/netstandard2.0/System.DirectoryServices.xml",
  5316. "ref/net45/_._",
  5317. "ref/netstandard2.0/System.DirectoryServices.dll",
  5318. "ref/netstandard2.0/System.DirectoryServices.xml",
  5319. "runtimes/win/lib/net45/_._",
  5320. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll",
  5321. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml",
  5322. "system.directoryservices.4.7.0.nupkg.sha512",
  5323. "system.directoryservices.nuspec",
  5324. "useSharedDesignerContext.txt",
  5325. "version.txt"
  5326. ]
  5327. },
  5328. "System.DirectoryServices.Protocols/4.7.0": {
  5329. "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==",
  5330. "type": "package",
  5331. "path": "system.directoryservices.protocols/4.7.0",
  5332. "files": [
  5333. ".nupkg.metadata",
  5334. ".signature.p7s",
  5335. "LICENSE.TXT",
  5336. "THIRD-PARTY-NOTICES.TXT",
  5337. "lib/net45/_._",
  5338. "lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
  5339. "lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
  5340. "ref/net45/_._",
  5341. "ref/netstandard2.0/System.DirectoryServices.Protocols.dll",
  5342. "ref/netstandard2.0/System.DirectoryServices.Protocols.xml",
  5343. "runtimes/win/lib/net45/_._",
  5344. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll",
  5345. "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml",
  5346. "system.directoryservices.protocols.4.7.0.nupkg.sha512",
  5347. "system.directoryservices.protocols.nuspec",
  5348. "useSharedDesignerContext.txt",
  5349. "version.txt"
  5350. ]
  5351. },
  5352. "System.Drawing.Common/4.7.0": {
  5353. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  5354. "type": "package",
  5355. "path": "system.drawing.common/4.7.0",
  5356. "files": [
  5357. ".nupkg.metadata",
  5358. ".signature.p7s",
  5359. "LICENSE.TXT",
  5360. "THIRD-PARTY-NOTICES.TXT",
  5361. "lib/MonoAndroid10/_._",
  5362. "lib/MonoTouch10/_._",
  5363. "lib/net461/System.Drawing.Common.dll",
  5364. "lib/netstandard2.0/System.Drawing.Common.dll",
  5365. "lib/xamarinios10/_._",
  5366. "lib/xamarinmac20/_._",
  5367. "lib/xamarintvos10/_._",
  5368. "lib/xamarinwatchos10/_._",
  5369. "ref/MonoAndroid10/_._",
  5370. "ref/MonoTouch10/_._",
  5371. "ref/net461/System.Drawing.Common.dll",
  5372. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  5373. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  5374. "ref/netstandard2.0/System.Drawing.Common.dll",
  5375. "ref/xamarinios10/_._",
  5376. "ref/xamarinmac20/_._",
  5377. "ref/xamarintvos10/_._",
  5378. "ref/xamarinwatchos10/_._",
  5379. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5380. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5381. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5382. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  5383. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  5384. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  5385. "system.drawing.common.4.7.0.nupkg.sha512",
  5386. "system.drawing.common.nuspec",
  5387. "useSharedDesignerContext.txt",
  5388. "version.txt"
  5389. ]
  5390. },
  5391. "System.Globalization/4.3.0": {
  5392. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5393. "type": "package",
  5394. "path": "system.globalization/4.3.0",
  5395. "files": [
  5396. ".nupkg.metadata",
  5397. ".signature.p7s",
  5398. "ThirdPartyNotices.txt",
  5399. "dotnet_library_license.txt",
  5400. "lib/MonoAndroid10/_._",
  5401. "lib/MonoTouch10/_._",
  5402. "lib/net45/_._",
  5403. "lib/portable-net45+win8+wp8+wpa81/_._",
  5404. "lib/win8/_._",
  5405. "lib/wp80/_._",
  5406. "lib/wpa81/_._",
  5407. "lib/xamarinios10/_._",
  5408. "lib/xamarinmac20/_._",
  5409. "lib/xamarintvos10/_._",
  5410. "lib/xamarinwatchos10/_._",
  5411. "ref/MonoAndroid10/_._",
  5412. "ref/MonoTouch10/_._",
  5413. "ref/net45/_._",
  5414. "ref/netcore50/System.Globalization.dll",
  5415. "ref/netcore50/System.Globalization.xml",
  5416. "ref/netcore50/de/System.Globalization.xml",
  5417. "ref/netcore50/es/System.Globalization.xml",
  5418. "ref/netcore50/fr/System.Globalization.xml",
  5419. "ref/netcore50/it/System.Globalization.xml",
  5420. "ref/netcore50/ja/System.Globalization.xml",
  5421. "ref/netcore50/ko/System.Globalization.xml",
  5422. "ref/netcore50/ru/System.Globalization.xml",
  5423. "ref/netcore50/zh-hans/System.Globalization.xml",
  5424. "ref/netcore50/zh-hant/System.Globalization.xml",
  5425. "ref/netstandard1.0/System.Globalization.dll",
  5426. "ref/netstandard1.0/System.Globalization.xml",
  5427. "ref/netstandard1.0/de/System.Globalization.xml",
  5428. "ref/netstandard1.0/es/System.Globalization.xml",
  5429. "ref/netstandard1.0/fr/System.Globalization.xml",
  5430. "ref/netstandard1.0/it/System.Globalization.xml",
  5431. "ref/netstandard1.0/ja/System.Globalization.xml",
  5432. "ref/netstandard1.0/ko/System.Globalization.xml",
  5433. "ref/netstandard1.0/ru/System.Globalization.xml",
  5434. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5435. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5436. "ref/netstandard1.3/System.Globalization.dll",
  5437. "ref/netstandard1.3/System.Globalization.xml",
  5438. "ref/netstandard1.3/de/System.Globalization.xml",
  5439. "ref/netstandard1.3/es/System.Globalization.xml",
  5440. "ref/netstandard1.3/fr/System.Globalization.xml",
  5441. "ref/netstandard1.3/it/System.Globalization.xml",
  5442. "ref/netstandard1.3/ja/System.Globalization.xml",
  5443. "ref/netstandard1.3/ko/System.Globalization.xml",
  5444. "ref/netstandard1.3/ru/System.Globalization.xml",
  5445. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5446. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5447. "ref/portable-net45+win8+wp8+wpa81/_._",
  5448. "ref/win8/_._",
  5449. "ref/wp80/_._",
  5450. "ref/wpa81/_._",
  5451. "ref/xamarinios10/_._",
  5452. "ref/xamarinmac20/_._",
  5453. "ref/xamarintvos10/_._",
  5454. "ref/xamarinwatchos10/_._",
  5455. "system.globalization.4.3.0.nupkg.sha512",
  5456. "system.globalization.nuspec"
  5457. ]
  5458. },
  5459. "System.Globalization.Calendars/4.3.0": {
  5460. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5461. "type": "package",
  5462. "path": "system.globalization.calendars/4.3.0",
  5463. "files": [
  5464. ".nupkg.metadata",
  5465. ".signature.p7s",
  5466. "ThirdPartyNotices.txt",
  5467. "dotnet_library_license.txt",
  5468. "lib/MonoAndroid10/_._",
  5469. "lib/MonoTouch10/_._",
  5470. "lib/net46/System.Globalization.Calendars.dll",
  5471. "lib/xamarinios10/_._",
  5472. "lib/xamarinmac20/_._",
  5473. "lib/xamarintvos10/_._",
  5474. "lib/xamarinwatchos10/_._",
  5475. "ref/MonoAndroid10/_._",
  5476. "ref/MonoTouch10/_._",
  5477. "ref/net46/System.Globalization.Calendars.dll",
  5478. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5479. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5480. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5481. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5482. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5483. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5484. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5485. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5486. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5487. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5488. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5489. "ref/xamarinios10/_._",
  5490. "ref/xamarinmac20/_._",
  5491. "ref/xamarintvos10/_._",
  5492. "ref/xamarinwatchos10/_._",
  5493. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5494. "system.globalization.calendars.nuspec"
  5495. ]
  5496. },
  5497. "System.Globalization.Extensions/4.3.0": {
  5498. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5499. "type": "package",
  5500. "path": "system.globalization.extensions/4.3.0",
  5501. "files": [
  5502. ".nupkg.metadata",
  5503. ".signature.p7s",
  5504. "ThirdPartyNotices.txt",
  5505. "dotnet_library_license.txt",
  5506. "lib/MonoAndroid10/_._",
  5507. "lib/MonoTouch10/_._",
  5508. "lib/net46/System.Globalization.Extensions.dll",
  5509. "lib/xamarinios10/_._",
  5510. "lib/xamarinmac20/_._",
  5511. "lib/xamarintvos10/_._",
  5512. "lib/xamarinwatchos10/_._",
  5513. "ref/MonoAndroid10/_._",
  5514. "ref/MonoTouch10/_._",
  5515. "ref/net46/System.Globalization.Extensions.dll",
  5516. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5517. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5518. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5519. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5520. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5521. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5522. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5523. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5524. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5525. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5526. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5527. "ref/xamarinios10/_._",
  5528. "ref/xamarinmac20/_._",
  5529. "ref/xamarintvos10/_._",
  5530. "ref/xamarinwatchos10/_._",
  5531. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5532. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5533. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5534. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5535. "system.globalization.extensions.nuspec"
  5536. ]
  5537. },
  5538. "System.IdentityModel.Tokens.Jwt/6.10.0": {
  5539. "sha512": "C+Q5ORsFycRkRuvy/Xd0Pv5xVpmWSAvQYZAGs7VQogmkqlLhvfZXTgBIlHqC3cxkstSoLJAYx6xZB7foQ2y5eg==",
  5540. "type": "package",
  5541. "path": "system.identitymodel.tokens.jwt/6.10.0",
  5542. "files": [
  5543. ".nupkg.metadata",
  5544. ".signature.p7s",
  5545. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  5546. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  5547. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  5548. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  5549. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  5550. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  5551. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  5552. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  5553. "system.identitymodel.tokens.jwt.6.10.0.nupkg.sha512",
  5554. "system.identitymodel.tokens.jwt.nuspec"
  5555. ]
  5556. },
  5557. "System.IO/4.3.0": {
  5558. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5559. "type": "package",
  5560. "path": "system.io/4.3.0",
  5561. "files": [
  5562. ".nupkg.metadata",
  5563. ".signature.p7s",
  5564. "ThirdPartyNotices.txt",
  5565. "dotnet_library_license.txt",
  5566. "lib/MonoAndroid10/_._",
  5567. "lib/MonoTouch10/_._",
  5568. "lib/net45/_._",
  5569. "lib/net462/System.IO.dll",
  5570. "lib/portable-net45+win8+wp8+wpa81/_._",
  5571. "lib/win8/_._",
  5572. "lib/wp80/_._",
  5573. "lib/wpa81/_._",
  5574. "lib/xamarinios10/_._",
  5575. "lib/xamarinmac20/_._",
  5576. "lib/xamarintvos10/_._",
  5577. "lib/xamarinwatchos10/_._",
  5578. "ref/MonoAndroid10/_._",
  5579. "ref/MonoTouch10/_._",
  5580. "ref/net45/_._",
  5581. "ref/net462/System.IO.dll",
  5582. "ref/netcore50/System.IO.dll",
  5583. "ref/netcore50/System.IO.xml",
  5584. "ref/netcore50/de/System.IO.xml",
  5585. "ref/netcore50/es/System.IO.xml",
  5586. "ref/netcore50/fr/System.IO.xml",
  5587. "ref/netcore50/it/System.IO.xml",
  5588. "ref/netcore50/ja/System.IO.xml",
  5589. "ref/netcore50/ko/System.IO.xml",
  5590. "ref/netcore50/ru/System.IO.xml",
  5591. "ref/netcore50/zh-hans/System.IO.xml",
  5592. "ref/netcore50/zh-hant/System.IO.xml",
  5593. "ref/netstandard1.0/System.IO.dll",
  5594. "ref/netstandard1.0/System.IO.xml",
  5595. "ref/netstandard1.0/de/System.IO.xml",
  5596. "ref/netstandard1.0/es/System.IO.xml",
  5597. "ref/netstandard1.0/fr/System.IO.xml",
  5598. "ref/netstandard1.0/it/System.IO.xml",
  5599. "ref/netstandard1.0/ja/System.IO.xml",
  5600. "ref/netstandard1.0/ko/System.IO.xml",
  5601. "ref/netstandard1.0/ru/System.IO.xml",
  5602. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5603. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5604. "ref/netstandard1.3/System.IO.dll",
  5605. "ref/netstandard1.3/System.IO.xml",
  5606. "ref/netstandard1.3/de/System.IO.xml",
  5607. "ref/netstandard1.3/es/System.IO.xml",
  5608. "ref/netstandard1.3/fr/System.IO.xml",
  5609. "ref/netstandard1.3/it/System.IO.xml",
  5610. "ref/netstandard1.3/ja/System.IO.xml",
  5611. "ref/netstandard1.3/ko/System.IO.xml",
  5612. "ref/netstandard1.3/ru/System.IO.xml",
  5613. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5614. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5615. "ref/netstandard1.5/System.IO.dll",
  5616. "ref/netstandard1.5/System.IO.xml",
  5617. "ref/netstandard1.5/de/System.IO.xml",
  5618. "ref/netstandard1.5/es/System.IO.xml",
  5619. "ref/netstandard1.5/fr/System.IO.xml",
  5620. "ref/netstandard1.5/it/System.IO.xml",
  5621. "ref/netstandard1.5/ja/System.IO.xml",
  5622. "ref/netstandard1.5/ko/System.IO.xml",
  5623. "ref/netstandard1.5/ru/System.IO.xml",
  5624. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5625. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5626. "ref/portable-net45+win8+wp8+wpa81/_._",
  5627. "ref/win8/_._",
  5628. "ref/wp80/_._",
  5629. "ref/wpa81/_._",
  5630. "ref/xamarinios10/_._",
  5631. "ref/xamarinmac20/_._",
  5632. "ref/xamarintvos10/_._",
  5633. "ref/xamarinwatchos10/_._",
  5634. "system.io.4.3.0.nupkg.sha512",
  5635. "system.io.nuspec"
  5636. ]
  5637. },
  5638. "System.IO.Compression/4.3.0": {
  5639. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  5640. "type": "package",
  5641. "path": "system.io.compression/4.3.0",
  5642. "files": [
  5643. ".nupkg.metadata",
  5644. ".signature.p7s",
  5645. "ThirdPartyNotices.txt",
  5646. "dotnet_library_license.txt",
  5647. "lib/MonoAndroid10/_._",
  5648. "lib/MonoTouch10/_._",
  5649. "lib/net45/_._",
  5650. "lib/net46/System.IO.Compression.dll",
  5651. "lib/portable-net45+win8+wpa81/_._",
  5652. "lib/win8/_._",
  5653. "lib/wpa81/_._",
  5654. "lib/xamarinios10/_._",
  5655. "lib/xamarinmac20/_._",
  5656. "lib/xamarintvos10/_._",
  5657. "lib/xamarinwatchos10/_._",
  5658. "ref/MonoAndroid10/_._",
  5659. "ref/MonoTouch10/_._",
  5660. "ref/net45/_._",
  5661. "ref/net46/System.IO.Compression.dll",
  5662. "ref/netcore50/System.IO.Compression.dll",
  5663. "ref/netcore50/System.IO.Compression.xml",
  5664. "ref/netcore50/de/System.IO.Compression.xml",
  5665. "ref/netcore50/es/System.IO.Compression.xml",
  5666. "ref/netcore50/fr/System.IO.Compression.xml",
  5667. "ref/netcore50/it/System.IO.Compression.xml",
  5668. "ref/netcore50/ja/System.IO.Compression.xml",
  5669. "ref/netcore50/ko/System.IO.Compression.xml",
  5670. "ref/netcore50/ru/System.IO.Compression.xml",
  5671. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5672. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5673. "ref/netstandard1.1/System.IO.Compression.dll",
  5674. "ref/netstandard1.1/System.IO.Compression.xml",
  5675. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5676. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5677. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5678. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5679. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5680. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5681. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5682. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5683. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5684. "ref/netstandard1.3/System.IO.Compression.dll",
  5685. "ref/netstandard1.3/System.IO.Compression.xml",
  5686. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5687. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5688. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5689. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5690. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5691. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5692. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5693. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5694. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5695. "ref/portable-net45+win8+wpa81/_._",
  5696. "ref/win8/_._",
  5697. "ref/wpa81/_._",
  5698. "ref/xamarinios10/_._",
  5699. "ref/xamarinmac20/_._",
  5700. "ref/xamarintvos10/_._",
  5701. "ref/xamarinwatchos10/_._",
  5702. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5703. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5704. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5705. "system.io.compression.4.3.0.nupkg.sha512",
  5706. "system.io.compression.nuspec"
  5707. ]
  5708. },
  5709. "System.IO.Compression.ZipFile/4.3.0": {
  5710. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  5711. "type": "package",
  5712. "path": "system.io.compression.zipfile/4.3.0",
  5713. "files": [
  5714. ".nupkg.metadata",
  5715. ".signature.p7s",
  5716. "ThirdPartyNotices.txt",
  5717. "dotnet_library_license.txt",
  5718. "lib/MonoAndroid10/_._",
  5719. "lib/MonoTouch10/_._",
  5720. "lib/net46/System.IO.Compression.ZipFile.dll",
  5721. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5722. "lib/xamarinios10/_._",
  5723. "lib/xamarinmac20/_._",
  5724. "lib/xamarintvos10/_._",
  5725. "lib/xamarinwatchos10/_._",
  5726. "ref/MonoAndroid10/_._",
  5727. "ref/MonoTouch10/_._",
  5728. "ref/net46/System.IO.Compression.ZipFile.dll",
  5729. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5730. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5731. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5732. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5733. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5734. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5735. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5736. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5737. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5738. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5739. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5740. "ref/xamarinios10/_._",
  5741. "ref/xamarinmac20/_._",
  5742. "ref/xamarintvos10/_._",
  5743. "ref/xamarinwatchos10/_._",
  5744. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  5745. "system.io.compression.zipfile.nuspec"
  5746. ]
  5747. },
  5748. "System.IO.FileSystem/4.3.0": {
  5749. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5750. "type": "package",
  5751. "path": "system.io.filesystem/4.3.0",
  5752. "files": [
  5753. ".nupkg.metadata",
  5754. ".signature.p7s",
  5755. "ThirdPartyNotices.txt",
  5756. "dotnet_library_license.txt",
  5757. "lib/MonoAndroid10/_._",
  5758. "lib/MonoTouch10/_._",
  5759. "lib/net46/System.IO.FileSystem.dll",
  5760. "lib/xamarinios10/_._",
  5761. "lib/xamarinmac20/_._",
  5762. "lib/xamarintvos10/_._",
  5763. "lib/xamarinwatchos10/_._",
  5764. "ref/MonoAndroid10/_._",
  5765. "ref/MonoTouch10/_._",
  5766. "ref/net46/System.IO.FileSystem.dll",
  5767. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5768. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5769. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5770. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5771. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5772. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5773. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5774. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5775. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5776. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5777. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5778. "ref/xamarinios10/_._",
  5779. "ref/xamarinmac20/_._",
  5780. "ref/xamarintvos10/_._",
  5781. "ref/xamarinwatchos10/_._",
  5782. "system.io.filesystem.4.3.0.nupkg.sha512",
  5783. "system.io.filesystem.nuspec"
  5784. ]
  5785. },
  5786. "System.IO.FileSystem.AccessControl/4.7.0": {
  5787. "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
  5788. "type": "package",
  5789. "path": "system.io.filesystem.accesscontrol/4.7.0",
  5790. "files": [
  5791. ".nupkg.metadata",
  5792. ".signature.p7s",
  5793. "LICENSE.TXT",
  5794. "THIRD-PARTY-NOTICES.TXT",
  5795. "lib/net46/System.IO.FileSystem.AccessControl.dll",
  5796. "lib/net461/System.IO.FileSystem.AccessControl.dll",
  5797. "lib/net461/System.IO.FileSystem.AccessControl.xml",
  5798. "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5799. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5800. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5801. "ref/net46/System.IO.FileSystem.AccessControl.dll",
  5802. "ref/net461/System.IO.FileSystem.AccessControl.dll",
  5803. "ref/net461/System.IO.FileSystem.AccessControl.xml",
  5804. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5805. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
  5806. "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
  5807. "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
  5808. "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
  5809. "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
  5810. "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
  5811. "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
  5812. "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
  5813. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
  5814. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
  5815. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5816. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5817. "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
  5818. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
  5819. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
  5820. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  5821. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  5822. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  5823. "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512",
  5824. "system.io.filesystem.accesscontrol.nuspec",
  5825. "useSharedDesignerContext.txt",
  5826. "version.txt"
  5827. ]
  5828. },
  5829. "System.IO.FileSystem.Primitives/4.3.0": {
  5830. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5831. "type": "package",
  5832. "path": "system.io.filesystem.primitives/4.3.0",
  5833. "files": [
  5834. ".nupkg.metadata",
  5835. ".signature.p7s",
  5836. "ThirdPartyNotices.txt",
  5837. "dotnet_library_license.txt",
  5838. "lib/MonoAndroid10/_._",
  5839. "lib/MonoTouch10/_._",
  5840. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5841. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5842. "lib/xamarinios10/_._",
  5843. "lib/xamarinmac20/_._",
  5844. "lib/xamarintvos10/_._",
  5845. "lib/xamarinwatchos10/_._",
  5846. "ref/MonoAndroid10/_._",
  5847. "ref/MonoTouch10/_._",
  5848. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5849. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5850. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5851. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5852. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5853. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5854. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5855. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5856. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5857. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5858. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5859. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5860. "ref/xamarinios10/_._",
  5861. "ref/xamarinmac20/_._",
  5862. "ref/xamarintvos10/_._",
  5863. "ref/xamarinwatchos10/_._",
  5864. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5865. "system.io.filesystem.primitives.nuspec"
  5866. ]
  5867. },
  5868. "System.IO.Pipelines/5.0.1": {
  5869. "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==",
  5870. "type": "package",
  5871. "path": "system.io.pipelines/5.0.1",
  5872. "files": [
  5873. ".nupkg.metadata",
  5874. ".signature.p7s",
  5875. "Icon.png",
  5876. "LICENSE.TXT",
  5877. "THIRD-PARTY-NOTICES.TXT",
  5878. "lib/net461/System.IO.Pipelines.dll",
  5879. "lib/net461/System.IO.Pipelines.xml",
  5880. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  5881. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  5882. "lib/netstandard1.3/System.IO.Pipelines.dll",
  5883. "lib/netstandard1.3/System.IO.Pipelines.xml",
  5884. "lib/netstandard2.0/System.IO.Pipelines.dll",
  5885. "lib/netstandard2.0/System.IO.Pipelines.xml",
  5886. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  5887. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  5888. "system.io.pipelines.5.0.1.nupkg.sha512",
  5889. "system.io.pipelines.nuspec",
  5890. "useSharedDesignerContext.txt",
  5891. "version.txt"
  5892. ]
  5893. },
  5894. "System.Linq/4.3.0": {
  5895. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5896. "type": "package",
  5897. "path": "system.linq/4.3.0",
  5898. "files": [
  5899. ".nupkg.metadata",
  5900. ".signature.p7s",
  5901. "ThirdPartyNotices.txt",
  5902. "dotnet_library_license.txt",
  5903. "lib/MonoAndroid10/_._",
  5904. "lib/MonoTouch10/_._",
  5905. "lib/net45/_._",
  5906. "lib/net463/System.Linq.dll",
  5907. "lib/netcore50/System.Linq.dll",
  5908. "lib/netstandard1.6/System.Linq.dll",
  5909. "lib/portable-net45+win8+wp8+wpa81/_._",
  5910. "lib/win8/_._",
  5911. "lib/wp80/_._",
  5912. "lib/wpa81/_._",
  5913. "lib/xamarinios10/_._",
  5914. "lib/xamarinmac20/_._",
  5915. "lib/xamarintvos10/_._",
  5916. "lib/xamarinwatchos10/_._",
  5917. "ref/MonoAndroid10/_._",
  5918. "ref/MonoTouch10/_._",
  5919. "ref/net45/_._",
  5920. "ref/net463/System.Linq.dll",
  5921. "ref/netcore50/System.Linq.dll",
  5922. "ref/netcore50/System.Linq.xml",
  5923. "ref/netcore50/de/System.Linq.xml",
  5924. "ref/netcore50/es/System.Linq.xml",
  5925. "ref/netcore50/fr/System.Linq.xml",
  5926. "ref/netcore50/it/System.Linq.xml",
  5927. "ref/netcore50/ja/System.Linq.xml",
  5928. "ref/netcore50/ko/System.Linq.xml",
  5929. "ref/netcore50/ru/System.Linq.xml",
  5930. "ref/netcore50/zh-hans/System.Linq.xml",
  5931. "ref/netcore50/zh-hant/System.Linq.xml",
  5932. "ref/netstandard1.0/System.Linq.dll",
  5933. "ref/netstandard1.0/System.Linq.xml",
  5934. "ref/netstandard1.0/de/System.Linq.xml",
  5935. "ref/netstandard1.0/es/System.Linq.xml",
  5936. "ref/netstandard1.0/fr/System.Linq.xml",
  5937. "ref/netstandard1.0/it/System.Linq.xml",
  5938. "ref/netstandard1.0/ja/System.Linq.xml",
  5939. "ref/netstandard1.0/ko/System.Linq.xml",
  5940. "ref/netstandard1.0/ru/System.Linq.xml",
  5941. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5942. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5943. "ref/netstandard1.6/System.Linq.dll",
  5944. "ref/netstandard1.6/System.Linq.xml",
  5945. "ref/netstandard1.6/de/System.Linq.xml",
  5946. "ref/netstandard1.6/es/System.Linq.xml",
  5947. "ref/netstandard1.6/fr/System.Linq.xml",
  5948. "ref/netstandard1.6/it/System.Linq.xml",
  5949. "ref/netstandard1.6/ja/System.Linq.xml",
  5950. "ref/netstandard1.6/ko/System.Linq.xml",
  5951. "ref/netstandard1.6/ru/System.Linq.xml",
  5952. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5953. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5954. "ref/portable-net45+win8+wp8+wpa81/_._",
  5955. "ref/win8/_._",
  5956. "ref/wp80/_._",
  5957. "ref/wpa81/_._",
  5958. "ref/xamarinios10/_._",
  5959. "ref/xamarinmac20/_._",
  5960. "ref/xamarintvos10/_._",
  5961. "ref/xamarinwatchos10/_._",
  5962. "system.linq.4.3.0.nupkg.sha512",
  5963. "system.linq.nuspec"
  5964. ]
  5965. },
  5966. "System.Linq.Expressions/4.3.0": {
  5967. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5968. "type": "package",
  5969. "path": "system.linq.expressions/4.3.0",
  5970. "files": [
  5971. ".nupkg.metadata",
  5972. ".signature.p7s",
  5973. "ThirdPartyNotices.txt",
  5974. "dotnet_library_license.txt",
  5975. "lib/MonoAndroid10/_._",
  5976. "lib/MonoTouch10/_._",
  5977. "lib/net45/_._",
  5978. "lib/net463/System.Linq.Expressions.dll",
  5979. "lib/netcore50/System.Linq.Expressions.dll",
  5980. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5981. "lib/portable-net45+win8+wp8+wpa81/_._",
  5982. "lib/win8/_._",
  5983. "lib/wp80/_._",
  5984. "lib/wpa81/_._",
  5985. "lib/xamarinios10/_._",
  5986. "lib/xamarinmac20/_._",
  5987. "lib/xamarintvos10/_._",
  5988. "lib/xamarinwatchos10/_._",
  5989. "ref/MonoAndroid10/_._",
  5990. "ref/MonoTouch10/_._",
  5991. "ref/net45/_._",
  5992. "ref/net463/System.Linq.Expressions.dll",
  5993. "ref/netcore50/System.Linq.Expressions.dll",
  5994. "ref/netcore50/System.Linq.Expressions.xml",
  5995. "ref/netcore50/de/System.Linq.Expressions.xml",
  5996. "ref/netcore50/es/System.Linq.Expressions.xml",
  5997. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5998. "ref/netcore50/it/System.Linq.Expressions.xml",
  5999. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6000. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6001. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6002. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6003. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6004. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6005. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6006. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6007. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6008. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6009. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6010. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6011. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6012. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6013. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6014. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6015. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6016. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6017. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6018. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6019. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6020. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6021. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6022. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6023. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6024. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6025. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6026. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6027. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6028. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6029. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6030. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6031. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6032. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6033. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6034. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6035. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6036. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6037. "ref/portable-net45+win8+wp8+wpa81/_._",
  6038. "ref/win8/_._",
  6039. "ref/wp80/_._",
  6040. "ref/wpa81/_._",
  6041. "ref/xamarinios10/_._",
  6042. "ref/xamarinmac20/_._",
  6043. "ref/xamarintvos10/_._",
  6044. "ref/xamarinwatchos10/_._",
  6045. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6046. "system.linq.expressions.4.3.0.nupkg.sha512",
  6047. "system.linq.expressions.nuspec"
  6048. ]
  6049. },
  6050. "System.Memory/4.5.4": {
  6051. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  6052. "type": "package",
  6053. "path": "system.memory/4.5.4",
  6054. "files": [
  6055. ".nupkg.metadata",
  6056. ".signature.p7s",
  6057. "LICENSE.TXT",
  6058. "THIRD-PARTY-NOTICES.TXT",
  6059. "lib/net461/System.Memory.dll",
  6060. "lib/net461/System.Memory.xml",
  6061. "lib/netcoreapp2.1/_._",
  6062. "lib/netstandard1.1/System.Memory.dll",
  6063. "lib/netstandard1.1/System.Memory.xml",
  6064. "lib/netstandard2.0/System.Memory.dll",
  6065. "lib/netstandard2.0/System.Memory.xml",
  6066. "ref/netcoreapp2.1/_._",
  6067. "system.memory.4.5.4.nupkg.sha512",
  6068. "system.memory.nuspec",
  6069. "useSharedDesignerContext.txt",
  6070. "version.txt"
  6071. ]
  6072. },
  6073. "System.Net.Http/4.3.0": {
  6074. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6075. "type": "package",
  6076. "path": "system.net.http/4.3.0",
  6077. "files": [
  6078. ".nupkg.metadata",
  6079. ".signature.p7s",
  6080. "ThirdPartyNotices.txt",
  6081. "dotnet_library_license.txt",
  6082. "lib/Xamarinmac20/_._",
  6083. "lib/monoandroid10/_._",
  6084. "lib/monotouch10/_._",
  6085. "lib/net45/_._",
  6086. "lib/net46/System.Net.Http.dll",
  6087. "lib/portable-net45+win8+wpa81/_._",
  6088. "lib/win8/_._",
  6089. "lib/wpa81/_._",
  6090. "lib/xamarinios10/_._",
  6091. "lib/xamarintvos10/_._",
  6092. "lib/xamarinwatchos10/_._",
  6093. "ref/Xamarinmac20/_._",
  6094. "ref/monoandroid10/_._",
  6095. "ref/monotouch10/_._",
  6096. "ref/net45/_._",
  6097. "ref/net46/System.Net.Http.dll",
  6098. "ref/net46/System.Net.Http.xml",
  6099. "ref/net46/de/System.Net.Http.xml",
  6100. "ref/net46/es/System.Net.Http.xml",
  6101. "ref/net46/fr/System.Net.Http.xml",
  6102. "ref/net46/it/System.Net.Http.xml",
  6103. "ref/net46/ja/System.Net.Http.xml",
  6104. "ref/net46/ko/System.Net.Http.xml",
  6105. "ref/net46/ru/System.Net.Http.xml",
  6106. "ref/net46/zh-hans/System.Net.Http.xml",
  6107. "ref/net46/zh-hant/System.Net.Http.xml",
  6108. "ref/netcore50/System.Net.Http.dll",
  6109. "ref/netcore50/System.Net.Http.xml",
  6110. "ref/netcore50/de/System.Net.Http.xml",
  6111. "ref/netcore50/es/System.Net.Http.xml",
  6112. "ref/netcore50/fr/System.Net.Http.xml",
  6113. "ref/netcore50/it/System.Net.Http.xml",
  6114. "ref/netcore50/ja/System.Net.Http.xml",
  6115. "ref/netcore50/ko/System.Net.Http.xml",
  6116. "ref/netcore50/ru/System.Net.Http.xml",
  6117. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6118. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6119. "ref/netstandard1.1/System.Net.Http.dll",
  6120. "ref/netstandard1.1/System.Net.Http.xml",
  6121. "ref/netstandard1.1/de/System.Net.Http.xml",
  6122. "ref/netstandard1.1/es/System.Net.Http.xml",
  6123. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6124. "ref/netstandard1.1/it/System.Net.Http.xml",
  6125. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6126. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6127. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6128. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6129. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6130. "ref/netstandard1.3/System.Net.Http.dll",
  6131. "ref/netstandard1.3/System.Net.Http.xml",
  6132. "ref/netstandard1.3/de/System.Net.Http.xml",
  6133. "ref/netstandard1.3/es/System.Net.Http.xml",
  6134. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6135. "ref/netstandard1.3/it/System.Net.Http.xml",
  6136. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6137. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6138. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6139. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6140. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6141. "ref/portable-net45+win8+wpa81/_._",
  6142. "ref/win8/_._",
  6143. "ref/wpa81/_._",
  6144. "ref/xamarinios10/_._",
  6145. "ref/xamarintvos10/_._",
  6146. "ref/xamarinwatchos10/_._",
  6147. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6148. "runtimes/win/lib/net46/System.Net.Http.dll",
  6149. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6150. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6151. "system.net.http.4.3.0.nupkg.sha512",
  6152. "system.net.http.nuspec"
  6153. ]
  6154. },
  6155. "System.Net.Primitives/4.3.0": {
  6156. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6157. "type": "package",
  6158. "path": "system.net.primitives/4.3.0",
  6159. "files": [
  6160. ".nupkg.metadata",
  6161. ".signature.p7s",
  6162. "ThirdPartyNotices.txt",
  6163. "dotnet_library_license.txt",
  6164. "lib/MonoAndroid10/_._",
  6165. "lib/MonoTouch10/_._",
  6166. "lib/net45/_._",
  6167. "lib/portable-net45+win8+wp8+wpa81/_._",
  6168. "lib/win8/_._",
  6169. "lib/wp80/_._",
  6170. "lib/wpa81/_._",
  6171. "lib/xamarinios10/_._",
  6172. "lib/xamarinmac20/_._",
  6173. "lib/xamarintvos10/_._",
  6174. "lib/xamarinwatchos10/_._",
  6175. "ref/MonoAndroid10/_._",
  6176. "ref/MonoTouch10/_._",
  6177. "ref/net45/_._",
  6178. "ref/netcore50/System.Net.Primitives.dll",
  6179. "ref/netcore50/System.Net.Primitives.xml",
  6180. "ref/netcore50/de/System.Net.Primitives.xml",
  6181. "ref/netcore50/es/System.Net.Primitives.xml",
  6182. "ref/netcore50/fr/System.Net.Primitives.xml",
  6183. "ref/netcore50/it/System.Net.Primitives.xml",
  6184. "ref/netcore50/ja/System.Net.Primitives.xml",
  6185. "ref/netcore50/ko/System.Net.Primitives.xml",
  6186. "ref/netcore50/ru/System.Net.Primitives.xml",
  6187. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6188. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6189. "ref/netstandard1.0/System.Net.Primitives.dll",
  6190. "ref/netstandard1.0/System.Net.Primitives.xml",
  6191. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6192. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6193. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6194. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6195. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6196. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6197. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6198. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6199. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6200. "ref/netstandard1.1/System.Net.Primitives.dll",
  6201. "ref/netstandard1.1/System.Net.Primitives.xml",
  6202. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6203. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6204. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6205. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6206. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6207. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6208. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6209. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6210. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6211. "ref/netstandard1.3/System.Net.Primitives.dll",
  6212. "ref/netstandard1.3/System.Net.Primitives.xml",
  6213. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6214. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6215. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6216. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6217. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6218. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6219. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6220. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6221. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6222. "ref/portable-net45+win8+wp8+wpa81/_._",
  6223. "ref/win8/_._",
  6224. "ref/wp80/_._",
  6225. "ref/wpa81/_._",
  6226. "ref/xamarinios10/_._",
  6227. "ref/xamarinmac20/_._",
  6228. "ref/xamarintvos10/_._",
  6229. "ref/xamarinwatchos10/_._",
  6230. "system.net.primitives.4.3.0.nupkg.sha512",
  6231. "system.net.primitives.nuspec"
  6232. ]
  6233. },
  6234. "System.Net.Sockets/4.3.0": {
  6235. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6236. "type": "package",
  6237. "path": "system.net.sockets/4.3.0",
  6238. "files": [
  6239. ".nupkg.metadata",
  6240. ".signature.p7s",
  6241. "ThirdPartyNotices.txt",
  6242. "dotnet_library_license.txt",
  6243. "lib/MonoAndroid10/_._",
  6244. "lib/MonoTouch10/_._",
  6245. "lib/net46/System.Net.Sockets.dll",
  6246. "lib/xamarinios10/_._",
  6247. "lib/xamarinmac20/_._",
  6248. "lib/xamarintvos10/_._",
  6249. "lib/xamarinwatchos10/_._",
  6250. "ref/MonoAndroid10/_._",
  6251. "ref/MonoTouch10/_._",
  6252. "ref/net46/System.Net.Sockets.dll",
  6253. "ref/netstandard1.3/System.Net.Sockets.dll",
  6254. "ref/netstandard1.3/System.Net.Sockets.xml",
  6255. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6256. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6257. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6258. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6259. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6260. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6261. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6262. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6263. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6264. "ref/xamarinios10/_._",
  6265. "ref/xamarinmac20/_._",
  6266. "ref/xamarintvos10/_._",
  6267. "ref/xamarinwatchos10/_._",
  6268. "system.net.sockets.4.3.0.nupkg.sha512",
  6269. "system.net.sockets.nuspec"
  6270. ]
  6271. },
  6272. "System.ObjectModel/4.3.0": {
  6273. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6274. "type": "package",
  6275. "path": "system.objectmodel/4.3.0",
  6276. "files": [
  6277. ".nupkg.metadata",
  6278. ".signature.p7s",
  6279. "ThirdPartyNotices.txt",
  6280. "dotnet_library_license.txt",
  6281. "lib/MonoAndroid10/_._",
  6282. "lib/MonoTouch10/_._",
  6283. "lib/net45/_._",
  6284. "lib/netcore50/System.ObjectModel.dll",
  6285. "lib/netstandard1.3/System.ObjectModel.dll",
  6286. "lib/portable-net45+win8+wp8+wpa81/_._",
  6287. "lib/win8/_._",
  6288. "lib/wp80/_._",
  6289. "lib/wpa81/_._",
  6290. "lib/xamarinios10/_._",
  6291. "lib/xamarinmac20/_._",
  6292. "lib/xamarintvos10/_._",
  6293. "lib/xamarinwatchos10/_._",
  6294. "ref/MonoAndroid10/_._",
  6295. "ref/MonoTouch10/_._",
  6296. "ref/net45/_._",
  6297. "ref/netcore50/System.ObjectModel.dll",
  6298. "ref/netcore50/System.ObjectModel.xml",
  6299. "ref/netcore50/de/System.ObjectModel.xml",
  6300. "ref/netcore50/es/System.ObjectModel.xml",
  6301. "ref/netcore50/fr/System.ObjectModel.xml",
  6302. "ref/netcore50/it/System.ObjectModel.xml",
  6303. "ref/netcore50/ja/System.ObjectModel.xml",
  6304. "ref/netcore50/ko/System.ObjectModel.xml",
  6305. "ref/netcore50/ru/System.ObjectModel.xml",
  6306. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6307. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6308. "ref/netstandard1.0/System.ObjectModel.dll",
  6309. "ref/netstandard1.0/System.ObjectModel.xml",
  6310. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6311. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6312. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6313. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6314. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6315. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6316. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6317. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6318. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6319. "ref/netstandard1.3/System.ObjectModel.dll",
  6320. "ref/netstandard1.3/System.ObjectModel.xml",
  6321. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6322. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6323. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6324. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6325. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6326. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6327. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6328. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6329. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6330. "ref/portable-net45+win8+wp8+wpa81/_._",
  6331. "ref/win8/_._",
  6332. "ref/wp80/_._",
  6333. "ref/wpa81/_._",
  6334. "ref/xamarinios10/_._",
  6335. "ref/xamarinmac20/_._",
  6336. "ref/xamarintvos10/_._",
  6337. "ref/xamarinwatchos10/_._",
  6338. "system.objectmodel.4.3.0.nupkg.sha512",
  6339. "system.objectmodel.nuspec"
  6340. ]
  6341. },
  6342. "System.Reflection/4.3.0": {
  6343. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6344. "type": "package",
  6345. "path": "system.reflection/4.3.0",
  6346. "files": [
  6347. ".nupkg.metadata",
  6348. ".signature.p7s",
  6349. "ThirdPartyNotices.txt",
  6350. "dotnet_library_license.txt",
  6351. "lib/MonoAndroid10/_._",
  6352. "lib/MonoTouch10/_._",
  6353. "lib/net45/_._",
  6354. "lib/net462/System.Reflection.dll",
  6355. "lib/portable-net45+win8+wp8+wpa81/_._",
  6356. "lib/win8/_._",
  6357. "lib/wp80/_._",
  6358. "lib/wpa81/_._",
  6359. "lib/xamarinios10/_._",
  6360. "lib/xamarinmac20/_._",
  6361. "lib/xamarintvos10/_._",
  6362. "lib/xamarinwatchos10/_._",
  6363. "ref/MonoAndroid10/_._",
  6364. "ref/MonoTouch10/_._",
  6365. "ref/net45/_._",
  6366. "ref/net462/System.Reflection.dll",
  6367. "ref/netcore50/System.Reflection.dll",
  6368. "ref/netcore50/System.Reflection.xml",
  6369. "ref/netcore50/de/System.Reflection.xml",
  6370. "ref/netcore50/es/System.Reflection.xml",
  6371. "ref/netcore50/fr/System.Reflection.xml",
  6372. "ref/netcore50/it/System.Reflection.xml",
  6373. "ref/netcore50/ja/System.Reflection.xml",
  6374. "ref/netcore50/ko/System.Reflection.xml",
  6375. "ref/netcore50/ru/System.Reflection.xml",
  6376. "ref/netcore50/zh-hans/System.Reflection.xml",
  6377. "ref/netcore50/zh-hant/System.Reflection.xml",
  6378. "ref/netstandard1.0/System.Reflection.dll",
  6379. "ref/netstandard1.0/System.Reflection.xml",
  6380. "ref/netstandard1.0/de/System.Reflection.xml",
  6381. "ref/netstandard1.0/es/System.Reflection.xml",
  6382. "ref/netstandard1.0/fr/System.Reflection.xml",
  6383. "ref/netstandard1.0/it/System.Reflection.xml",
  6384. "ref/netstandard1.0/ja/System.Reflection.xml",
  6385. "ref/netstandard1.0/ko/System.Reflection.xml",
  6386. "ref/netstandard1.0/ru/System.Reflection.xml",
  6387. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6388. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6389. "ref/netstandard1.3/System.Reflection.dll",
  6390. "ref/netstandard1.3/System.Reflection.xml",
  6391. "ref/netstandard1.3/de/System.Reflection.xml",
  6392. "ref/netstandard1.3/es/System.Reflection.xml",
  6393. "ref/netstandard1.3/fr/System.Reflection.xml",
  6394. "ref/netstandard1.3/it/System.Reflection.xml",
  6395. "ref/netstandard1.3/ja/System.Reflection.xml",
  6396. "ref/netstandard1.3/ko/System.Reflection.xml",
  6397. "ref/netstandard1.3/ru/System.Reflection.xml",
  6398. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6399. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6400. "ref/netstandard1.5/System.Reflection.dll",
  6401. "ref/netstandard1.5/System.Reflection.xml",
  6402. "ref/netstandard1.5/de/System.Reflection.xml",
  6403. "ref/netstandard1.5/es/System.Reflection.xml",
  6404. "ref/netstandard1.5/fr/System.Reflection.xml",
  6405. "ref/netstandard1.5/it/System.Reflection.xml",
  6406. "ref/netstandard1.5/ja/System.Reflection.xml",
  6407. "ref/netstandard1.5/ko/System.Reflection.xml",
  6408. "ref/netstandard1.5/ru/System.Reflection.xml",
  6409. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6410. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6411. "ref/portable-net45+win8+wp8+wpa81/_._",
  6412. "ref/win8/_._",
  6413. "ref/wp80/_._",
  6414. "ref/wpa81/_._",
  6415. "ref/xamarinios10/_._",
  6416. "ref/xamarinmac20/_._",
  6417. "ref/xamarintvos10/_._",
  6418. "ref/xamarinwatchos10/_._",
  6419. "system.reflection.4.3.0.nupkg.sha512",
  6420. "system.reflection.nuspec"
  6421. ]
  6422. },
  6423. "System.Reflection.Emit/4.3.0": {
  6424. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  6425. "type": "package",
  6426. "path": "system.reflection.emit/4.3.0",
  6427. "files": [
  6428. ".nupkg.metadata",
  6429. ".signature.p7s",
  6430. "ThirdPartyNotices.txt",
  6431. "dotnet_library_license.txt",
  6432. "lib/MonoAndroid10/_._",
  6433. "lib/monotouch10/_._",
  6434. "lib/net45/_._",
  6435. "lib/netcore50/System.Reflection.Emit.dll",
  6436. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6437. "lib/xamarinios10/_._",
  6438. "lib/xamarinmac20/_._",
  6439. "lib/xamarintvos10/_._",
  6440. "lib/xamarinwatchos10/_._",
  6441. "ref/MonoAndroid10/_._",
  6442. "ref/net45/_._",
  6443. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6444. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6445. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6446. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6447. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6448. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6449. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6450. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6451. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6452. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6453. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6454. "ref/xamarinmac20/_._",
  6455. "system.reflection.emit.4.3.0.nupkg.sha512",
  6456. "system.reflection.emit.nuspec"
  6457. ]
  6458. },
  6459. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6460. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6461. "type": "package",
  6462. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6463. "files": [
  6464. ".nupkg.metadata",
  6465. ".signature.p7s",
  6466. "ThirdPartyNotices.txt",
  6467. "dotnet_library_license.txt",
  6468. "lib/MonoAndroid10/_._",
  6469. "lib/MonoTouch10/_._",
  6470. "lib/net45/_._",
  6471. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6472. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6473. "lib/portable-net45+wp8/_._",
  6474. "lib/wp80/_._",
  6475. "lib/xamarinios10/_._",
  6476. "lib/xamarinmac20/_._",
  6477. "lib/xamarintvos10/_._",
  6478. "lib/xamarinwatchos10/_._",
  6479. "ref/MonoAndroid10/_._",
  6480. "ref/MonoTouch10/_._",
  6481. "ref/net45/_._",
  6482. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6483. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6484. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6485. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6486. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6487. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6488. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6489. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6490. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6491. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6492. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6493. "ref/portable-net45+wp8/_._",
  6494. "ref/wp80/_._",
  6495. "ref/xamarinios10/_._",
  6496. "ref/xamarinmac20/_._",
  6497. "ref/xamarintvos10/_._",
  6498. "ref/xamarinwatchos10/_._",
  6499. "runtimes/aot/lib/netcore50/_._",
  6500. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6501. "system.reflection.emit.ilgeneration.nuspec"
  6502. ]
  6503. },
  6504. "System.Reflection.Emit.Lightweight/4.3.0": {
  6505. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  6506. "type": "package",
  6507. "path": "system.reflection.emit.lightweight/4.3.0",
  6508. "files": [
  6509. ".nupkg.metadata",
  6510. ".signature.p7s",
  6511. "ThirdPartyNotices.txt",
  6512. "dotnet_library_license.txt",
  6513. "lib/MonoAndroid10/_._",
  6514. "lib/MonoTouch10/_._",
  6515. "lib/net45/_._",
  6516. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6517. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6518. "lib/portable-net45+wp8/_._",
  6519. "lib/wp80/_._",
  6520. "lib/xamarinios10/_._",
  6521. "lib/xamarinmac20/_._",
  6522. "lib/xamarintvos10/_._",
  6523. "lib/xamarinwatchos10/_._",
  6524. "ref/MonoAndroid10/_._",
  6525. "ref/MonoTouch10/_._",
  6526. "ref/net45/_._",
  6527. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6528. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6529. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6530. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6531. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6532. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6533. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6534. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6535. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6536. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6537. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6538. "ref/portable-net45+wp8/_._",
  6539. "ref/wp80/_._",
  6540. "ref/xamarinios10/_._",
  6541. "ref/xamarinmac20/_._",
  6542. "ref/xamarintvos10/_._",
  6543. "ref/xamarinwatchos10/_._",
  6544. "runtimes/aot/lib/netcore50/_._",
  6545. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6546. "system.reflection.emit.lightweight.nuspec"
  6547. ]
  6548. },
  6549. "System.Reflection.Extensions/4.3.0": {
  6550. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6551. "type": "package",
  6552. "path": "system.reflection.extensions/4.3.0",
  6553. "files": [
  6554. ".nupkg.metadata",
  6555. ".signature.p7s",
  6556. "ThirdPartyNotices.txt",
  6557. "dotnet_library_license.txt",
  6558. "lib/MonoAndroid10/_._",
  6559. "lib/MonoTouch10/_._",
  6560. "lib/net45/_._",
  6561. "lib/portable-net45+win8+wp8+wpa81/_._",
  6562. "lib/win8/_._",
  6563. "lib/wp80/_._",
  6564. "lib/wpa81/_._",
  6565. "lib/xamarinios10/_._",
  6566. "lib/xamarinmac20/_._",
  6567. "lib/xamarintvos10/_._",
  6568. "lib/xamarinwatchos10/_._",
  6569. "ref/MonoAndroid10/_._",
  6570. "ref/MonoTouch10/_._",
  6571. "ref/net45/_._",
  6572. "ref/netcore50/System.Reflection.Extensions.dll",
  6573. "ref/netcore50/System.Reflection.Extensions.xml",
  6574. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6575. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6576. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6577. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6578. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6579. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6580. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6581. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6582. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6583. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6584. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6585. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6586. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6587. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6588. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6589. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6590. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6591. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6592. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6593. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6594. "ref/portable-net45+win8+wp8+wpa81/_._",
  6595. "ref/win8/_._",
  6596. "ref/wp80/_._",
  6597. "ref/wpa81/_._",
  6598. "ref/xamarinios10/_._",
  6599. "ref/xamarinmac20/_._",
  6600. "ref/xamarintvos10/_._",
  6601. "ref/xamarinwatchos10/_._",
  6602. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6603. "system.reflection.extensions.nuspec"
  6604. ]
  6605. },
  6606. "System.Reflection.Primitives/4.3.0": {
  6607. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6608. "type": "package",
  6609. "path": "system.reflection.primitives/4.3.0",
  6610. "files": [
  6611. ".nupkg.metadata",
  6612. ".signature.p7s",
  6613. "ThirdPartyNotices.txt",
  6614. "dotnet_library_license.txt",
  6615. "lib/MonoAndroid10/_._",
  6616. "lib/MonoTouch10/_._",
  6617. "lib/net45/_._",
  6618. "lib/portable-net45+win8+wp8+wpa81/_._",
  6619. "lib/win8/_._",
  6620. "lib/wp80/_._",
  6621. "lib/wpa81/_._",
  6622. "lib/xamarinios10/_._",
  6623. "lib/xamarinmac20/_._",
  6624. "lib/xamarintvos10/_._",
  6625. "lib/xamarinwatchos10/_._",
  6626. "ref/MonoAndroid10/_._",
  6627. "ref/MonoTouch10/_._",
  6628. "ref/net45/_._",
  6629. "ref/netcore50/System.Reflection.Primitives.dll",
  6630. "ref/netcore50/System.Reflection.Primitives.xml",
  6631. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6632. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6633. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6634. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6635. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6636. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6637. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6638. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6639. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6640. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6641. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6642. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6643. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6644. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6645. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6646. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6647. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6648. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6649. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6650. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6651. "ref/portable-net45+win8+wp8+wpa81/_._",
  6652. "ref/win8/_._",
  6653. "ref/wp80/_._",
  6654. "ref/wpa81/_._",
  6655. "ref/xamarinios10/_._",
  6656. "ref/xamarinmac20/_._",
  6657. "ref/xamarintvos10/_._",
  6658. "ref/xamarinwatchos10/_._",
  6659. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6660. "system.reflection.primitives.nuspec"
  6661. ]
  6662. },
  6663. "System.Reflection.TypeExtensions/4.3.0": {
  6664. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6665. "type": "package",
  6666. "path": "system.reflection.typeextensions/4.3.0",
  6667. "files": [
  6668. ".nupkg.metadata",
  6669. ".signature.p7s",
  6670. "ThirdPartyNotices.txt",
  6671. "dotnet_library_license.txt",
  6672. "lib/MonoAndroid10/_._",
  6673. "lib/MonoTouch10/_._",
  6674. "lib/net46/System.Reflection.TypeExtensions.dll",
  6675. "lib/net462/System.Reflection.TypeExtensions.dll",
  6676. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6677. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6678. "lib/xamarinios10/_._",
  6679. "lib/xamarinmac20/_._",
  6680. "lib/xamarintvos10/_._",
  6681. "lib/xamarinwatchos10/_._",
  6682. "ref/MonoAndroid10/_._",
  6683. "ref/MonoTouch10/_._",
  6684. "ref/net46/System.Reflection.TypeExtensions.dll",
  6685. "ref/net462/System.Reflection.TypeExtensions.dll",
  6686. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6687. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6688. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6689. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6690. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6691. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6692. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6693. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6694. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6695. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6696. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6697. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6698. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6699. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6700. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6701. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6702. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6703. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6704. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6705. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6706. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6707. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6708. "ref/xamarinios10/_._",
  6709. "ref/xamarinmac20/_._",
  6710. "ref/xamarintvos10/_._",
  6711. "ref/xamarinwatchos10/_._",
  6712. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6713. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6714. "system.reflection.typeextensions.nuspec"
  6715. ]
  6716. },
  6717. "System.Resources.ResourceManager/4.3.0": {
  6718. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6719. "type": "package",
  6720. "path": "system.resources.resourcemanager/4.3.0",
  6721. "files": [
  6722. ".nupkg.metadata",
  6723. ".signature.p7s",
  6724. "ThirdPartyNotices.txt",
  6725. "dotnet_library_license.txt",
  6726. "lib/MonoAndroid10/_._",
  6727. "lib/MonoTouch10/_._",
  6728. "lib/net45/_._",
  6729. "lib/portable-net45+win8+wp8+wpa81/_._",
  6730. "lib/win8/_._",
  6731. "lib/wp80/_._",
  6732. "lib/wpa81/_._",
  6733. "lib/xamarinios10/_._",
  6734. "lib/xamarinmac20/_._",
  6735. "lib/xamarintvos10/_._",
  6736. "lib/xamarinwatchos10/_._",
  6737. "ref/MonoAndroid10/_._",
  6738. "ref/MonoTouch10/_._",
  6739. "ref/net45/_._",
  6740. "ref/netcore50/System.Resources.ResourceManager.dll",
  6741. "ref/netcore50/System.Resources.ResourceManager.xml",
  6742. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6743. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6744. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6745. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6746. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6747. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6748. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6749. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6750. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6751. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6752. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6753. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6754. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6755. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6756. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6757. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6758. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6759. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6760. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6761. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6762. "ref/portable-net45+win8+wp8+wpa81/_._",
  6763. "ref/win8/_._",
  6764. "ref/wp80/_._",
  6765. "ref/wpa81/_._",
  6766. "ref/xamarinios10/_._",
  6767. "ref/xamarinmac20/_._",
  6768. "ref/xamarintvos10/_._",
  6769. "ref/xamarinwatchos10/_._",
  6770. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6771. "system.resources.resourcemanager.nuspec"
  6772. ]
  6773. },
  6774. "System.Runtime/4.3.0": {
  6775. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6776. "type": "package",
  6777. "path": "system.runtime/4.3.0",
  6778. "files": [
  6779. ".nupkg.metadata",
  6780. ".signature.p7s",
  6781. "ThirdPartyNotices.txt",
  6782. "dotnet_library_license.txt",
  6783. "lib/MonoAndroid10/_._",
  6784. "lib/MonoTouch10/_._",
  6785. "lib/net45/_._",
  6786. "lib/net462/System.Runtime.dll",
  6787. "lib/portable-net45+win8+wp80+wpa81/_._",
  6788. "lib/win8/_._",
  6789. "lib/wp80/_._",
  6790. "lib/wpa81/_._",
  6791. "lib/xamarinios10/_._",
  6792. "lib/xamarinmac20/_._",
  6793. "lib/xamarintvos10/_._",
  6794. "lib/xamarinwatchos10/_._",
  6795. "ref/MonoAndroid10/_._",
  6796. "ref/MonoTouch10/_._",
  6797. "ref/net45/_._",
  6798. "ref/net462/System.Runtime.dll",
  6799. "ref/netcore50/System.Runtime.dll",
  6800. "ref/netcore50/System.Runtime.xml",
  6801. "ref/netcore50/de/System.Runtime.xml",
  6802. "ref/netcore50/es/System.Runtime.xml",
  6803. "ref/netcore50/fr/System.Runtime.xml",
  6804. "ref/netcore50/it/System.Runtime.xml",
  6805. "ref/netcore50/ja/System.Runtime.xml",
  6806. "ref/netcore50/ko/System.Runtime.xml",
  6807. "ref/netcore50/ru/System.Runtime.xml",
  6808. "ref/netcore50/zh-hans/System.Runtime.xml",
  6809. "ref/netcore50/zh-hant/System.Runtime.xml",
  6810. "ref/netstandard1.0/System.Runtime.dll",
  6811. "ref/netstandard1.0/System.Runtime.xml",
  6812. "ref/netstandard1.0/de/System.Runtime.xml",
  6813. "ref/netstandard1.0/es/System.Runtime.xml",
  6814. "ref/netstandard1.0/fr/System.Runtime.xml",
  6815. "ref/netstandard1.0/it/System.Runtime.xml",
  6816. "ref/netstandard1.0/ja/System.Runtime.xml",
  6817. "ref/netstandard1.0/ko/System.Runtime.xml",
  6818. "ref/netstandard1.0/ru/System.Runtime.xml",
  6819. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6820. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6821. "ref/netstandard1.2/System.Runtime.dll",
  6822. "ref/netstandard1.2/System.Runtime.xml",
  6823. "ref/netstandard1.2/de/System.Runtime.xml",
  6824. "ref/netstandard1.2/es/System.Runtime.xml",
  6825. "ref/netstandard1.2/fr/System.Runtime.xml",
  6826. "ref/netstandard1.2/it/System.Runtime.xml",
  6827. "ref/netstandard1.2/ja/System.Runtime.xml",
  6828. "ref/netstandard1.2/ko/System.Runtime.xml",
  6829. "ref/netstandard1.2/ru/System.Runtime.xml",
  6830. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6831. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6832. "ref/netstandard1.3/System.Runtime.dll",
  6833. "ref/netstandard1.3/System.Runtime.xml",
  6834. "ref/netstandard1.3/de/System.Runtime.xml",
  6835. "ref/netstandard1.3/es/System.Runtime.xml",
  6836. "ref/netstandard1.3/fr/System.Runtime.xml",
  6837. "ref/netstandard1.3/it/System.Runtime.xml",
  6838. "ref/netstandard1.3/ja/System.Runtime.xml",
  6839. "ref/netstandard1.3/ko/System.Runtime.xml",
  6840. "ref/netstandard1.3/ru/System.Runtime.xml",
  6841. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6842. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6843. "ref/netstandard1.5/System.Runtime.dll",
  6844. "ref/netstandard1.5/System.Runtime.xml",
  6845. "ref/netstandard1.5/de/System.Runtime.xml",
  6846. "ref/netstandard1.5/es/System.Runtime.xml",
  6847. "ref/netstandard1.5/fr/System.Runtime.xml",
  6848. "ref/netstandard1.5/it/System.Runtime.xml",
  6849. "ref/netstandard1.5/ja/System.Runtime.xml",
  6850. "ref/netstandard1.5/ko/System.Runtime.xml",
  6851. "ref/netstandard1.5/ru/System.Runtime.xml",
  6852. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6853. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6854. "ref/portable-net45+win8+wp80+wpa81/_._",
  6855. "ref/win8/_._",
  6856. "ref/wp80/_._",
  6857. "ref/wpa81/_._",
  6858. "ref/xamarinios10/_._",
  6859. "ref/xamarinmac20/_._",
  6860. "ref/xamarintvos10/_._",
  6861. "ref/xamarinwatchos10/_._",
  6862. "system.runtime.4.3.0.nupkg.sha512",
  6863. "system.runtime.nuspec"
  6864. ]
  6865. },
  6866. "System.Runtime.Caching/4.7.0": {
  6867. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  6868. "type": "package",
  6869. "path": "system.runtime.caching/4.7.0",
  6870. "files": [
  6871. ".nupkg.metadata",
  6872. ".signature.p7s",
  6873. "LICENSE.TXT",
  6874. "THIRD-PARTY-NOTICES.TXT",
  6875. "lib/MonoAndroid10/_._",
  6876. "lib/MonoTouch10/_._",
  6877. "lib/net45/_._",
  6878. "lib/netstandard2.0/System.Runtime.Caching.dll",
  6879. "lib/netstandard2.0/System.Runtime.Caching.xml",
  6880. "lib/xamarinios10/_._",
  6881. "lib/xamarinmac20/_._",
  6882. "lib/xamarintvos10/_._",
  6883. "lib/xamarinwatchos10/_._",
  6884. "ref/MonoAndroid10/_._",
  6885. "ref/MonoTouch10/_._",
  6886. "ref/net45/_._",
  6887. "ref/netstandard2.0/System.Runtime.Caching.dll",
  6888. "ref/netstandard2.0/System.Runtime.Caching.xml",
  6889. "ref/xamarinios10/_._",
  6890. "ref/xamarinmac20/_._",
  6891. "ref/xamarintvos10/_._",
  6892. "ref/xamarinwatchos10/_._",
  6893. "runtimes/win/lib/net45/_._",
  6894. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  6895. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  6896. "system.runtime.caching.4.7.0.nupkg.sha512",
  6897. "system.runtime.caching.nuspec",
  6898. "useSharedDesignerContext.txt",
  6899. "version.txt"
  6900. ]
  6901. },
  6902. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  6903. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  6904. "type": "package",
  6905. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  6906. "files": [
  6907. ".nupkg.metadata",
  6908. ".signature.p7s",
  6909. "Icon.png",
  6910. "LICENSE.TXT",
  6911. "THIRD-PARTY-NOTICES.TXT",
  6912. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  6913. "buildTransitive/netcoreapp3.1/_._",
  6914. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6915. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  6916. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  6917. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  6918. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  6919. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  6920. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6921. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6922. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  6923. "system.runtime.compilerservices.unsafe.nuspec",
  6924. "useSharedDesignerContext.txt"
  6925. ]
  6926. },
  6927. "System.Runtime.Extensions/4.3.0": {
  6928. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6929. "type": "package",
  6930. "path": "system.runtime.extensions/4.3.0",
  6931. "files": [
  6932. ".nupkg.metadata",
  6933. ".signature.p7s",
  6934. "ThirdPartyNotices.txt",
  6935. "dotnet_library_license.txt",
  6936. "lib/MonoAndroid10/_._",
  6937. "lib/MonoTouch10/_._",
  6938. "lib/net45/_._",
  6939. "lib/net462/System.Runtime.Extensions.dll",
  6940. "lib/portable-net45+win8+wp8+wpa81/_._",
  6941. "lib/win8/_._",
  6942. "lib/wp80/_._",
  6943. "lib/wpa81/_._",
  6944. "lib/xamarinios10/_._",
  6945. "lib/xamarinmac20/_._",
  6946. "lib/xamarintvos10/_._",
  6947. "lib/xamarinwatchos10/_._",
  6948. "ref/MonoAndroid10/_._",
  6949. "ref/MonoTouch10/_._",
  6950. "ref/net45/_._",
  6951. "ref/net462/System.Runtime.Extensions.dll",
  6952. "ref/netcore50/System.Runtime.Extensions.dll",
  6953. "ref/netcore50/System.Runtime.Extensions.xml",
  6954. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6955. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6956. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6957. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6958. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6959. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6960. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6961. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6962. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6963. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6964. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6965. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6966. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6967. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6968. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6969. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6970. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6971. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6972. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6973. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6974. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6975. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6976. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6977. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6978. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6979. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6980. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6981. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6982. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6983. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6984. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6985. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6986. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6987. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6988. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6989. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6990. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6991. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6992. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6993. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6994. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6995. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6996. "ref/portable-net45+win8+wp8+wpa81/_._",
  6997. "ref/win8/_._",
  6998. "ref/wp80/_._",
  6999. "ref/wpa81/_._",
  7000. "ref/xamarinios10/_._",
  7001. "ref/xamarinmac20/_._",
  7002. "ref/xamarintvos10/_._",
  7003. "ref/xamarinwatchos10/_._",
  7004. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7005. "system.runtime.extensions.nuspec"
  7006. ]
  7007. },
  7008. "System.Runtime.Handles/4.3.0": {
  7009. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7010. "type": "package",
  7011. "path": "system.runtime.handles/4.3.0",
  7012. "files": [
  7013. ".nupkg.metadata",
  7014. ".signature.p7s",
  7015. "ThirdPartyNotices.txt",
  7016. "dotnet_library_license.txt",
  7017. "lib/MonoAndroid10/_._",
  7018. "lib/MonoTouch10/_._",
  7019. "lib/net46/_._",
  7020. "lib/xamarinios10/_._",
  7021. "lib/xamarinmac20/_._",
  7022. "lib/xamarintvos10/_._",
  7023. "lib/xamarinwatchos10/_._",
  7024. "ref/MonoAndroid10/_._",
  7025. "ref/MonoTouch10/_._",
  7026. "ref/net46/_._",
  7027. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7028. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7029. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7030. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7031. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7032. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7033. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7034. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7035. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7036. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7037. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7038. "ref/xamarinios10/_._",
  7039. "ref/xamarinmac20/_._",
  7040. "ref/xamarintvos10/_._",
  7041. "ref/xamarinwatchos10/_._",
  7042. "system.runtime.handles.4.3.0.nupkg.sha512",
  7043. "system.runtime.handles.nuspec"
  7044. ]
  7045. },
  7046. "System.Runtime.InteropServices/4.3.0": {
  7047. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7048. "type": "package",
  7049. "path": "system.runtime.interopservices/4.3.0",
  7050. "files": [
  7051. ".nupkg.metadata",
  7052. ".signature.p7s",
  7053. "ThirdPartyNotices.txt",
  7054. "dotnet_library_license.txt",
  7055. "lib/MonoAndroid10/_._",
  7056. "lib/MonoTouch10/_._",
  7057. "lib/net45/_._",
  7058. "lib/net462/System.Runtime.InteropServices.dll",
  7059. "lib/net463/System.Runtime.InteropServices.dll",
  7060. "lib/portable-net45+win8+wpa81/_._",
  7061. "lib/win8/_._",
  7062. "lib/wpa81/_._",
  7063. "lib/xamarinios10/_._",
  7064. "lib/xamarinmac20/_._",
  7065. "lib/xamarintvos10/_._",
  7066. "lib/xamarinwatchos10/_._",
  7067. "ref/MonoAndroid10/_._",
  7068. "ref/MonoTouch10/_._",
  7069. "ref/net45/_._",
  7070. "ref/net462/System.Runtime.InteropServices.dll",
  7071. "ref/net463/System.Runtime.InteropServices.dll",
  7072. "ref/netcore50/System.Runtime.InteropServices.dll",
  7073. "ref/netcore50/System.Runtime.InteropServices.xml",
  7074. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7075. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7076. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7077. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7078. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7079. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7080. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7081. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7082. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7083. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7084. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7085. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7086. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7087. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7088. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7089. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7090. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7091. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7092. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7093. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7094. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7095. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7096. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7097. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7098. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7099. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7100. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7101. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7102. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7103. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7104. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7105. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7106. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7107. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7108. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7109. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7110. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7111. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7112. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7113. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7114. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7115. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7116. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7117. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7118. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7119. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7120. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7121. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7122. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7123. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7124. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7125. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7126. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7127. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7128. "ref/portable-net45+win8+wpa81/_._",
  7129. "ref/win8/_._",
  7130. "ref/wpa81/_._",
  7131. "ref/xamarinios10/_._",
  7132. "ref/xamarinmac20/_._",
  7133. "ref/xamarintvos10/_._",
  7134. "ref/xamarinwatchos10/_._",
  7135. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7136. "system.runtime.interopservices.nuspec"
  7137. ]
  7138. },
  7139. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7140. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7141. "type": "package",
  7142. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7143. "files": [
  7144. ".nupkg.metadata",
  7145. ".signature.p7s",
  7146. "ThirdPartyNotices.txt",
  7147. "dotnet_library_license.txt",
  7148. "lib/MonoAndroid10/_._",
  7149. "lib/MonoTouch10/_._",
  7150. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7151. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7152. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7153. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7154. "lib/xamarinios10/_._",
  7155. "lib/xamarinmac20/_._",
  7156. "lib/xamarintvos10/_._",
  7157. "lib/xamarinwatchos10/_._",
  7158. "ref/MonoAndroid10/_._",
  7159. "ref/MonoTouch10/_._",
  7160. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7161. "ref/xamarinios10/_._",
  7162. "ref/xamarinmac20/_._",
  7163. "ref/xamarintvos10/_._",
  7164. "ref/xamarinwatchos10/_._",
  7165. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7166. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7167. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7168. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7169. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7170. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7171. "system.runtime.interopservices.runtimeinformation.nuspec"
  7172. ]
  7173. },
  7174. "System.Runtime.Numerics/4.3.0": {
  7175. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7176. "type": "package",
  7177. "path": "system.runtime.numerics/4.3.0",
  7178. "files": [
  7179. ".nupkg.metadata",
  7180. ".signature.p7s",
  7181. "ThirdPartyNotices.txt",
  7182. "dotnet_library_license.txt",
  7183. "lib/MonoAndroid10/_._",
  7184. "lib/MonoTouch10/_._",
  7185. "lib/net45/_._",
  7186. "lib/netcore50/System.Runtime.Numerics.dll",
  7187. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7188. "lib/portable-net45+win8+wpa81/_._",
  7189. "lib/win8/_._",
  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/netcore50/System.Runtime.Numerics.dll",
  7199. "ref/netcore50/System.Runtime.Numerics.xml",
  7200. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7201. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7202. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7203. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7204. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7205. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7206. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7207. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7208. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7209. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7210. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7211. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7212. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7213. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7214. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7215. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7216. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7217. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7218. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7219. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7220. "ref/portable-net45+win8+wpa81/_._",
  7221. "ref/win8/_._",
  7222. "ref/wpa81/_._",
  7223. "ref/xamarinios10/_._",
  7224. "ref/xamarinmac20/_._",
  7225. "ref/xamarintvos10/_._",
  7226. "ref/xamarinwatchos10/_._",
  7227. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7228. "system.runtime.numerics.nuspec"
  7229. ]
  7230. },
  7231. "System.Security.AccessControl/4.7.0": {
  7232. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  7233. "type": "package",
  7234. "path": "system.security.accesscontrol/4.7.0",
  7235. "files": [
  7236. ".nupkg.metadata",
  7237. ".signature.p7s",
  7238. "LICENSE.TXT",
  7239. "THIRD-PARTY-NOTICES.TXT",
  7240. "lib/net46/System.Security.AccessControl.dll",
  7241. "lib/net461/System.Security.AccessControl.dll",
  7242. "lib/net461/System.Security.AccessControl.xml",
  7243. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7244. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7245. "lib/netstandard2.0/System.Security.AccessControl.xml",
  7246. "lib/uap10.0.16299/_._",
  7247. "ref/net46/System.Security.AccessControl.dll",
  7248. "ref/net461/System.Security.AccessControl.dll",
  7249. "ref/net461/System.Security.AccessControl.xml",
  7250. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7251. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7252. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7253. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7254. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7255. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7256. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7257. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7258. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7259. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7260. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7261. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7262. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7263. "ref/uap10.0.16299/_._",
  7264. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7265. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7266. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  7267. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7268. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  7269. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7270. "runtimes/win/lib/uap10.0.16299/_._",
  7271. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  7272. "system.security.accesscontrol.nuspec",
  7273. "useSharedDesignerContext.txt",
  7274. "version.txt"
  7275. ]
  7276. },
  7277. "System.Security.Cryptography.Algorithms/4.3.0": {
  7278. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7279. "type": "package",
  7280. "path": "system.security.cryptography.algorithms/4.3.0",
  7281. "files": [
  7282. ".nupkg.metadata",
  7283. ".signature.p7s",
  7284. "ThirdPartyNotices.txt",
  7285. "dotnet_library_license.txt",
  7286. "lib/MonoAndroid10/_._",
  7287. "lib/MonoTouch10/_._",
  7288. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7289. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7290. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7291. "lib/xamarinios10/_._",
  7292. "lib/xamarinmac20/_._",
  7293. "lib/xamarintvos10/_._",
  7294. "lib/xamarinwatchos10/_._",
  7295. "ref/MonoAndroid10/_._",
  7296. "ref/MonoTouch10/_._",
  7297. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7298. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7299. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7300. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7301. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7302. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7303. "ref/xamarinios10/_._",
  7304. "ref/xamarinmac20/_._",
  7305. "ref/xamarintvos10/_._",
  7306. "ref/xamarinwatchos10/_._",
  7307. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7308. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7309. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7310. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7311. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7312. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7313. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7314. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7315. "system.security.cryptography.algorithms.nuspec"
  7316. ]
  7317. },
  7318. "System.Security.Cryptography.Cng/4.5.0": {
  7319. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  7320. "type": "package",
  7321. "path": "system.security.cryptography.cng/4.5.0",
  7322. "files": [
  7323. ".nupkg.metadata",
  7324. ".signature.p7s",
  7325. "LICENSE.TXT",
  7326. "THIRD-PARTY-NOTICES.TXT",
  7327. "lib/MonoAndroid10/_._",
  7328. "lib/MonoTouch10/_._",
  7329. "lib/net46/System.Security.Cryptography.Cng.dll",
  7330. "lib/net461/System.Security.Cryptography.Cng.dll",
  7331. "lib/net462/System.Security.Cryptography.Cng.dll",
  7332. "lib/net47/System.Security.Cryptography.Cng.dll",
  7333. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7334. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7335. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7336. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7337. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7338. "lib/uap10.0.16299/_._",
  7339. "lib/xamarinios10/_._",
  7340. "lib/xamarinmac20/_._",
  7341. "lib/xamarintvos10/_._",
  7342. "lib/xamarinwatchos10/_._",
  7343. "ref/MonoAndroid10/_._",
  7344. "ref/MonoTouch10/_._",
  7345. "ref/net46/System.Security.Cryptography.Cng.dll",
  7346. "ref/net461/System.Security.Cryptography.Cng.dll",
  7347. "ref/net461/System.Security.Cryptography.Cng.xml",
  7348. "ref/net462/System.Security.Cryptography.Cng.dll",
  7349. "ref/net462/System.Security.Cryptography.Cng.xml",
  7350. "ref/net47/System.Security.Cryptography.Cng.dll",
  7351. "ref/net47/System.Security.Cryptography.Cng.xml",
  7352. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7353. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7354. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7355. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7356. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7357. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7358. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7359. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7360. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7361. "ref/uap10.0.16299/_._",
  7362. "ref/xamarinios10/_._",
  7363. "ref/xamarinmac20/_._",
  7364. "ref/xamarintvos10/_._",
  7365. "ref/xamarinwatchos10/_._",
  7366. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7367. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7368. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7369. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7370. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7371. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7372. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7373. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7374. "runtimes/win/lib/uap10.0.16299/_._",
  7375. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  7376. "system.security.cryptography.cng.nuspec",
  7377. "useSharedDesignerContext.txt",
  7378. "version.txt"
  7379. ]
  7380. },
  7381. "System.Security.Cryptography.Csp/4.3.0": {
  7382. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7383. "type": "package",
  7384. "path": "system.security.cryptography.csp/4.3.0",
  7385. "files": [
  7386. ".nupkg.metadata",
  7387. ".signature.p7s",
  7388. "ThirdPartyNotices.txt",
  7389. "dotnet_library_license.txt",
  7390. "lib/MonoAndroid10/_._",
  7391. "lib/MonoTouch10/_._",
  7392. "lib/net46/System.Security.Cryptography.Csp.dll",
  7393. "lib/xamarinios10/_._",
  7394. "lib/xamarinmac20/_._",
  7395. "lib/xamarintvos10/_._",
  7396. "lib/xamarinwatchos10/_._",
  7397. "ref/MonoAndroid10/_._",
  7398. "ref/MonoTouch10/_._",
  7399. "ref/net46/System.Security.Cryptography.Csp.dll",
  7400. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7401. "ref/xamarinios10/_._",
  7402. "ref/xamarinmac20/_._",
  7403. "ref/xamarintvos10/_._",
  7404. "ref/xamarinwatchos10/_._",
  7405. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7406. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7407. "runtimes/win/lib/netcore50/_._",
  7408. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7409. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7410. "system.security.cryptography.csp.nuspec"
  7411. ]
  7412. },
  7413. "System.Security.Cryptography.Encoding/4.3.0": {
  7414. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7415. "type": "package",
  7416. "path": "system.security.cryptography.encoding/4.3.0",
  7417. "files": [
  7418. ".nupkg.metadata",
  7419. ".signature.p7s",
  7420. "ThirdPartyNotices.txt",
  7421. "dotnet_library_license.txt",
  7422. "lib/MonoAndroid10/_._",
  7423. "lib/MonoTouch10/_._",
  7424. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7425. "lib/xamarinios10/_._",
  7426. "lib/xamarinmac20/_._",
  7427. "lib/xamarintvos10/_._",
  7428. "lib/xamarinwatchos10/_._",
  7429. "ref/MonoAndroid10/_._",
  7430. "ref/MonoTouch10/_._",
  7431. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7432. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7433. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7434. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7435. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7436. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7437. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7438. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7439. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7440. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7441. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7442. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7443. "ref/xamarinios10/_._",
  7444. "ref/xamarinmac20/_._",
  7445. "ref/xamarintvos10/_._",
  7446. "ref/xamarinwatchos10/_._",
  7447. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7448. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7449. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7450. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7451. "system.security.cryptography.encoding.nuspec"
  7452. ]
  7453. },
  7454. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7455. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7456. "type": "package",
  7457. "path": "system.security.cryptography.openssl/4.3.0",
  7458. "files": [
  7459. ".nupkg.metadata",
  7460. ".signature.p7s",
  7461. "ThirdPartyNotices.txt",
  7462. "dotnet_library_license.txt",
  7463. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7464. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7465. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7466. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7467. "system.security.cryptography.openssl.nuspec"
  7468. ]
  7469. },
  7470. "System.Security.Cryptography.Primitives/4.3.0": {
  7471. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7472. "type": "package",
  7473. "path": "system.security.cryptography.primitives/4.3.0",
  7474. "files": [
  7475. ".nupkg.metadata",
  7476. ".signature.p7s",
  7477. "ThirdPartyNotices.txt",
  7478. "dotnet_library_license.txt",
  7479. "lib/MonoAndroid10/_._",
  7480. "lib/MonoTouch10/_._",
  7481. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7482. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7483. "lib/xamarinios10/_._",
  7484. "lib/xamarinmac20/_._",
  7485. "lib/xamarintvos10/_._",
  7486. "lib/xamarinwatchos10/_._",
  7487. "ref/MonoAndroid10/_._",
  7488. "ref/MonoTouch10/_._",
  7489. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7490. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7491. "ref/xamarinios10/_._",
  7492. "ref/xamarinmac20/_._",
  7493. "ref/xamarintvos10/_._",
  7494. "ref/xamarinwatchos10/_._",
  7495. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7496. "system.security.cryptography.primitives.nuspec"
  7497. ]
  7498. },
  7499. "System.Security.Cryptography.ProtectedData/4.7.0": {
  7500. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  7501. "type": "package",
  7502. "path": "system.security.cryptography.protecteddata/4.7.0",
  7503. "files": [
  7504. ".nupkg.metadata",
  7505. ".signature.p7s",
  7506. "LICENSE.TXT",
  7507. "THIRD-PARTY-NOTICES.TXT",
  7508. "lib/MonoAndroid10/_._",
  7509. "lib/MonoTouch10/_._",
  7510. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7511. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7512. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7513. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7514. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7515. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7516. "lib/xamarinios10/_._",
  7517. "lib/xamarinmac20/_._",
  7518. "lib/xamarintvos10/_._",
  7519. "lib/xamarinwatchos10/_._",
  7520. "ref/MonoAndroid10/_._",
  7521. "ref/MonoTouch10/_._",
  7522. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  7523. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  7524. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  7525. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7526. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7527. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7528. "ref/xamarinios10/_._",
  7529. "ref/xamarinmac20/_._",
  7530. "ref/xamarintvos10/_._",
  7531. "ref/xamarinwatchos10/_._",
  7532. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7533. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7534. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  7535. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7536. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7537. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7538. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  7539. "system.security.cryptography.protecteddata.nuspec",
  7540. "useSharedDesignerContext.txt",
  7541. "version.txt"
  7542. ]
  7543. },
  7544. "System.Security.Cryptography.X509Certificates/4.3.0": {
  7545. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  7546. "type": "package",
  7547. "path": "system.security.cryptography.x509certificates/4.3.0",
  7548. "files": [
  7549. ".nupkg.metadata",
  7550. ".signature.p7s",
  7551. "ThirdPartyNotices.txt",
  7552. "dotnet_library_license.txt",
  7553. "lib/MonoAndroid10/_._",
  7554. "lib/MonoTouch10/_._",
  7555. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7556. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7557. "lib/xamarinios10/_._",
  7558. "lib/xamarinmac20/_._",
  7559. "lib/xamarintvos10/_._",
  7560. "lib/xamarinwatchos10/_._",
  7561. "ref/MonoAndroid10/_._",
  7562. "ref/MonoTouch10/_._",
  7563. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7564. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7565. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7566. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7567. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7568. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7569. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7570. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7571. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7572. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7573. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7574. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7575. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7576. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7577. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7578. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7579. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7580. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7581. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7582. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7583. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7584. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7585. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7586. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7587. "ref/xamarinios10/_._",
  7588. "ref/xamarinmac20/_._",
  7589. "ref/xamarintvos10/_._",
  7590. "ref/xamarinwatchos10/_._",
  7591. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7592. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7593. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7594. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7595. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7596. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7597. "system.security.cryptography.x509certificates.nuspec"
  7598. ]
  7599. },
  7600. "System.Security.Permissions/4.7.0": {
  7601. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  7602. "type": "package",
  7603. "path": "system.security.permissions/4.7.0",
  7604. "files": [
  7605. ".nupkg.metadata",
  7606. ".signature.p7s",
  7607. "LICENSE.TXT",
  7608. "THIRD-PARTY-NOTICES.TXT",
  7609. "lib/net461/System.Security.Permissions.dll",
  7610. "lib/net461/System.Security.Permissions.xml",
  7611. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  7612. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  7613. "lib/netstandard2.0/System.Security.Permissions.dll",
  7614. "lib/netstandard2.0/System.Security.Permissions.xml",
  7615. "ref/net461/System.Security.Permissions.dll",
  7616. "ref/net461/System.Security.Permissions.xml",
  7617. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  7618. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  7619. "ref/netstandard2.0/System.Security.Permissions.dll",
  7620. "ref/netstandard2.0/System.Security.Permissions.xml",
  7621. "system.security.permissions.4.7.0.nupkg.sha512",
  7622. "system.security.permissions.nuspec",
  7623. "useSharedDesignerContext.txt",
  7624. "version.txt"
  7625. ]
  7626. },
  7627. "System.Security.Principal.Windows/4.7.0": {
  7628. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  7629. "type": "package",
  7630. "path": "system.security.principal.windows/4.7.0",
  7631. "files": [
  7632. ".nupkg.metadata",
  7633. ".signature.p7s",
  7634. "LICENSE.TXT",
  7635. "THIRD-PARTY-NOTICES.TXT",
  7636. "lib/net46/System.Security.Principal.Windows.dll",
  7637. "lib/net461/System.Security.Principal.Windows.dll",
  7638. "lib/net461/System.Security.Principal.Windows.xml",
  7639. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7640. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7641. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  7642. "lib/uap10.0.16299/_._",
  7643. "ref/net46/System.Security.Principal.Windows.dll",
  7644. "ref/net461/System.Security.Principal.Windows.dll",
  7645. "ref/net461/System.Security.Principal.Windows.xml",
  7646. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  7647. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  7648. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7649. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7650. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7651. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7652. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7653. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7654. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7655. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7656. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7657. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7658. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7659. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7660. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7661. "ref/uap10.0.16299/_._",
  7662. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7663. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7664. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7665. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7666. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7667. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7668. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  7669. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7670. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  7671. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  7672. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  7673. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7674. "runtimes/win/lib/uap10.0.16299/_._",
  7675. "system.security.principal.windows.4.7.0.nupkg.sha512",
  7676. "system.security.principal.windows.nuspec",
  7677. "useSharedDesignerContext.txt",
  7678. "version.txt"
  7679. ]
  7680. },
  7681. "System.Text.Encoding/4.3.0": {
  7682. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7683. "type": "package",
  7684. "path": "system.text.encoding/4.3.0",
  7685. "files": [
  7686. ".nupkg.metadata",
  7687. ".signature.p7s",
  7688. "ThirdPartyNotices.txt",
  7689. "dotnet_library_license.txt",
  7690. "lib/MonoAndroid10/_._",
  7691. "lib/MonoTouch10/_._",
  7692. "lib/net45/_._",
  7693. "lib/portable-net45+win8+wp8+wpa81/_._",
  7694. "lib/win8/_._",
  7695. "lib/wp80/_._",
  7696. "lib/wpa81/_._",
  7697. "lib/xamarinios10/_._",
  7698. "lib/xamarinmac20/_._",
  7699. "lib/xamarintvos10/_._",
  7700. "lib/xamarinwatchos10/_._",
  7701. "ref/MonoAndroid10/_._",
  7702. "ref/MonoTouch10/_._",
  7703. "ref/net45/_._",
  7704. "ref/netcore50/System.Text.Encoding.dll",
  7705. "ref/netcore50/System.Text.Encoding.xml",
  7706. "ref/netcore50/de/System.Text.Encoding.xml",
  7707. "ref/netcore50/es/System.Text.Encoding.xml",
  7708. "ref/netcore50/fr/System.Text.Encoding.xml",
  7709. "ref/netcore50/it/System.Text.Encoding.xml",
  7710. "ref/netcore50/ja/System.Text.Encoding.xml",
  7711. "ref/netcore50/ko/System.Text.Encoding.xml",
  7712. "ref/netcore50/ru/System.Text.Encoding.xml",
  7713. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7714. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7715. "ref/netstandard1.0/System.Text.Encoding.dll",
  7716. "ref/netstandard1.0/System.Text.Encoding.xml",
  7717. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7718. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7719. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7720. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7721. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7722. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7723. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7724. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7725. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7726. "ref/netstandard1.3/System.Text.Encoding.dll",
  7727. "ref/netstandard1.3/System.Text.Encoding.xml",
  7728. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7729. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7730. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7731. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7732. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7733. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7734. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7735. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7736. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7737. "ref/portable-net45+win8+wp8+wpa81/_._",
  7738. "ref/win8/_._",
  7739. "ref/wp80/_._",
  7740. "ref/wpa81/_._",
  7741. "ref/xamarinios10/_._",
  7742. "ref/xamarinmac20/_._",
  7743. "ref/xamarintvos10/_._",
  7744. "ref/xamarinwatchos10/_._",
  7745. "system.text.encoding.4.3.0.nupkg.sha512",
  7746. "system.text.encoding.nuspec"
  7747. ]
  7748. },
  7749. "System.Text.Encoding.CodePages/4.7.0": {
  7750. "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  7751. "type": "package",
  7752. "path": "system.text.encoding.codepages/4.7.0",
  7753. "files": [
  7754. ".nupkg.metadata",
  7755. ".signature.p7s",
  7756. "LICENSE.TXT",
  7757. "THIRD-PARTY-NOTICES.TXT",
  7758. "lib/MonoAndroid10/_._",
  7759. "lib/MonoTouch10/_._",
  7760. "lib/net46/System.Text.Encoding.CodePages.dll",
  7761. "lib/net461/System.Text.Encoding.CodePages.dll",
  7762. "lib/net461/System.Text.Encoding.CodePages.xml",
  7763. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7764. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7765. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7766. "lib/xamarinios10/_._",
  7767. "lib/xamarinmac20/_._",
  7768. "lib/xamarintvos10/_._",
  7769. "lib/xamarinwatchos10/_._",
  7770. "ref/MonoAndroid10/_._",
  7771. "ref/MonoTouch10/_._",
  7772. "ref/xamarinios10/_._",
  7773. "ref/xamarinmac20/_._",
  7774. "ref/xamarintvos10/_._",
  7775. "ref/xamarinwatchos10/_._",
  7776. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7777. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  7778. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7779. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  7780. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7781. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7782. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  7783. "system.text.encoding.codepages.4.7.0.nupkg.sha512",
  7784. "system.text.encoding.codepages.nuspec",
  7785. "useSharedDesignerContext.txt",
  7786. "version.txt"
  7787. ]
  7788. },
  7789. "System.Text.Encoding.Extensions/4.3.0": {
  7790. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7791. "type": "package",
  7792. "path": "system.text.encoding.extensions/4.3.0",
  7793. "files": [
  7794. ".nupkg.metadata",
  7795. ".signature.p7s",
  7796. "ThirdPartyNotices.txt",
  7797. "dotnet_library_license.txt",
  7798. "lib/MonoAndroid10/_._",
  7799. "lib/MonoTouch10/_._",
  7800. "lib/net45/_._",
  7801. "lib/portable-net45+win8+wp8+wpa81/_._",
  7802. "lib/win8/_._",
  7803. "lib/wp80/_._",
  7804. "lib/wpa81/_._",
  7805. "lib/xamarinios10/_._",
  7806. "lib/xamarinmac20/_._",
  7807. "lib/xamarintvos10/_._",
  7808. "lib/xamarinwatchos10/_._",
  7809. "ref/MonoAndroid10/_._",
  7810. "ref/MonoTouch10/_._",
  7811. "ref/net45/_._",
  7812. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7813. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7814. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7815. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7816. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7817. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7818. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7819. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7820. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7821. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7822. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7823. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7824. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7825. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7826. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7827. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7828. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7829. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7830. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7831. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7832. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7833. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7834. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7835. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7836. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7837. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7838. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7839. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7840. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7841. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7842. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7843. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7844. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7845. "ref/portable-net45+win8+wp8+wpa81/_._",
  7846. "ref/win8/_._",
  7847. "ref/wp80/_._",
  7848. "ref/wpa81/_._",
  7849. "ref/xamarinios10/_._",
  7850. "ref/xamarinmac20/_._",
  7851. "ref/xamarintvos10/_._",
  7852. "ref/xamarinwatchos10/_._",
  7853. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7854. "system.text.encoding.extensions.nuspec"
  7855. ]
  7856. },
  7857. "System.Text.Encodings.Web/4.5.0": {
  7858. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  7859. "type": "package",
  7860. "path": "system.text.encodings.web/4.5.0",
  7861. "files": [
  7862. ".nupkg.metadata",
  7863. ".signature.p7s",
  7864. "LICENSE.TXT",
  7865. "THIRD-PARTY-NOTICES.TXT",
  7866. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  7867. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  7868. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7869. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7870. "system.text.encodings.web.4.5.0.nupkg.sha512",
  7871. "system.text.encodings.web.nuspec",
  7872. "useSharedDesignerContext.txt",
  7873. "version.txt"
  7874. ]
  7875. },
  7876. "System.Text.Json/4.7.1": {
  7877. "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
  7878. "type": "package",
  7879. "path": "system.text.json/4.7.1",
  7880. "files": [
  7881. ".nupkg.metadata",
  7882. ".signature.p7s",
  7883. "Icon.png",
  7884. "LICENSE.TXT",
  7885. "THIRD-PARTY-NOTICES.TXT",
  7886. "lib/net461/System.Text.Json.dll",
  7887. "lib/net461/System.Text.Json.xml",
  7888. "lib/netcoreapp3.0/System.Text.Json.dll",
  7889. "lib/netcoreapp3.0/System.Text.Json.xml",
  7890. "lib/netstandard2.0/System.Text.Json.dll",
  7891. "lib/netstandard2.0/System.Text.Json.xml",
  7892. "system.text.json.4.7.1.nupkg.sha512",
  7893. "system.text.json.nuspec",
  7894. "useSharedDesignerContext.txt",
  7895. "version.txt"
  7896. ]
  7897. },
  7898. "System.Text.RegularExpressions/4.3.0": {
  7899. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7900. "type": "package",
  7901. "path": "system.text.regularexpressions/4.3.0",
  7902. "files": [
  7903. ".nupkg.metadata",
  7904. ".signature.p7s",
  7905. "ThirdPartyNotices.txt",
  7906. "dotnet_library_license.txt",
  7907. "lib/MonoAndroid10/_._",
  7908. "lib/MonoTouch10/_._",
  7909. "lib/net45/_._",
  7910. "lib/net463/System.Text.RegularExpressions.dll",
  7911. "lib/netcore50/System.Text.RegularExpressions.dll",
  7912. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7913. "lib/portable-net45+win8+wp8+wpa81/_._",
  7914. "lib/win8/_._",
  7915. "lib/wp80/_._",
  7916. "lib/wpa81/_._",
  7917. "lib/xamarinios10/_._",
  7918. "lib/xamarinmac20/_._",
  7919. "lib/xamarintvos10/_._",
  7920. "lib/xamarinwatchos10/_._",
  7921. "ref/MonoAndroid10/_._",
  7922. "ref/MonoTouch10/_._",
  7923. "ref/net45/_._",
  7924. "ref/net463/System.Text.RegularExpressions.dll",
  7925. "ref/netcore50/System.Text.RegularExpressions.dll",
  7926. "ref/netcore50/System.Text.RegularExpressions.xml",
  7927. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7928. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7929. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7930. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7931. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7932. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7933. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7934. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7935. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7936. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7937. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7938. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7939. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7940. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7941. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7942. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7943. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7944. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7945. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7946. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7947. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7948. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7949. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7950. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7951. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7952. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7953. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7954. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7955. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7956. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7957. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7958. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7959. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7960. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7961. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7962. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7963. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7964. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7965. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7966. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7967. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7968. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7969. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7970. "ref/portable-net45+win8+wp8+wpa81/_._",
  7971. "ref/win8/_._",
  7972. "ref/wp80/_._",
  7973. "ref/wpa81/_._",
  7974. "ref/xamarinios10/_._",
  7975. "ref/xamarinmac20/_._",
  7976. "ref/xamarintvos10/_._",
  7977. "ref/xamarinwatchos10/_._",
  7978. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7979. "system.text.regularexpressions.nuspec"
  7980. ]
  7981. },
  7982. "System.Threading/4.3.0": {
  7983. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7984. "type": "package",
  7985. "path": "system.threading/4.3.0",
  7986. "files": [
  7987. ".nupkg.metadata",
  7988. ".signature.p7s",
  7989. "ThirdPartyNotices.txt",
  7990. "dotnet_library_license.txt",
  7991. "lib/MonoAndroid10/_._",
  7992. "lib/MonoTouch10/_._",
  7993. "lib/net45/_._",
  7994. "lib/netcore50/System.Threading.dll",
  7995. "lib/netstandard1.3/System.Threading.dll",
  7996. "lib/portable-net45+win8+wp8+wpa81/_._",
  7997. "lib/win8/_._",
  7998. "lib/wp80/_._",
  7999. "lib/wpa81/_._",
  8000. "lib/xamarinios10/_._",
  8001. "lib/xamarinmac20/_._",
  8002. "lib/xamarintvos10/_._",
  8003. "lib/xamarinwatchos10/_._",
  8004. "ref/MonoAndroid10/_._",
  8005. "ref/MonoTouch10/_._",
  8006. "ref/net45/_._",
  8007. "ref/netcore50/System.Threading.dll",
  8008. "ref/netcore50/System.Threading.xml",
  8009. "ref/netcore50/de/System.Threading.xml",
  8010. "ref/netcore50/es/System.Threading.xml",
  8011. "ref/netcore50/fr/System.Threading.xml",
  8012. "ref/netcore50/it/System.Threading.xml",
  8013. "ref/netcore50/ja/System.Threading.xml",
  8014. "ref/netcore50/ko/System.Threading.xml",
  8015. "ref/netcore50/ru/System.Threading.xml",
  8016. "ref/netcore50/zh-hans/System.Threading.xml",
  8017. "ref/netcore50/zh-hant/System.Threading.xml",
  8018. "ref/netstandard1.0/System.Threading.dll",
  8019. "ref/netstandard1.0/System.Threading.xml",
  8020. "ref/netstandard1.0/de/System.Threading.xml",
  8021. "ref/netstandard1.0/es/System.Threading.xml",
  8022. "ref/netstandard1.0/fr/System.Threading.xml",
  8023. "ref/netstandard1.0/it/System.Threading.xml",
  8024. "ref/netstandard1.0/ja/System.Threading.xml",
  8025. "ref/netstandard1.0/ko/System.Threading.xml",
  8026. "ref/netstandard1.0/ru/System.Threading.xml",
  8027. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8028. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8029. "ref/netstandard1.3/System.Threading.dll",
  8030. "ref/netstandard1.3/System.Threading.xml",
  8031. "ref/netstandard1.3/de/System.Threading.xml",
  8032. "ref/netstandard1.3/es/System.Threading.xml",
  8033. "ref/netstandard1.3/fr/System.Threading.xml",
  8034. "ref/netstandard1.3/it/System.Threading.xml",
  8035. "ref/netstandard1.3/ja/System.Threading.xml",
  8036. "ref/netstandard1.3/ko/System.Threading.xml",
  8037. "ref/netstandard1.3/ru/System.Threading.xml",
  8038. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8039. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8040. "ref/portable-net45+win8+wp8+wpa81/_._",
  8041. "ref/win8/_._",
  8042. "ref/wp80/_._",
  8043. "ref/wpa81/_._",
  8044. "ref/xamarinios10/_._",
  8045. "ref/xamarinmac20/_._",
  8046. "ref/xamarintvos10/_._",
  8047. "ref/xamarinwatchos10/_._",
  8048. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8049. "system.threading.4.3.0.nupkg.sha512",
  8050. "system.threading.nuspec"
  8051. ]
  8052. },
  8053. "System.Threading.Tasks/4.3.0": {
  8054. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8055. "type": "package",
  8056. "path": "system.threading.tasks/4.3.0",
  8057. "files": [
  8058. ".nupkg.metadata",
  8059. ".signature.p7s",
  8060. "ThirdPartyNotices.txt",
  8061. "dotnet_library_license.txt",
  8062. "lib/MonoAndroid10/_._",
  8063. "lib/MonoTouch10/_._",
  8064. "lib/net45/_._",
  8065. "lib/portable-net45+win8+wp8+wpa81/_._",
  8066. "lib/win8/_._",
  8067. "lib/wp80/_._",
  8068. "lib/wpa81/_._",
  8069. "lib/xamarinios10/_._",
  8070. "lib/xamarinmac20/_._",
  8071. "lib/xamarintvos10/_._",
  8072. "lib/xamarinwatchos10/_._",
  8073. "ref/MonoAndroid10/_._",
  8074. "ref/MonoTouch10/_._",
  8075. "ref/net45/_._",
  8076. "ref/netcore50/System.Threading.Tasks.dll",
  8077. "ref/netcore50/System.Threading.Tasks.xml",
  8078. "ref/netcore50/de/System.Threading.Tasks.xml",
  8079. "ref/netcore50/es/System.Threading.Tasks.xml",
  8080. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8081. "ref/netcore50/it/System.Threading.Tasks.xml",
  8082. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8083. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8084. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8085. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8086. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8087. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8088. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8089. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8090. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8091. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8092. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8093. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8094. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8095. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8096. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8097. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8098. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8099. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8100. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8101. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8102. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8103. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8104. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8105. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8106. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8107. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8108. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8109. "ref/portable-net45+win8+wp8+wpa81/_._",
  8110. "ref/win8/_._",
  8111. "ref/wp80/_._",
  8112. "ref/wpa81/_._",
  8113. "ref/xamarinios10/_._",
  8114. "ref/xamarinmac20/_._",
  8115. "ref/xamarintvos10/_._",
  8116. "ref/xamarinwatchos10/_._",
  8117. "system.threading.tasks.4.3.0.nupkg.sha512",
  8118. "system.threading.tasks.nuspec"
  8119. ]
  8120. },
  8121. "System.Threading.Tasks.Extensions/4.3.0": {
  8122. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  8123. "type": "package",
  8124. "path": "system.threading.tasks.extensions/4.3.0",
  8125. "files": [
  8126. ".nupkg.metadata",
  8127. ".signature.p7s",
  8128. "ThirdPartyNotices.txt",
  8129. "dotnet_library_license.txt",
  8130. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8131. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8132. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8133. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8134. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  8135. "system.threading.tasks.extensions.nuspec"
  8136. ]
  8137. },
  8138. "System.Threading.Timer/4.3.0": {
  8139. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8140. "type": "package",
  8141. "path": "system.threading.timer/4.3.0",
  8142. "files": [
  8143. ".nupkg.metadata",
  8144. ".signature.p7s",
  8145. "ThirdPartyNotices.txt",
  8146. "dotnet_library_license.txt",
  8147. "lib/MonoAndroid10/_._",
  8148. "lib/MonoTouch10/_._",
  8149. "lib/net451/_._",
  8150. "lib/portable-net451+win81+wpa81/_._",
  8151. "lib/win81/_._",
  8152. "lib/wpa81/_._",
  8153. "lib/xamarinios10/_._",
  8154. "lib/xamarinmac20/_._",
  8155. "lib/xamarintvos10/_._",
  8156. "lib/xamarinwatchos10/_._",
  8157. "ref/MonoAndroid10/_._",
  8158. "ref/MonoTouch10/_._",
  8159. "ref/net451/_._",
  8160. "ref/netcore50/System.Threading.Timer.dll",
  8161. "ref/netcore50/System.Threading.Timer.xml",
  8162. "ref/netcore50/de/System.Threading.Timer.xml",
  8163. "ref/netcore50/es/System.Threading.Timer.xml",
  8164. "ref/netcore50/fr/System.Threading.Timer.xml",
  8165. "ref/netcore50/it/System.Threading.Timer.xml",
  8166. "ref/netcore50/ja/System.Threading.Timer.xml",
  8167. "ref/netcore50/ko/System.Threading.Timer.xml",
  8168. "ref/netcore50/ru/System.Threading.Timer.xml",
  8169. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8170. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8171. "ref/netstandard1.2/System.Threading.Timer.dll",
  8172. "ref/netstandard1.2/System.Threading.Timer.xml",
  8173. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8174. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8175. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8176. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8177. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8178. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8179. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8180. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8181. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8182. "ref/portable-net451+win81+wpa81/_._",
  8183. "ref/win81/_._",
  8184. "ref/wpa81/_._",
  8185. "ref/xamarinios10/_._",
  8186. "ref/xamarinmac20/_._",
  8187. "ref/xamarintvos10/_._",
  8188. "ref/xamarinwatchos10/_._",
  8189. "system.threading.timer.4.3.0.nupkg.sha512",
  8190. "system.threading.timer.nuspec"
  8191. ]
  8192. },
  8193. "System.Windows.Extensions/4.7.0": {
  8194. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  8195. "type": "package",
  8196. "path": "system.windows.extensions/4.7.0",
  8197. "files": [
  8198. ".nupkg.metadata",
  8199. ".signature.p7s",
  8200. "LICENSE.TXT",
  8201. "THIRD-PARTY-NOTICES.TXT",
  8202. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8203. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8204. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  8205. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  8206. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  8207. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  8208. "system.windows.extensions.4.7.0.nupkg.sha512",
  8209. "system.windows.extensions.nuspec",
  8210. "useSharedDesignerContext.txt",
  8211. "version.txt"
  8212. ]
  8213. },
  8214. "System.Xml.ReaderWriter/4.3.0": {
  8215. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8216. "type": "package",
  8217. "path": "system.xml.readerwriter/4.3.0",
  8218. "files": [
  8219. ".nupkg.metadata",
  8220. ".signature.p7s",
  8221. "ThirdPartyNotices.txt",
  8222. "dotnet_library_license.txt",
  8223. "lib/MonoAndroid10/_._",
  8224. "lib/MonoTouch10/_._",
  8225. "lib/net45/_._",
  8226. "lib/net46/System.Xml.ReaderWriter.dll",
  8227. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8228. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8229. "lib/portable-net45+win8+wp8+wpa81/_._",
  8230. "lib/win8/_._",
  8231. "lib/wp80/_._",
  8232. "lib/wpa81/_._",
  8233. "lib/xamarinios10/_._",
  8234. "lib/xamarinmac20/_._",
  8235. "lib/xamarintvos10/_._",
  8236. "lib/xamarinwatchos10/_._",
  8237. "ref/MonoAndroid10/_._",
  8238. "ref/MonoTouch10/_._",
  8239. "ref/net45/_._",
  8240. "ref/net46/System.Xml.ReaderWriter.dll",
  8241. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8242. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8243. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8244. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8245. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8246. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8247. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8248. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8249. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8250. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8251. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8252. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8253. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8254. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8255. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8256. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8257. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8258. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8259. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8260. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8261. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8262. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8263. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8264. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8265. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8266. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8267. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8268. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8269. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8270. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8271. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8272. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8273. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8274. "ref/portable-net45+win8+wp8+wpa81/_._",
  8275. "ref/win8/_._",
  8276. "ref/wp80/_._",
  8277. "ref/wpa81/_._",
  8278. "ref/xamarinios10/_._",
  8279. "ref/xamarinmac20/_._",
  8280. "ref/xamarintvos10/_._",
  8281. "ref/xamarinwatchos10/_._",
  8282. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8283. "system.xml.readerwriter.nuspec"
  8284. ]
  8285. },
  8286. "System.Xml.XDocument/4.3.0": {
  8287. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8288. "type": "package",
  8289. "path": "system.xml.xdocument/4.3.0",
  8290. "files": [
  8291. ".nupkg.metadata",
  8292. ".signature.p7s",
  8293. "ThirdPartyNotices.txt",
  8294. "dotnet_library_license.txt",
  8295. "lib/MonoAndroid10/_._",
  8296. "lib/MonoTouch10/_._",
  8297. "lib/net45/_._",
  8298. "lib/netcore50/System.Xml.XDocument.dll",
  8299. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8300. "lib/portable-net45+win8+wp8+wpa81/_._",
  8301. "lib/win8/_._",
  8302. "lib/wp80/_._",
  8303. "lib/wpa81/_._",
  8304. "lib/xamarinios10/_._",
  8305. "lib/xamarinmac20/_._",
  8306. "lib/xamarintvos10/_._",
  8307. "lib/xamarinwatchos10/_._",
  8308. "ref/MonoAndroid10/_._",
  8309. "ref/MonoTouch10/_._",
  8310. "ref/net45/_._",
  8311. "ref/netcore50/System.Xml.XDocument.dll",
  8312. "ref/netcore50/System.Xml.XDocument.xml",
  8313. "ref/netcore50/de/System.Xml.XDocument.xml",
  8314. "ref/netcore50/es/System.Xml.XDocument.xml",
  8315. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8316. "ref/netcore50/it/System.Xml.XDocument.xml",
  8317. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8318. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8319. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8320. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8321. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8322. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8323. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8324. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8325. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8326. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8327. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8328. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8329. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8330. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8331. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8332. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8333. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8334. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8335. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8336. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8337. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8338. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8339. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8340. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8341. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8342. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8343. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8344. "ref/portable-net45+win8+wp8+wpa81/_._",
  8345. "ref/win8/_._",
  8346. "ref/wp80/_._",
  8347. "ref/wpa81/_._",
  8348. "ref/xamarinios10/_._",
  8349. "ref/xamarinmac20/_._",
  8350. "ref/xamarintvos10/_._",
  8351. "ref/xamarinwatchos10/_._",
  8352. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8353. "system.xml.xdocument.nuspec"
  8354. ]
  8355. },
  8356. "OASystem.Domain/1.0.0": {
  8357. "type": "project",
  8358. "path": "../PaymentSystem.Domain/OASystem.Domain.csproj",
  8359. "msbuildProject": "../PaymentSystem.Domain/OASystem.Domain.csproj"
  8360. },
  8361. "OASystem.Infrastructure/1.0.0": {
  8362. "type": "project",
  8363. "path": "../PaymentSystem.Infrastructure/OASystem.Infrastructure.csproj",
  8364. "msbuildProject": "../PaymentSystem.Infrastructure/OASystem.Infrastructure.csproj"
  8365. }
  8366. },
  8367. "projectFileDependencyGroups": {
  8368. "net6.0": [
  8369. "AutoMapper >= 12.0.0",
  8370. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 12.0.0",
  8371. "Autofac >= 6.4.0",
  8372. "Autofac.Extensions.DependencyInjection >= 8.0.0",
  8373. "Betalgo.OpenAI.GPT3 >= 6.6.7",
  8374. "BouncyCastle.NetCore >= 1.8.8",
  8375. "Flurl.Http >= 3.2.4",
  8376. "Microsoft.AspNetCore.Authentication.JwtBearer >= 6.0.11",
  8377. "OASystem.Domain >= 1.0.0",
  8378. "OASystem.Infrastructure >= 1.0.0",
  8379. "QRCoder >= 1.4.1",
  8380. "Serilog.Sinks.File >= 5.0.0",
  8381. "SqlSugarCore >= 5.1.3.32",
  8382. "Swashbuckle.AspNetCore >= 6.4.0"
  8383. ]
  8384. },
  8385. "packageFolders": {
  8386. "C:\\Users\\Administrator\\.nuget\\packages\\": {}
  8387. },
  8388. "project": {
  8389. "version": "1.0.0",
  8390. "restore": {
  8391. "projectUniqueName": "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Api\\OASystem.API.csproj",
  8392. "projectName": "OASystem.API",
  8393. "projectPath": "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Api\\OASystem.API.csproj",
  8394. "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
  8395. "outputPath": "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Api\\obj\\",
  8396. "projectStyle": "PackageReference",
  8397. "configFilePaths": [
  8398. "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8399. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8400. ],
  8401. "originalTargetFrameworks": [
  8402. "net6.0"
  8403. ],
  8404. "sources": {
  8405. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8406. "https://api.nuget.org/v3/index.json": {}
  8407. },
  8408. "frameworks": {
  8409. "net6.0": {
  8410. "targetAlias": "net6.0",
  8411. "projectReferences": {
  8412. "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Domain\\OASystem.Domain.csproj": {
  8413. "projectPath": "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Domain\\OASystem.Domain.csproj"
  8414. },
  8415. "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Infrastructure\\OASystem.Infrastructure.csproj": {
  8416. "projectPath": "C:\\Users\\Administrator\\Desktop\\OA2023相关文件\\OA2023\\OASystem\\PaymentSystem.Infrastructure\\OASystem.Infrastructure.csproj"
  8417. }
  8418. }
  8419. }
  8420. },
  8421. "warningProperties": {
  8422. "warnAsError": [
  8423. "NU1605"
  8424. ]
  8425. }
  8426. },
  8427. "frameworks": {
  8428. "net6.0": {
  8429. "targetAlias": "net6.0",
  8430. "dependencies": {
  8431. "AutoMapper": {
  8432. "target": "Package",
  8433. "version": "[12.0.0, )"
  8434. },
  8435. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  8436. "target": "Package",
  8437. "version": "[12.0.0, )"
  8438. },
  8439. "Autofac": {
  8440. "target": "Package",
  8441. "version": "[6.4.0, )"
  8442. },
  8443. "Autofac.Extensions.DependencyInjection": {
  8444. "target": "Package",
  8445. "version": "[8.0.0, )"
  8446. },
  8447. "Betalgo.OpenAI.GPT3": {
  8448. "target": "Package",
  8449. "version": "[6.6.7, )"
  8450. },
  8451. "BouncyCastle.NetCore": {
  8452. "target": "Package",
  8453. "version": "[1.8.8, )"
  8454. },
  8455. "Flurl.Http": {
  8456. "target": "Package",
  8457. "version": "[3.2.4, )"
  8458. },
  8459. "Microsoft.AspNetCore.Authentication.JwtBearer": {
  8460. "target": "Package",
  8461. "version": "[6.0.11, )"
  8462. },
  8463. "QRCoder": {
  8464. "target": "Package",
  8465. "version": "[1.4.1, )"
  8466. },
  8467. "Serilog.Sinks.File": {
  8468. "target": "Package",
  8469. "version": "[5.0.0, )"
  8470. },
  8471. "SqlSugarCore": {
  8472. "target": "Package",
  8473. "version": "[5.1.3.32, )"
  8474. },
  8475. "Swashbuckle.AspNetCore": {
  8476. "target": "Package",
  8477. "version": "[6.4.0, )"
  8478. }
  8479. },
  8480. "imports": [
  8481. "net461",
  8482. "net462",
  8483. "net47",
  8484. "net471",
  8485. "net472",
  8486. "net48",
  8487. "net481"
  8488. ],
  8489. "assetTargetFallback": true,
  8490. "warn": true,
  8491. "frameworkReferences": {
  8492. "Microsoft.AspNetCore.App": {
  8493. "privateAssets": "none"
  8494. },
  8495. "Microsoft.NETCore.App": {
  8496. "privateAssets": "all"
  8497. }
  8498. },
  8499. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
  8500. }
  8501. }
  8502. }
  8503. }