project.assets.json 420 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "coverlet.collector/1.2.0": {
  6. "type": "package",
  7. "build": {
  8. "build/netstandard1.0/coverlet.collector.targets": {}
  9. }
  10. },
  11. "Google.Protobuf/3.5.1": {
  12. "type": "package",
  13. "dependencies": {
  14. "NETStandard.Library": "1.6.1"
  15. },
  16. "compile": {
  17. "lib/netstandard1.0/Google.Protobuf.dll": {}
  18. },
  19. "runtime": {
  20. "lib/netstandard1.0/Google.Protobuf.dll": {}
  21. }
  22. },
  23. "iTextSharp.LGPLv2.Core/1.7.0": {
  24. "type": "package",
  25. "dependencies": {
  26. "Portable.BouncyCastle": "1.8.8",
  27. "System.Collections.NonGeneric": "4.3.0",
  28. "System.Drawing.Common": "4.7.0",
  29. "System.Net.Requests": "4.3.0",
  30. "System.Reflection.TypeExtensions": "4.7.0",
  31. "System.Runtime.Loader": "4.3.0",
  32. "System.Security.Cryptography.Algorithms": "4.3.1",
  33. "System.Text.Encoding.CodePages": "4.7.1",
  34. "System.Xml.ReaderWriter": "4.3.1",
  35. "System.Xml.XmlDocument": "4.3.0"
  36. },
  37. "compile": {
  38. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll": {}
  39. },
  40. "runtime": {
  41. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll": {}
  42. }
  43. },
  44. "Microsoft.AspNetCore.Cryptography.Internal/3.1.10": {
  45. "type": "package",
  46. "compile": {
  47. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  48. },
  49. "runtime": {
  50. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  51. }
  52. },
  53. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.10": {
  54. "type": "package",
  55. "dependencies": {
  56. "Microsoft.AspNetCore.Cryptography.Internal": "3.1.10"
  57. },
  58. "compile": {
  59. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  60. },
  61. "runtime": {
  62. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  63. }
  64. },
  65. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  66. "type": "package",
  67. "dependencies": {
  68. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  69. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  70. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  71. },
  72. "compile": {
  73. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  74. },
  75. "runtime": {
  76. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  77. }
  78. },
  79. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  80. "type": "package",
  81. "dependencies": {
  82. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  83. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  84. },
  85. "compile": {
  86. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  87. },
  88. "runtime": {
  89. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  90. }
  91. },
  92. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  93. "type": "package",
  94. "dependencies": {
  95. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  96. "System.Text.Encodings.Web": "4.5.0"
  97. },
  98. "compile": {
  99. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  100. },
  101. "runtime": {
  102. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  103. }
  104. },
  105. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  106. "type": "package",
  107. "dependencies": {
  108. "Microsoft.Extensions.Primitives": "2.2.0"
  109. },
  110. "compile": {
  111. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  112. },
  113. "runtime": {
  114. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  115. }
  116. },
  117. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/3.1.10": {
  118. "type": "package",
  119. "dependencies": {
  120. "Microsoft.EntityFrameworkCore.Relational": "3.1.10",
  121. "Microsoft.Extensions.Identity.Stores": "3.1.10"
  122. },
  123. "compile": {
  124. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  125. },
  126. "runtime": {
  127. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  128. }
  129. },
  130. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  131. "type": "package",
  132. "compile": {
  133. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  134. },
  135. "runtime": {
  136. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  137. }
  138. },
  139. "Microsoft.Bcl.HashCode/1.1.0": {
  140. "type": "package",
  141. "compile": {
  142. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  143. },
  144. "runtime": {
  145. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  146. }
  147. },
  148. "Microsoft.CodeCoverage/16.5.0": {
  149. "type": "package",
  150. "compile": {
  151. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  152. },
  153. "runtime": {
  154. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  155. },
  156. "build": {
  157. "build/netstandard1.0/Microsoft.CodeCoverage.props": {},
  158. "build/netstandard1.0/Microsoft.CodeCoverage.targets": {}
  159. }
  160. },
  161. "Microsoft.CSharp/4.3.0": {
  162. "type": "package",
  163. "dependencies": {
  164. "System.Collections": "4.3.0",
  165. "System.Diagnostics.Debug": "4.3.0",
  166. "System.Dynamic.Runtime": "4.3.0",
  167. "System.Globalization": "4.3.0",
  168. "System.Linq": "4.3.0",
  169. "System.Linq.Expressions": "4.3.0",
  170. "System.ObjectModel": "4.3.0",
  171. "System.Reflection": "4.3.0",
  172. "System.Reflection.Extensions": "4.3.0",
  173. "System.Reflection.Primitives": "4.3.0",
  174. "System.Reflection.TypeExtensions": "4.3.0",
  175. "System.Resources.ResourceManager": "4.3.0",
  176. "System.Runtime": "4.3.0",
  177. "System.Runtime.Extensions": "4.3.0",
  178. "System.Runtime.InteropServices": "4.3.0",
  179. "System.Threading": "4.3.0"
  180. },
  181. "compile": {
  182. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  183. },
  184. "runtime": {
  185. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  186. }
  187. },
  188. "Microsoft.Data.Sqlite/2.2.4": {
  189. "type": "package",
  190. "dependencies": {
  191. "Microsoft.Data.Sqlite.Core": "2.2.4",
  192. "SQLitePCLRaw.bundle_green": "1.1.12"
  193. },
  194. "compile": {
  195. "lib/netstandard2.0/_._": {}
  196. },
  197. "runtime": {
  198. "lib/netstandard2.0/_._": {}
  199. }
  200. },
  201. "Microsoft.Data.Sqlite.Core/2.2.4": {
  202. "type": "package",
  203. "dependencies": {
  204. "SQLitePCLRaw.core": "1.1.12"
  205. },
  206. "compile": {
  207. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  208. },
  209. "runtime": {
  210. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  211. }
  212. },
  213. "Microsoft.EntityFrameworkCore/3.1.10": {
  214. "type": "package",
  215. "dependencies": {
  216. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  217. "Microsoft.Bcl.HashCode": "1.1.0",
  218. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.10",
  219. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.10",
  220. "Microsoft.Extensions.Caching.Memory": "3.1.10",
  221. "Microsoft.Extensions.DependencyInjection": "3.1.10",
  222. "Microsoft.Extensions.Logging": "3.1.10",
  223. "System.Collections.Immutable": "1.7.1",
  224. "System.ComponentModel.Annotations": "4.7.0",
  225. "System.Diagnostics.DiagnosticSource": "4.7.1"
  226. },
  227. "compile": {
  228. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  229. },
  230. "runtime": {
  231. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  232. }
  233. },
  234. "Microsoft.EntityFrameworkCore.Abstractions/3.1.10": {
  235. "type": "package",
  236. "compile": {
  237. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  238. },
  239. "runtime": {
  240. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  241. }
  242. },
  243. "Microsoft.EntityFrameworkCore.Analyzers/3.1.10": {
  244. "type": "package",
  245. "compile": {
  246. "lib/netstandard2.0/_._": {}
  247. },
  248. "runtime": {
  249. "lib/netstandard2.0/_._": {}
  250. }
  251. },
  252. "Microsoft.EntityFrameworkCore.Relational/3.1.10": {
  253. "type": "package",
  254. "dependencies": {
  255. "Microsoft.EntityFrameworkCore": "3.1.10"
  256. },
  257. "compile": {
  258. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  259. },
  260. "runtime": {
  261. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  262. }
  263. },
  264. "Microsoft.Extensions.Caching.Abstractions/3.1.10": {
  265. "type": "package",
  266. "dependencies": {
  267. "Microsoft.Extensions.Primitives": "3.1.10"
  268. },
  269. "compile": {
  270. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  271. },
  272. "runtime": {
  273. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  274. }
  275. },
  276. "Microsoft.Extensions.Caching.Memory/3.1.10": {
  277. "type": "package",
  278. "dependencies": {
  279. "Microsoft.Extensions.Caching.Abstractions": "3.1.10",
  280. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10",
  281. "Microsoft.Extensions.Logging.Abstractions": "3.1.10",
  282. "Microsoft.Extensions.Options": "3.1.10"
  283. },
  284. "compile": {
  285. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  286. },
  287. "runtime": {
  288. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  289. }
  290. },
  291. "Microsoft.Extensions.Configuration/3.1.10": {
  292. "type": "package",
  293. "dependencies": {
  294. "Microsoft.Extensions.Configuration.Abstractions": "3.1.10"
  295. },
  296. "compile": {
  297. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  298. },
  299. "runtime": {
  300. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  301. }
  302. },
  303. "Microsoft.Extensions.Configuration.Abstractions/3.1.10": {
  304. "type": "package",
  305. "dependencies": {
  306. "Microsoft.Extensions.Primitives": "3.1.10"
  307. },
  308. "compile": {
  309. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  310. },
  311. "runtime": {
  312. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  313. }
  314. },
  315. "Microsoft.Extensions.Configuration.Binder/3.1.10": {
  316. "type": "package",
  317. "dependencies": {
  318. "Microsoft.Extensions.Configuration": "3.1.10"
  319. },
  320. "compile": {
  321. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  322. },
  323. "runtime": {
  324. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  325. }
  326. },
  327. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  328. "type": "package",
  329. "dependencies": {
  330. "Microsoft.Extensions.Configuration": "3.1.2",
  331. "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
  332. },
  333. "compile": {
  334. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  335. },
  336. "runtime": {
  337. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  338. }
  339. },
  340. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  341. "type": "package",
  342. "dependencies": {
  343. "Microsoft.Extensions.Configuration": "3.1.2",
  344. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2"
  345. },
  346. "compile": {
  347. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {}
  348. },
  349. "runtime": {
  350. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {}
  351. }
  352. },
  353. "Microsoft.Extensions.DependencyInjection/3.1.10": {
  354. "type": "package",
  355. "dependencies": {
  356. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10"
  357. },
  358. "compile": {
  359. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  360. },
  361. "runtime": {
  362. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  363. }
  364. },
  365. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.10": {
  366. "type": "package",
  367. "compile": {
  368. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  369. },
  370. "runtime": {
  371. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  372. }
  373. },
  374. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  375. "type": "package",
  376. "dependencies": {
  377. "Microsoft.Extensions.Primitives": "3.1.2"
  378. },
  379. "compile": {
  380. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  381. },
  382. "runtime": {
  383. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  384. }
  385. },
  386. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  387. "type": "package",
  388. "dependencies": {
  389. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
  390. "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
  391. },
  392. "compile": {
  393. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {}
  394. },
  395. "runtime": {
  396. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {}
  397. }
  398. },
  399. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  400. "type": "package",
  401. "compile": {
  402. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  403. },
  404. "runtime": {
  405. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  406. }
  407. },
  408. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  409. "type": "package",
  410. "dependencies": {
  411. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  412. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  413. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  414. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  415. },
  416. "compile": {
  417. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  418. },
  419. "runtime": {
  420. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  421. }
  422. },
  423. "Microsoft.Extensions.Identity.Core/3.1.10": {
  424. "type": "package",
  425. "dependencies": {
  426. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.10",
  427. "Microsoft.Extensions.Logging": "3.1.10",
  428. "Microsoft.Extensions.Options": "3.1.10"
  429. },
  430. "compile": {
  431. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll": {}
  432. },
  433. "runtime": {
  434. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll": {}
  435. }
  436. },
  437. "Microsoft.Extensions.Identity.Stores/3.1.10": {
  438. "type": "package",
  439. "dependencies": {
  440. "Microsoft.Extensions.Caching.Abstractions": "3.1.10",
  441. "Microsoft.Extensions.Identity.Core": "3.1.10",
  442. "Microsoft.Extensions.Logging": "3.1.10"
  443. },
  444. "compile": {
  445. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll": {}
  446. },
  447. "runtime": {
  448. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll": {}
  449. }
  450. },
  451. "Microsoft.Extensions.Logging/3.1.10": {
  452. "type": "package",
  453. "dependencies": {
  454. "Microsoft.Extensions.Configuration.Binder": "3.1.10",
  455. "Microsoft.Extensions.DependencyInjection": "3.1.10",
  456. "Microsoft.Extensions.Logging.Abstractions": "3.1.10",
  457. "Microsoft.Extensions.Options": "3.1.10"
  458. },
  459. "compile": {
  460. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  461. },
  462. "runtime": {
  463. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  464. }
  465. },
  466. "Microsoft.Extensions.Logging.Abstractions/3.1.10": {
  467. "type": "package",
  468. "compile": {
  469. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  473. }
  474. },
  475. "Microsoft.Extensions.Options/3.1.10": {
  476. "type": "package",
  477. "dependencies": {
  478. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10",
  479. "Microsoft.Extensions.Primitives": "3.1.10"
  480. },
  481. "compile": {
  482. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  483. },
  484. "runtime": {
  485. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  486. }
  487. },
  488. "Microsoft.Extensions.Primitives/3.1.10": {
  489. "type": "package",
  490. "compile": {
  491. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  492. },
  493. "runtime": {
  494. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  495. }
  496. },
  497. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  498. "type": "package",
  499. "dependencies": {
  500. "Microsoft.IdentityModel.Tokens": "5.6.0",
  501. "Newtonsoft.Json": "10.0.1"
  502. },
  503. "compile": {
  504. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  505. },
  506. "runtime": {
  507. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  508. }
  509. },
  510. "Microsoft.IdentityModel.Logging/5.6.0": {
  511. "type": "package",
  512. "compile": {
  513. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  514. },
  515. "runtime": {
  516. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  517. }
  518. },
  519. "Microsoft.IdentityModel.Tokens/5.6.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.IdentityModel.Logging": "5.6.0",
  523. "Newtonsoft.Json": "10.0.1",
  524. "System.Security.Cryptography.Cng": "4.5.0"
  525. },
  526. "compile": {
  527. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  528. },
  529. "runtime": {
  530. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  531. }
  532. },
  533. "Microsoft.NET.Test.Sdk/16.5.0": {
  534. "type": "package",
  535. "dependencies": {
  536. "Microsoft.CodeCoverage": "16.5.0",
  537. "Microsoft.TestPlatform.TestHost": "16.5.0"
  538. },
  539. "build": {
  540. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {},
  541. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {}
  542. },
  543. "buildMultiTargeting": {
  544. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
  545. }
  546. },
  547. "Microsoft.NETCore.Jit/2.0.8": {
  548. "type": "package"
  549. },
  550. "Microsoft.NETCore.Platforms/3.1.1": {
  551. "type": "package",
  552. "compile": {
  553. "lib/netstandard1.0/_._": {}
  554. },
  555. "runtime": {
  556. "lib/netstandard1.0/_._": {}
  557. }
  558. },
  559. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  560. "type": "package",
  561. "dependencies": {
  562. "Microsoft.NETCore.Jit": "2.0.8"
  563. },
  564. "compile": {
  565. "ref/netstandard1.0/_._": {}
  566. }
  567. },
  568. "Microsoft.NETCore.Targets/1.1.0": {
  569. "type": "package",
  570. "compile": {
  571. "lib/netstandard1.0/_._": {}
  572. },
  573. "runtime": {
  574. "lib/netstandard1.0/_._": {}
  575. }
  576. },
  577. "Microsoft.TestPlatform.ObjectModel/16.5.0": {
  578. "type": "package",
  579. "dependencies": {
  580. "NuGet.Frameworks": "5.0.0"
  581. },
  582. "compile": {
  583. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
  584. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  585. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  586. },
  587. "runtime": {
  588. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
  589. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  590. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  591. },
  592. "resource": {
  593. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  594. "locale": "cs"
  595. },
  596. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  597. "locale": "cs"
  598. },
  599. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  600. "locale": "de"
  601. },
  602. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  603. "locale": "de"
  604. },
  605. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  606. "locale": "es"
  607. },
  608. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  609. "locale": "es"
  610. },
  611. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  612. "locale": "fr"
  613. },
  614. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  615. "locale": "fr"
  616. },
  617. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  618. "locale": "it"
  619. },
  620. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  621. "locale": "it"
  622. },
  623. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  624. "locale": "ja"
  625. },
  626. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  627. "locale": "ja"
  628. },
  629. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  630. "locale": "ko"
  631. },
  632. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  633. "locale": "ko"
  634. },
  635. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  636. "locale": "pl"
  637. },
  638. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  639. "locale": "pl"
  640. },
  641. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  642. "locale": "pt-BR"
  643. },
  644. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  645. "locale": "pt-BR"
  646. },
  647. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  648. "locale": "ru"
  649. },
  650. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  651. "locale": "ru"
  652. },
  653. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  654. "locale": "tr"
  655. },
  656. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  657. "locale": "tr"
  658. },
  659. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  660. "locale": "zh-Hans"
  661. },
  662. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  663. "locale": "zh-Hans"
  664. },
  665. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  666. "locale": "zh-Hant"
  667. },
  668. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  669. "locale": "zh-Hant"
  670. }
  671. }
  672. },
  673. "Microsoft.TestPlatform.TestHost/16.5.0": {
  674. "type": "package",
  675. "dependencies": {
  676. "Microsoft.TestPlatform.ObjectModel": "16.5.0",
  677. "Newtonsoft.Json": "9.0.1"
  678. },
  679. "compile": {
  680. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  681. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  682. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  683. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  684. "lib/netcoreapp2.1/testhost.dll": {}
  685. },
  686. "runtime": {
  687. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  688. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  689. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  690. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  691. "lib/netcoreapp2.1/testhost.dll": {}
  692. },
  693. "resource": {
  694. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  695. "locale": "cs"
  696. },
  697. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  698. "locale": "cs"
  699. },
  700. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  701. "locale": "cs"
  702. },
  703. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  704. "locale": "de"
  705. },
  706. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  707. "locale": "de"
  708. },
  709. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  710. "locale": "de"
  711. },
  712. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  713. "locale": "es"
  714. },
  715. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  716. "locale": "es"
  717. },
  718. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  719. "locale": "es"
  720. },
  721. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  722. "locale": "fr"
  723. },
  724. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  725. "locale": "fr"
  726. },
  727. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  728. "locale": "fr"
  729. },
  730. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  731. "locale": "it"
  732. },
  733. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  734. "locale": "it"
  735. },
  736. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  737. "locale": "it"
  738. },
  739. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  740. "locale": "ja"
  741. },
  742. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  743. "locale": "ja"
  744. },
  745. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  746. "locale": "ja"
  747. },
  748. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  749. "locale": "ko"
  750. },
  751. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  752. "locale": "ko"
  753. },
  754. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  755. "locale": "ko"
  756. },
  757. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  758. "locale": "pl"
  759. },
  760. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  761. "locale": "pl"
  762. },
  763. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  764. "locale": "pl"
  765. },
  766. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  767. "locale": "pt-BR"
  768. },
  769. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  770. "locale": "pt-BR"
  771. },
  772. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  773. "locale": "pt-BR"
  774. },
  775. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  776. "locale": "ru"
  777. },
  778. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  779. "locale": "ru"
  780. },
  781. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  782. "locale": "ru"
  783. },
  784. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  785. "locale": "tr"
  786. },
  787. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  788. "locale": "tr"
  789. },
  790. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  791. "locale": "tr"
  792. },
  793. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  794. "locale": "zh-Hans"
  795. },
  796. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  797. "locale": "zh-Hans"
  798. },
  799. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  800. "locale": "zh-Hans"
  801. },
  802. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  803. "locale": "zh-Hant"
  804. },
  805. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  806. "locale": "zh-Hant"
  807. },
  808. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  809. "locale": "zh-Hant"
  810. }
  811. },
  812. "build": {
  813. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {}
  814. }
  815. },
  816. "Microsoft.Win32.Primitives/4.3.0": {
  817. "type": "package",
  818. "dependencies": {
  819. "Microsoft.NETCore.Platforms": "1.1.0",
  820. "Microsoft.NETCore.Targets": "1.1.0",
  821. "System.Runtime": "4.3.0"
  822. },
  823. "compile": {
  824. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  825. }
  826. },
  827. "Microsoft.Win32.Registry/4.4.0": {
  828. "type": "package",
  829. "dependencies": {
  830. "Microsoft.NETCore.Platforms": "2.0.0",
  831. "System.Security.AccessControl": "4.4.0",
  832. "System.Security.Principal.Windows": "4.4.0"
  833. },
  834. "compile": {
  835. "ref/netstandard2.0/_._": {}
  836. },
  837. "runtime": {
  838. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  839. },
  840. "runtimeTargets": {
  841. "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": {
  842. "assetType": "runtime",
  843. "rid": "unix"
  844. },
  845. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": {
  846. "assetType": "runtime",
  847. "rid": "win"
  848. }
  849. }
  850. },
  851. "Microsoft.Win32.SystemEvents/4.7.0": {
  852. "type": "package",
  853. "dependencies": {
  854. "Microsoft.NETCore.Platforms": "3.1.0"
  855. },
  856. "compile": {
  857. "ref/netstandard2.0/_._": {}
  858. },
  859. "runtime": {
  860. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  861. },
  862. "runtimeTargets": {
  863. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  864. "assetType": "runtime",
  865. "rid": "win"
  866. }
  867. }
  868. },
  869. "MSTest.TestAdapter/2.1.0": {
  870. "type": "package",
  871. "dependencies": {
  872. "NETStandard.Library": "1.6.1",
  873. "System.Diagnostics.TextWriterTraceListener": "4.3.0"
  874. },
  875. "build": {
  876. "build/netcoreapp1.0/MSTest.TestAdapter.props": {}
  877. }
  878. },
  879. "MSTest.TestFramework/2.1.0": {
  880. "type": "package",
  881. "compile": {
  882. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
  883. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
  884. },
  885. "runtime": {
  886. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
  887. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
  888. }
  889. },
  890. "MySql.Data/8.0.15": {
  891. "type": "package",
  892. "dependencies": {
  893. "Google.Protobuf": "3.5.1",
  894. "System.Configuration.ConfigurationManager": "4.4.1",
  895. "System.Security.Permissions": "4.4.1",
  896. "System.Text.Encoding.CodePages": "4.4.0"
  897. },
  898. "compile": {
  899. "lib/netcoreapp2.0/MySql.Data.dll": {}
  900. },
  901. "runtime": {
  902. "lib/netcoreapp2.0/MySql.Data.dll": {}
  903. }
  904. },
  905. "NETStandard.Library/1.6.1": {
  906. "type": "package",
  907. "dependencies": {
  908. "Microsoft.NETCore.Platforms": "1.1.0",
  909. "Microsoft.Win32.Primitives": "4.3.0",
  910. "System.AppContext": "4.3.0",
  911. "System.Collections": "4.3.0",
  912. "System.Collections.Concurrent": "4.3.0",
  913. "System.Console": "4.3.0",
  914. "System.Diagnostics.Debug": "4.3.0",
  915. "System.Diagnostics.Tools": "4.3.0",
  916. "System.Diagnostics.Tracing": "4.3.0",
  917. "System.Globalization": "4.3.0",
  918. "System.Globalization.Calendars": "4.3.0",
  919. "System.IO": "4.3.0",
  920. "System.IO.Compression": "4.3.0",
  921. "System.IO.Compression.ZipFile": "4.3.0",
  922. "System.IO.FileSystem": "4.3.0",
  923. "System.IO.FileSystem.Primitives": "4.3.0",
  924. "System.Linq": "4.3.0",
  925. "System.Linq.Expressions": "4.3.0",
  926. "System.Net.Http": "4.3.0",
  927. "System.Net.Primitives": "4.3.0",
  928. "System.Net.Sockets": "4.3.0",
  929. "System.ObjectModel": "4.3.0",
  930. "System.Reflection": "4.3.0",
  931. "System.Reflection.Extensions": "4.3.0",
  932. "System.Reflection.Primitives": "4.3.0",
  933. "System.Resources.ResourceManager": "4.3.0",
  934. "System.Runtime": "4.3.0",
  935. "System.Runtime.Extensions": "4.3.0",
  936. "System.Runtime.Handles": "4.3.0",
  937. "System.Runtime.InteropServices": "4.3.0",
  938. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  939. "System.Runtime.Numerics": "4.3.0",
  940. "System.Security.Cryptography.Algorithms": "4.3.0",
  941. "System.Security.Cryptography.Encoding": "4.3.0",
  942. "System.Security.Cryptography.Primitives": "4.3.0",
  943. "System.Security.Cryptography.X509Certificates": "4.3.0",
  944. "System.Text.Encoding": "4.3.0",
  945. "System.Text.Encoding.Extensions": "4.3.0",
  946. "System.Text.RegularExpressions": "4.3.0",
  947. "System.Threading": "4.3.0",
  948. "System.Threading.Tasks": "4.3.0",
  949. "System.Threading.Timer": "4.3.0",
  950. "System.Xml.ReaderWriter": "4.3.0",
  951. "System.Xml.XDocument": "4.3.0"
  952. }
  953. },
  954. "Newtonsoft.Json/10.0.3": {
  955. "type": "package",
  956. "dependencies": {
  957. "Microsoft.CSharp": "4.3.0",
  958. "NETStandard.Library": "1.6.1",
  959. "System.ComponentModel.TypeConverter": "4.3.0",
  960. "System.Runtime.Serialization.Formatters": "4.3.0",
  961. "System.Runtime.Serialization.Primitives": "4.3.0",
  962. "System.Xml.XmlDocument": "4.3.0"
  963. },
  964. "compile": {
  965. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  966. },
  967. "runtime": {
  968. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  969. }
  970. },
  971. "NLog/4.7.5": {
  972. "type": "package",
  973. "compile": {
  974. "lib/netstandard2.0/NLog.dll": {}
  975. },
  976. "runtime": {
  977. "lib/netstandard2.0/NLog.dll": {}
  978. }
  979. },
  980. "NLog.Extensions.Logging/1.6.4": {
  981. "type": "package",
  982. "dependencies": {
  983. "Microsoft.Extensions.Logging": "3.0.0",
  984. "NLog": "4.7.2"
  985. },
  986. "compile": {
  987. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  988. },
  989. "runtime": {
  990. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  991. }
  992. },
  993. "NLog.Web.AspNetCore/4.9.3": {
  994. "type": "package",
  995. "dependencies": {
  996. "NLog.Extensions.Logging": "1.6.4"
  997. },
  998. "compile": {
  999. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  1000. },
  1001. "runtime": {
  1002. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  1003. },
  1004. "frameworkReferences": [
  1005. "Microsoft.AspNetCore.App"
  1006. ]
  1007. },
  1008. "Npgsql/3.2.7": {
  1009. "type": "package",
  1010. "dependencies": {
  1011. "System.Threading.Tasks.Extensions": "4.3.0"
  1012. },
  1013. "compile": {
  1014. "lib/netstandard2.0/Npgsql.dll": {}
  1015. },
  1016. "runtime": {
  1017. "lib/netstandard2.0/Npgsql.dll": {}
  1018. }
  1019. },
  1020. "NuGet.Frameworks/5.0.0": {
  1021. "type": "package",
  1022. "compile": {
  1023. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  1024. },
  1025. "runtime": {
  1026. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  1027. }
  1028. },
  1029. "Oracle.ManagedDataAccess.Core/2.18.3": {
  1030. "type": "package",
  1031. "compile": {
  1032. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  1033. },
  1034. "runtime": {
  1035. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  1036. }
  1037. },
  1038. "Portable.BouncyCastle/1.8.8": {
  1039. "type": "package",
  1040. "compile": {
  1041. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  1042. },
  1043. "runtime": {
  1044. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  1045. }
  1046. },
  1047. "Quartz/3.2.3": {
  1048. "type": "package",
  1049. "dependencies": {
  1050. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1051. "System.Configuration.ConfigurationManager": "4.7.0",
  1052. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1053. },
  1054. "compile": {
  1055. "lib/netstandard2.0/Quartz.dll": {}
  1056. },
  1057. "runtime": {
  1058. "lib/netstandard2.0/Quartz.dll": {}
  1059. }
  1060. },
  1061. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1062. "type": "package",
  1063. "runtimeTargets": {
  1064. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1065. "assetType": "native",
  1066. "rid": "debian.8-x64"
  1067. }
  1068. }
  1069. },
  1070. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1071. "type": "package",
  1072. "runtimeTargets": {
  1073. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1074. "assetType": "native",
  1075. "rid": "fedora.23-x64"
  1076. }
  1077. }
  1078. },
  1079. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1080. "type": "package",
  1081. "runtimeTargets": {
  1082. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1083. "assetType": "native",
  1084. "rid": "fedora.24-x64"
  1085. }
  1086. }
  1087. },
  1088. "runtime.native.System/4.3.0": {
  1089. "type": "package",
  1090. "dependencies": {
  1091. "Microsoft.NETCore.Platforms": "1.1.0",
  1092. "Microsoft.NETCore.Targets": "1.1.0"
  1093. },
  1094. "compile": {
  1095. "lib/netstandard1.0/_._": {}
  1096. },
  1097. "runtime": {
  1098. "lib/netstandard1.0/_._": {}
  1099. }
  1100. },
  1101. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1102. "type": "package",
  1103. "dependencies": {
  1104. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1105. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1106. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1107. }
  1108. },
  1109. "runtime.native.System.IO.Compression/4.3.0": {
  1110. "type": "package",
  1111. "dependencies": {
  1112. "Microsoft.NETCore.Platforms": "1.1.0",
  1113. "Microsoft.NETCore.Targets": "1.1.0"
  1114. },
  1115. "compile": {
  1116. "lib/netstandard1.0/_._": {}
  1117. },
  1118. "runtime": {
  1119. "lib/netstandard1.0/_._": {}
  1120. }
  1121. },
  1122. "runtime.native.System.Net.Http/4.3.0": {
  1123. "type": "package",
  1124. "dependencies": {
  1125. "Microsoft.NETCore.Platforms": "1.1.0",
  1126. "Microsoft.NETCore.Targets": "1.1.0"
  1127. },
  1128. "compile": {
  1129. "lib/netstandard1.0/_._": {}
  1130. },
  1131. "runtime": {
  1132. "lib/netstandard1.0/_._": {}
  1133. }
  1134. },
  1135. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1136. "type": "package",
  1137. "dependencies": {
  1138. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
  1139. },
  1140. "compile": {
  1141. "lib/netstandard1.0/_._": {}
  1142. },
  1143. "runtime": {
  1144. "lib/netstandard1.0/_._": {}
  1145. }
  1146. },
  1147. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1148. "type": "package",
  1149. "dependencies": {
  1150. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1151. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1152. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1153. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1154. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1155. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1156. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1157. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1158. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1159. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1160. },
  1161. "compile": {
  1162. "lib/netstandard1.0/_._": {}
  1163. },
  1164. "runtime": {
  1165. "lib/netstandard1.0/_._": {}
  1166. }
  1167. },
  1168. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1169. "type": "package",
  1170. "runtimeTargets": {
  1171. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1172. "assetType": "native",
  1173. "rid": "opensuse.13.2-x64"
  1174. }
  1175. }
  1176. },
  1177. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1178. "type": "package",
  1179. "runtimeTargets": {
  1180. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1181. "assetType": "native",
  1182. "rid": "opensuse.42.1-x64"
  1183. }
  1184. }
  1185. },
  1186. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1187. "type": "package",
  1188. "runtimeTargets": {
  1189. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1190. "assetType": "native",
  1191. "rid": "osx.10.10-x64"
  1192. }
  1193. }
  1194. },
  1195. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1196. "type": "package",
  1197. "runtimeTargets": {
  1198. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1199. "assetType": "native",
  1200. "rid": "osx.10.10-x64"
  1201. }
  1202. }
  1203. },
  1204. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1205. "type": "package",
  1206. "runtimeTargets": {
  1207. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1208. "assetType": "native",
  1209. "rid": "rhel.7-x64"
  1210. }
  1211. }
  1212. },
  1213. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1214. "type": "package",
  1215. "runtimeTargets": {
  1216. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1217. "assetType": "native",
  1218. "rid": "ubuntu.14.04-x64"
  1219. }
  1220. }
  1221. },
  1222. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1223. "type": "package",
  1224. "runtimeTargets": {
  1225. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1226. "assetType": "native",
  1227. "rid": "ubuntu.16.04-x64"
  1228. }
  1229. }
  1230. },
  1231. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1232. "type": "package",
  1233. "runtimeTargets": {
  1234. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1235. "assetType": "native",
  1236. "rid": "ubuntu.16.10-x64"
  1237. }
  1238. }
  1239. },
  1240. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1241. "type": "package",
  1242. "runtimeTargets": {
  1243. "runtimes/win-arm64/native/sni.dll": {
  1244. "assetType": "native",
  1245. "rid": "win-arm64"
  1246. }
  1247. }
  1248. },
  1249. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1250. "type": "package",
  1251. "runtimeTargets": {
  1252. "runtimes/win-x64/native/sni.dll": {
  1253. "assetType": "native",
  1254. "rid": "win-x64"
  1255. }
  1256. }
  1257. },
  1258. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1259. "type": "package",
  1260. "runtimeTargets": {
  1261. "runtimes/win-x86/native/sni.dll": {
  1262. "assetType": "native",
  1263. "rid": "win-x86"
  1264. }
  1265. }
  1266. },
  1267. "SQLitePCLRaw.bundle_green/1.1.12": {
  1268. "type": "package",
  1269. "dependencies": {
  1270. "SQLitePCLRaw.core": "1.1.12",
  1271. "SQLitePCLRaw.lib.e_sqlite3.linux": "1.1.12",
  1272. "SQLitePCLRaw.lib.e_sqlite3.osx": "1.1.12",
  1273. "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.12",
  1274. "SQLitePCLRaw.provider.e_sqlite3.netstandard11": "1.1.12"
  1275. },
  1276. "compile": {
  1277. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
  1278. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
  1279. },
  1280. "runtime": {
  1281. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
  1282. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
  1283. }
  1284. },
  1285. "SQLitePCLRaw.core/1.1.12": {
  1286. "type": "package",
  1287. "dependencies": {
  1288. "NETStandard.Library": "1.6.0"
  1289. },
  1290. "compile": {
  1291. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  1292. },
  1293. "runtime": {
  1294. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  1295. }
  1296. },
  1297. "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": {
  1298. "type": "package",
  1299. "compile": {
  1300. "lib/netstandard2.0/_._": {}
  1301. },
  1302. "runtime": {
  1303. "lib/netstandard2.0/_._": {}
  1304. },
  1305. "runtimeTargets": {
  1306. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  1307. "assetType": "native",
  1308. "rid": "alpine-x64"
  1309. },
  1310. "runtimes/linux-arm/native/libe_sqlite3.so": {
  1311. "assetType": "native",
  1312. "rid": "linux-arm"
  1313. },
  1314. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  1315. "assetType": "native",
  1316. "rid": "linux-arm64"
  1317. },
  1318. "runtimes/linux-armel/native/libe_sqlite3.so": {
  1319. "assetType": "native",
  1320. "rid": "linux-armel"
  1321. },
  1322. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  1323. "assetType": "native",
  1324. "rid": "linux-musl-x64"
  1325. },
  1326. "runtimes/linux-x64/native/libe_sqlite3.so": {
  1327. "assetType": "native",
  1328. "rid": "linux-x64"
  1329. },
  1330. "runtimes/linux-x86/native/libe_sqlite3.so": {
  1331. "assetType": "native",
  1332. "rid": "linux-x86"
  1333. }
  1334. }
  1335. },
  1336. "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": {
  1337. "type": "package",
  1338. "compile": {
  1339. "lib/netstandard2.0/_._": {}
  1340. },
  1341. "runtime": {
  1342. "lib/netstandard2.0/_._": {}
  1343. },
  1344. "runtimeTargets": {
  1345. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  1346. "assetType": "native",
  1347. "rid": "osx-x64"
  1348. }
  1349. }
  1350. },
  1351. "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": {
  1352. "type": "package",
  1353. "compile": {
  1354. "lib/netstandard2.0/_._": {}
  1355. },
  1356. "runtime": {
  1357. "lib/netstandard2.0/_._": {}
  1358. },
  1359. "runtimeTargets": {
  1360. "runtimes/win-x64/native/e_sqlite3.dll": {
  1361. "assetType": "native",
  1362. "rid": "win-x64"
  1363. },
  1364. "runtimes/win-x86/native/e_sqlite3.dll": {
  1365. "assetType": "native",
  1366. "rid": "win-x86"
  1367. },
  1368. "runtimes/win8-arm/native/e_sqlite3.dll": {
  1369. "assetType": "native",
  1370. "rid": "win8-arm"
  1371. }
  1372. }
  1373. },
  1374. "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": {
  1375. "type": "package",
  1376. "dependencies": {
  1377. "NETStandard.Library": "1.6.0",
  1378. "SQLitePCLRaw.core": "1.1.12"
  1379. },
  1380. "compile": {
  1381. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1382. },
  1383. "runtime": {
  1384. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1385. }
  1386. },
  1387. "sqlSugarCore/5.0.0.18": {
  1388. "type": "package",
  1389. "dependencies": {
  1390. "Microsoft.Data.Sqlite": "2.2.4",
  1391. "MySql.Data": "8.0.15",
  1392. "Newtonsoft.Json": "10.0.3",
  1393. "Npgsql": "3.2.7",
  1394. "Oracle.ManagedDataAccess.Core": "2.18.3",
  1395. "System.Data.Common": "4.3.0",
  1396. "System.Data.SqlClient": "4.4.0",
  1397. "System.Reflection.Emit.Lightweight": "4.3.0"
  1398. },
  1399. "compile": {
  1400. "lib/netstandard2.0/SqlSugar.dll": {}
  1401. },
  1402. "runtime": {
  1403. "lib/netstandard2.0/SqlSugar.dll": {}
  1404. }
  1405. },
  1406. "System.AppContext/4.3.0": {
  1407. "type": "package",
  1408. "dependencies": {
  1409. "System.Runtime": "4.3.0"
  1410. },
  1411. "compile": {
  1412. "ref/netstandard1.6/System.AppContext.dll": {}
  1413. },
  1414. "runtime": {
  1415. "lib/netstandard1.6/System.AppContext.dll": {}
  1416. }
  1417. },
  1418. "System.Buffers/4.3.0": {
  1419. "type": "package",
  1420. "dependencies": {
  1421. "System.Diagnostics.Debug": "4.3.0",
  1422. "System.Diagnostics.Tracing": "4.3.0",
  1423. "System.Resources.ResourceManager": "4.3.0",
  1424. "System.Runtime": "4.3.0",
  1425. "System.Threading": "4.3.0"
  1426. },
  1427. "compile": {
  1428. "lib/netstandard1.1/_._": {}
  1429. },
  1430. "runtime": {
  1431. "lib/netstandard1.1/System.Buffers.dll": {}
  1432. }
  1433. },
  1434. "System.Collections/4.3.0": {
  1435. "type": "package",
  1436. "dependencies": {
  1437. "Microsoft.NETCore.Platforms": "1.1.0",
  1438. "Microsoft.NETCore.Targets": "1.1.0",
  1439. "System.Runtime": "4.3.0"
  1440. },
  1441. "compile": {
  1442. "ref/netstandard1.3/System.Collections.dll": {}
  1443. }
  1444. },
  1445. "System.Collections.Concurrent/4.3.0": {
  1446. "type": "package",
  1447. "dependencies": {
  1448. "System.Collections": "4.3.0",
  1449. "System.Diagnostics.Debug": "4.3.0",
  1450. "System.Diagnostics.Tracing": "4.3.0",
  1451. "System.Globalization": "4.3.0",
  1452. "System.Reflection": "4.3.0",
  1453. "System.Resources.ResourceManager": "4.3.0",
  1454. "System.Runtime": "4.3.0",
  1455. "System.Runtime.Extensions": "4.3.0",
  1456. "System.Threading": "4.3.0",
  1457. "System.Threading.Tasks": "4.3.0"
  1458. },
  1459. "compile": {
  1460. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1461. },
  1462. "runtime": {
  1463. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1464. }
  1465. },
  1466. "System.Collections.Immutable/1.7.1": {
  1467. "type": "package",
  1468. "compile": {
  1469. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1470. },
  1471. "runtime": {
  1472. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1473. }
  1474. },
  1475. "System.Collections.NonGeneric/4.3.0": {
  1476. "type": "package",
  1477. "dependencies": {
  1478. "System.Diagnostics.Debug": "4.3.0",
  1479. "System.Globalization": "4.3.0",
  1480. "System.Resources.ResourceManager": "4.3.0",
  1481. "System.Runtime": "4.3.0",
  1482. "System.Runtime.Extensions": "4.3.0",
  1483. "System.Threading": "4.3.0"
  1484. },
  1485. "compile": {
  1486. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1487. },
  1488. "runtime": {
  1489. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1490. }
  1491. },
  1492. "System.Collections.Specialized/4.3.0": {
  1493. "type": "package",
  1494. "dependencies": {
  1495. "System.Collections.NonGeneric": "4.3.0",
  1496. "System.Globalization": "4.3.0",
  1497. "System.Globalization.Extensions": "4.3.0",
  1498. "System.Resources.ResourceManager": "4.3.0",
  1499. "System.Runtime": "4.3.0",
  1500. "System.Runtime.Extensions": "4.3.0",
  1501. "System.Threading": "4.3.0"
  1502. },
  1503. "compile": {
  1504. "ref/netstandard1.3/_._": {}
  1505. },
  1506. "runtime": {
  1507. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1508. }
  1509. },
  1510. "System.ComponentModel/4.3.0": {
  1511. "type": "package",
  1512. "dependencies": {
  1513. "System.Runtime": "4.3.0"
  1514. },
  1515. "compile": {
  1516. "ref/netstandard1.0/System.ComponentModel.dll": {}
  1517. },
  1518. "runtime": {
  1519. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1520. }
  1521. },
  1522. "System.ComponentModel.Annotations/4.7.0": {
  1523. "type": "package",
  1524. "compile": {
  1525. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1526. },
  1527. "runtime": {
  1528. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1529. }
  1530. },
  1531. "System.ComponentModel.Primitives/4.3.0": {
  1532. "type": "package",
  1533. "dependencies": {
  1534. "System.ComponentModel": "4.3.0",
  1535. "System.Resources.ResourceManager": "4.3.0",
  1536. "System.Runtime": "4.3.0"
  1537. },
  1538. "compile": {
  1539. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1540. },
  1541. "runtime": {
  1542. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1543. }
  1544. },
  1545. "System.ComponentModel.TypeConverter/4.3.0": {
  1546. "type": "package",
  1547. "dependencies": {
  1548. "System.Collections": "4.3.0",
  1549. "System.Collections.NonGeneric": "4.3.0",
  1550. "System.Collections.Specialized": "4.3.0",
  1551. "System.ComponentModel": "4.3.0",
  1552. "System.ComponentModel.Primitives": "4.3.0",
  1553. "System.Globalization": "4.3.0",
  1554. "System.Linq": "4.3.0",
  1555. "System.Reflection": "4.3.0",
  1556. "System.Reflection.Extensions": "4.3.0",
  1557. "System.Reflection.Primitives": "4.3.0",
  1558. "System.Reflection.TypeExtensions": "4.3.0",
  1559. "System.Resources.ResourceManager": "4.3.0",
  1560. "System.Runtime": "4.3.0",
  1561. "System.Runtime.Extensions": "4.3.0",
  1562. "System.Threading": "4.3.0"
  1563. },
  1564. "compile": {
  1565. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1566. },
  1567. "runtime": {
  1568. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1569. }
  1570. },
  1571. "System.Configuration.ConfigurationManager/4.7.0": {
  1572. "type": "package",
  1573. "dependencies": {
  1574. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1575. "System.Security.Permissions": "4.7.0"
  1576. },
  1577. "compile": {
  1578. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1579. },
  1580. "runtime": {
  1581. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1582. }
  1583. },
  1584. "System.Console/4.3.0": {
  1585. "type": "package",
  1586. "dependencies": {
  1587. "Microsoft.NETCore.Platforms": "1.1.0",
  1588. "Microsoft.NETCore.Targets": "1.1.0",
  1589. "System.IO": "4.3.0",
  1590. "System.Runtime": "4.3.0",
  1591. "System.Text.Encoding": "4.3.0"
  1592. },
  1593. "compile": {
  1594. "ref/netstandard1.3/System.Console.dll": {}
  1595. }
  1596. },
  1597. "System.Data.Common/4.3.0": {
  1598. "type": "package",
  1599. "dependencies": {
  1600. "System.Collections": "4.3.0",
  1601. "System.Globalization": "4.3.0",
  1602. "System.IO": "4.3.0",
  1603. "System.Resources.ResourceManager": "4.3.0",
  1604. "System.Runtime": "4.3.0",
  1605. "System.Runtime.Extensions": "4.3.0",
  1606. "System.Text.RegularExpressions": "4.3.0",
  1607. "System.Threading.Tasks": "4.3.0"
  1608. },
  1609. "compile": {
  1610. "ref/netstandard1.2/System.Data.Common.dll": {}
  1611. },
  1612. "runtime": {
  1613. "lib/netstandard1.2/System.Data.Common.dll": {}
  1614. }
  1615. },
  1616. "System.Data.SqlClient/4.4.0": {
  1617. "type": "package",
  1618. "dependencies": {
  1619. "Microsoft.Win32.Registry": "4.4.0",
  1620. "System.Security.Principal.Windows": "4.4.0",
  1621. "System.Text.Encoding.CodePages": "4.4.0",
  1622. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1623. },
  1624. "compile": {
  1625. "ref/netstandard2.0/System.Data.SqlClient.dll": {}
  1626. },
  1627. "runtime": {
  1628. "lib/netstandard2.0/System.Data.SqlClient.dll": {}
  1629. },
  1630. "runtimeTargets": {
  1631. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1632. "assetType": "runtime",
  1633. "rid": "unix"
  1634. },
  1635. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1636. "assetType": "runtime",
  1637. "rid": "win"
  1638. }
  1639. }
  1640. },
  1641. "System.Diagnostics.Debug/4.3.0": {
  1642. "type": "package",
  1643. "dependencies": {
  1644. "Microsoft.NETCore.Platforms": "1.1.0",
  1645. "Microsoft.NETCore.Targets": "1.1.0",
  1646. "System.Runtime": "4.3.0"
  1647. },
  1648. "compile": {
  1649. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1650. }
  1651. },
  1652. "System.Diagnostics.DiagnosticSource/4.7.1": {
  1653. "type": "package",
  1654. "compile": {
  1655. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1656. },
  1657. "runtime": {
  1658. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1659. }
  1660. },
  1661. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  1662. "type": "package",
  1663. "dependencies": {
  1664. "System.Diagnostics.TraceSource": "4.3.0",
  1665. "System.Globalization": "4.3.0",
  1666. "System.IO": "4.3.0",
  1667. "System.Resources.ResourceManager": "4.3.0",
  1668. "System.Runtime": "4.3.0",
  1669. "System.Threading": "4.3.0"
  1670. },
  1671. "compile": {
  1672. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1673. },
  1674. "runtime": {
  1675. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1676. }
  1677. },
  1678. "System.Diagnostics.Tools/4.3.0": {
  1679. "type": "package",
  1680. "dependencies": {
  1681. "Microsoft.NETCore.Platforms": "1.1.0",
  1682. "Microsoft.NETCore.Targets": "1.1.0",
  1683. "System.Runtime": "4.3.0"
  1684. },
  1685. "compile": {
  1686. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1687. }
  1688. },
  1689. "System.Diagnostics.TraceSource/4.3.0": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "Microsoft.NETCore.Platforms": "1.1.0",
  1693. "System.Collections": "4.3.0",
  1694. "System.Diagnostics.Debug": "4.3.0",
  1695. "System.Globalization": "4.3.0",
  1696. "System.Resources.ResourceManager": "4.3.0",
  1697. "System.Runtime": "4.3.0",
  1698. "System.Runtime.Extensions": "4.3.0",
  1699. "System.Threading": "4.3.0",
  1700. "runtime.native.System": "4.3.0"
  1701. },
  1702. "compile": {
  1703. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1704. },
  1705. "runtimeTargets": {
  1706. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1707. "assetType": "runtime",
  1708. "rid": "unix"
  1709. },
  1710. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1711. "assetType": "runtime",
  1712. "rid": "win"
  1713. }
  1714. }
  1715. },
  1716. "System.Diagnostics.Tracing/4.3.0": {
  1717. "type": "package",
  1718. "dependencies": {
  1719. "Microsoft.NETCore.Platforms": "1.1.0",
  1720. "Microsoft.NETCore.Targets": "1.1.0",
  1721. "System.Runtime": "4.3.0"
  1722. },
  1723. "compile": {
  1724. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1725. }
  1726. },
  1727. "System.Drawing.Common/4.7.0": {
  1728. "type": "package",
  1729. "dependencies": {
  1730. "Microsoft.NETCore.Platforms": "3.1.0",
  1731. "Microsoft.Win32.SystemEvents": "4.7.0"
  1732. },
  1733. "compile": {
  1734. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  1735. },
  1736. "runtime": {
  1737. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1738. },
  1739. "runtimeTargets": {
  1740. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1741. "assetType": "runtime",
  1742. "rid": "unix"
  1743. },
  1744. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1745. "assetType": "runtime",
  1746. "rid": "win"
  1747. }
  1748. }
  1749. },
  1750. "System.Dynamic.Runtime/4.3.0": {
  1751. "type": "package",
  1752. "dependencies": {
  1753. "System.Collections": "4.3.0",
  1754. "System.Diagnostics.Debug": "4.3.0",
  1755. "System.Linq": "4.3.0",
  1756. "System.Linq.Expressions": "4.3.0",
  1757. "System.ObjectModel": "4.3.0",
  1758. "System.Reflection": "4.3.0",
  1759. "System.Reflection.Emit": "4.3.0",
  1760. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1761. "System.Reflection.Primitives": "4.3.0",
  1762. "System.Reflection.TypeExtensions": "4.3.0",
  1763. "System.Resources.ResourceManager": "4.3.0",
  1764. "System.Runtime": "4.3.0",
  1765. "System.Runtime.Extensions": "4.3.0",
  1766. "System.Threading": "4.3.0"
  1767. },
  1768. "compile": {
  1769. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1770. },
  1771. "runtime": {
  1772. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1773. }
  1774. },
  1775. "System.Globalization/4.3.0": {
  1776. "type": "package",
  1777. "dependencies": {
  1778. "Microsoft.NETCore.Platforms": "1.1.0",
  1779. "Microsoft.NETCore.Targets": "1.1.0",
  1780. "System.Runtime": "4.3.0"
  1781. },
  1782. "compile": {
  1783. "ref/netstandard1.3/System.Globalization.dll": {}
  1784. }
  1785. },
  1786. "System.Globalization.Calendars/4.3.0": {
  1787. "type": "package",
  1788. "dependencies": {
  1789. "Microsoft.NETCore.Platforms": "1.1.0",
  1790. "Microsoft.NETCore.Targets": "1.1.0",
  1791. "System.Globalization": "4.3.0",
  1792. "System.Runtime": "4.3.0"
  1793. },
  1794. "compile": {
  1795. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1796. }
  1797. },
  1798. "System.Globalization.Extensions/4.3.0": {
  1799. "type": "package",
  1800. "dependencies": {
  1801. "Microsoft.NETCore.Platforms": "1.1.0",
  1802. "System.Globalization": "4.3.0",
  1803. "System.Resources.ResourceManager": "4.3.0",
  1804. "System.Runtime": "4.3.0",
  1805. "System.Runtime.Extensions": "4.3.0",
  1806. "System.Runtime.InteropServices": "4.3.0"
  1807. },
  1808. "compile": {
  1809. "ref/netstandard1.3/_._": {}
  1810. },
  1811. "runtimeTargets": {
  1812. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1813. "assetType": "runtime",
  1814. "rid": "unix"
  1815. },
  1816. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1817. "assetType": "runtime",
  1818. "rid": "win"
  1819. }
  1820. }
  1821. },
  1822. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  1823. "type": "package",
  1824. "dependencies": {
  1825. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  1826. "Microsoft.IdentityModel.Tokens": "5.6.0",
  1827. "Newtonsoft.Json": "10.0.1"
  1828. },
  1829. "compile": {
  1830. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1831. },
  1832. "runtime": {
  1833. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1834. }
  1835. },
  1836. "System.IO/4.3.0": {
  1837. "type": "package",
  1838. "dependencies": {
  1839. "Microsoft.NETCore.Platforms": "1.1.0",
  1840. "Microsoft.NETCore.Targets": "1.1.0",
  1841. "System.Runtime": "4.3.0",
  1842. "System.Text.Encoding": "4.3.0",
  1843. "System.Threading.Tasks": "4.3.0"
  1844. },
  1845. "compile": {
  1846. "ref/netstandard1.5/System.IO.dll": {}
  1847. }
  1848. },
  1849. "System.IO.Compression/4.3.0": {
  1850. "type": "package",
  1851. "dependencies": {
  1852. "Microsoft.NETCore.Platforms": "1.1.0",
  1853. "System.Buffers": "4.3.0",
  1854. "System.Collections": "4.3.0",
  1855. "System.Diagnostics.Debug": "4.3.0",
  1856. "System.IO": "4.3.0",
  1857. "System.Resources.ResourceManager": "4.3.0",
  1858. "System.Runtime": "4.3.0",
  1859. "System.Runtime.Extensions": "4.3.0",
  1860. "System.Runtime.Handles": "4.3.0",
  1861. "System.Runtime.InteropServices": "4.3.0",
  1862. "System.Text.Encoding": "4.3.0",
  1863. "System.Threading": "4.3.0",
  1864. "System.Threading.Tasks": "4.3.0",
  1865. "runtime.native.System": "4.3.0",
  1866. "runtime.native.System.IO.Compression": "4.3.0"
  1867. },
  1868. "compile": {
  1869. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1870. },
  1871. "runtimeTargets": {
  1872. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1873. "assetType": "runtime",
  1874. "rid": "unix"
  1875. },
  1876. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1877. "assetType": "runtime",
  1878. "rid": "win"
  1879. }
  1880. }
  1881. },
  1882. "System.IO.Compression.ZipFile/4.3.0": {
  1883. "type": "package",
  1884. "dependencies": {
  1885. "System.Buffers": "4.3.0",
  1886. "System.IO": "4.3.0",
  1887. "System.IO.Compression": "4.3.0",
  1888. "System.IO.FileSystem": "4.3.0",
  1889. "System.IO.FileSystem.Primitives": "4.3.0",
  1890. "System.Resources.ResourceManager": "4.3.0",
  1891. "System.Runtime": "4.3.0",
  1892. "System.Runtime.Extensions": "4.3.0",
  1893. "System.Text.Encoding": "4.3.0"
  1894. },
  1895. "compile": {
  1896. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1897. },
  1898. "runtime": {
  1899. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1900. }
  1901. },
  1902. "System.IO.FileSystem/4.3.0": {
  1903. "type": "package",
  1904. "dependencies": {
  1905. "Microsoft.NETCore.Platforms": "1.1.0",
  1906. "Microsoft.NETCore.Targets": "1.1.0",
  1907. "System.IO": "4.3.0",
  1908. "System.IO.FileSystem.Primitives": "4.3.0",
  1909. "System.Runtime": "4.3.0",
  1910. "System.Runtime.Handles": "4.3.0",
  1911. "System.Text.Encoding": "4.3.0",
  1912. "System.Threading.Tasks": "4.3.0"
  1913. },
  1914. "compile": {
  1915. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1916. }
  1917. },
  1918. "System.IO.FileSystem.Primitives/4.3.0": {
  1919. "type": "package",
  1920. "dependencies": {
  1921. "System.Runtime": "4.3.0"
  1922. },
  1923. "compile": {
  1924. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1925. },
  1926. "runtime": {
  1927. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1928. }
  1929. },
  1930. "System.Linq/4.3.0": {
  1931. "type": "package",
  1932. "dependencies": {
  1933. "System.Collections": "4.3.0",
  1934. "System.Diagnostics.Debug": "4.3.0",
  1935. "System.Resources.ResourceManager": "4.3.0",
  1936. "System.Runtime": "4.3.0",
  1937. "System.Runtime.Extensions": "4.3.0"
  1938. },
  1939. "compile": {
  1940. "ref/netstandard1.6/System.Linq.dll": {}
  1941. },
  1942. "runtime": {
  1943. "lib/netstandard1.6/System.Linq.dll": {}
  1944. }
  1945. },
  1946. "System.Linq.Expressions/4.3.0": {
  1947. "type": "package",
  1948. "dependencies": {
  1949. "System.Collections": "4.3.0",
  1950. "System.Diagnostics.Debug": "4.3.0",
  1951. "System.Globalization": "4.3.0",
  1952. "System.IO": "4.3.0",
  1953. "System.Linq": "4.3.0",
  1954. "System.ObjectModel": "4.3.0",
  1955. "System.Reflection": "4.3.0",
  1956. "System.Reflection.Emit": "4.3.0",
  1957. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1958. "System.Reflection.Emit.Lightweight": "4.3.0",
  1959. "System.Reflection.Extensions": "4.3.0",
  1960. "System.Reflection.Primitives": "4.3.0",
  1961. "System.Reflection.TypeExtensions": "4.3.0",
  1962. "System.Resources.ResourceManager": "4.3.0",
  1963. "System.Runtime": "4.3.0",
  1964. "System.Runtime.Extensions": "4.3.0",
  1965. "System.Threading": "4.3.0"
  1966. },
  1967. "compile": {
  1968. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1969. },
  1970. "runtime": {
  1971. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1972. }
  1973. },
  1974. "System.Net.Http/4.3.0": {
  1975. "type": "package",
  1976. "dependencies": {
  1977. "Microsoft.NETCore.Platforms": "1.1.0",
  1978. "System.Collections": "4.3.0",
  1979. "System.Diagnostics.Debug": "4.3.0",
  1980. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1981. "System.Diagnostics.Tracing": "4.3.0",
  1982. "System.Globalization": "4.3.0",
  1983. "System.Globalization.Extensions": "4.3.0",
  1984. "System.IO": "4.3.0",
  1985. "System.IO.FileSystem": "4.3.0",
  1986. "System.Net.Primitives": "4.3.0",
  1987. "System.Resources.ResourceManager": "4.3.0",
  1988. "System.Runtime": "4.3.0",
  1989. "System.Runtime.Extensions": "4.3.0",
  1990. "System.Runtime.Handles": "4.3.0",
  1991. "System.Runtime.InteropServices": "4.3.0",
  1992. "System.Security.Cryptography.Algorithms": "4.3.0",
  1993. "System.Security.Cryptography.Encoding": "4.3.0",
  1994. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1995. "System.Security.Cryptography.Primitives": "4.3.0",
  1996. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1997. "System.Text.Encoding": "4.3.0",
  1998. "System.Threading": "4.3.0",
  1999. "System.Threading.Tasks": "4.3.0",
  2000. "runtime.native.System": "4.3.0",
  2001. "runtime.native.System.Net.Http": "4.3.0",
  2002. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2003. },
  2004. "compile": {
  2005. "ref/netstandard1.3/System.Net.Http.dll": {}
  2006. },
  2007. "runtimeTargets": {
  2008. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2009. "assetType": "runtime",
  2010. "rid": "unix"
  2011. },
  2012. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2013. "assetType": "runtime",
  2014. "rid": "win"
  2015. }
  2016. }
  2017. },
  2018. "System.Net.Http.WinHttpHandler/4.4.0": {
  2019. "type": "package",
  2020. "compile": {
  2021. "ref/netstandard2.0/_._": {}
  2022. },
  2023. "runtime": {
  2024. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {}
  2025. },
  2026. "runtimeTargets": {
  2027. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
  2028. "assetType": "runtime",
  2029. "rid": "win"
  2030. }
  2031. }
  2032. },
  2033. "System.Net.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. "System.Runtime.Handles": "4.3.0"
  2040. },
  2041. "compile": {
  2042. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  2043. }
  2044. },
  2045. "System.Net.Requests/4.3.0": {
  2046. "type": "package",
  2047. "dependencies": {
  2048. "Microsoft.NETCore.Platforms": "1.1.0",
  2049. "System.Collections": "4.3.0",
  2050. "System.Diagnostics.Debug": "4.3.0",
  2051. "System.Diagnostics.Tracing": "4.3.0",
  2052. "System.Globalization": "4.3.0",
  2053. "System.IO": "4.3.0",
  2054. "System.Net.Http": "4.3.0",
  2055. "System.Net.Primitives": "4.3.0",
  2056. "System.Net.WebHeaderCollection": "4.3.0",
  2057. "System.Resources.ResourceManager": "4.3.0",
  2058. "System.Runtime": "4.3.0",
  2059. "System.Threading": "4.3.0",
  2060. "System.Threading.Tasks": "4.3.0"
  2061. },
  2062. "compile": {
  2063. "ref/netstandard1.3/System.Net.Requests.dll": {}
  2064. },
  2065. "runtimeTargets": {
  2066. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": {
  2067. "assetType": "runtime",
  2068. "rid": "unix"
  2069. },
  2070. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {
  2071. "assetType": "runtime",
  2072. "rid": "win"
  2073. }
  2074. }
  2075. },
  2076. "System.Net.Sockets/4.3.0": {
  2077. "type": "package",
  2078. "dependencies": {
  2079. "Microsoft.NETCore.Platforms": "1.1.0",
  2080. "Microsoft.NETCore.Targets": "1.1.0",
  2081. "System.IO": "4.3.0",
  2082. "System.Net.Primitives": "4.3.0",
  2083. "System.Runtime": "4.3.0",
  2084. "System.Threading.Tasks": "4.3.0"
  2085. },
  2086. "compile": {
  2087. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  2088. }
  2089. },
  2090. "System.Net.WebHeaderCollection/4.3.0": {
  2091. "type": "package",
  2092. "dependencies": {
  2093. "System.Collections": "4.3.0",
  2094. "System.Resources.ResourceManager": "4.3.0",
  2095. "System.Runtime": "4.3.0",
  2096. "System.Runtime.Extensions": "4.3.0"
  2097. },
  2098. "compile": {
  2099. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2100. },
  2101. "runtime": {
  2102. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2103. }
  2104. },
  2105. "System.ObjectModel/4.3.0": {
  2106. "type": "package",
  2107. "dependencies": {
  2108. "System.Collections": "4.3.0",
  2109. "System.Diagnostics.Debug": "4.3.0",
  2110. "System.Resources.ResourceManager": "4.3.0",
  2111. "System.Runtime": "4.3.0",
  2112. "System.Threading": "4.3.0"
  2113. },
  2114. "compile": {
  2115. "ref/netstandard1.3/System.ObjectModel.dll": {}
  2116. },
  2117. "runtime": {
  2118. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2119. }
  2120. },
  2121. "System.Private.ServiceModel/4.4.4": {
  2122. "type": "package",
  2123. "dependencies": {
  2124. "Microsoft.NETCore.Platforms": "2.0.0",
  2125. "System.Net.Http.WinHttpHandler": "4.4.0",
  2126. "System.Reflection.DispatchProxy": "4.4.0",
  2127. "System.Security.Principal.Windows": "4.4.0"
  2128. },
  2129. "compile": {
  2130. "ref/netstandard/_._": {}
  2131. },
  2132. "runtimeTargets": {
  2133. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  2134. "assetType": "runtime",
  2135. "rid": "unix"
  2136. },
  2137. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  2138. "assetType": "runtime",
  2139. "rid": "win7"
  2140. }
  2141. }
  2142. },
  2143. "System.Reflection/4.3.0": {
  2144. "type": "package",
  2145. "dependencies": {
  2146. "Microsoft.NETCore.Platforms": "1.1.0",
  2147. "Microsoft.NETCore.Targets": "1.1.0",
  2148. "System.IO": "4.3.0",
  2149. "System.Reflection.Primitives": "4.3.0",
  2150. "System.Runtime": "4.3.0"
  2151. },
  2152. "compile": {
  2153. "ref/netstandard1.5/System.Reflection.dll": {}
  2154. }
  2155. },
  2156. "System.Reflection.DispatchProxy/4.4.0": {
  2157. "type": "package",
  2158. "compile": {
  2159. "ref/netcoreapp2.0/_._": {}
  2160. },
  2161. "runtime": {
  2162. "lib/netcoreapp2.0/_._": {}
  2163. }
  2164. },
  2165. "System.Reflection.Emit/4.3.0": {
  2166. "type": "package",
  2167. "dependencies": {
  2168. "System.IO": "4.3.0",
  2169. "System.Reflection": "4.3.0",
  2170. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2171. "System.Reflection.Primitives": "4.3.0",
  2172. "System.Runtime": "4.3.0"
  2173. },
  2174. "compile": {
  2175. "ref/netstandard1.1/_._": {}
  2176. },
  2177. "runtime": {
  2178. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2179. }
  2180. },
  2181. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2182. "type": "package",
  2183. "dependencies": {
  2184. "System.Reflection": "4.3.0",
  2185. "System.Reflection.Primitives": "4.3.0",
  2186. "System.Runtime": "4.3.0"
  2187. },
  2188. "compile": {
  2189. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
  2190. },
  2191. "runtime": {
  2192. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2193. }
  2194. },
  2195. "System.Reflection.Emit.Lightweight/4.3.0": {
  2196. "type": "package",
  2197. "dependencies": {
  2198. "System.Reflection": "4.3.0",
  2199. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2200. "System.Reflection.Primitives": "4.3.0",
  2201. "System.Runtime": "4.3.0"
  2202. },
  2203. "compile": {
  2204. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {}
  2205. },
  2206. "runtime": {
  2207. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2208. }
  2209. },
  2210. "System.Reflection.Extensions/4.3.0": {
  2211. "type": "package",
  2212. "dependencies": {
  2213. "Microsoft.NETCore.Platforms": "1.1.0",
  2214. "Microsoft.NETCore.Targets": "1.1.0",
  2215. "System.Reflection": "4.3.0",
  2216. "System.Runtime": "4.3.0"
  2217. },
  2218. "compile": {
  2219. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  2220. }
  2221. },
  2222. "System.Reflection.Primitives/4.3.0": {
  2223. "type": "package",
  2224. "dependencies": {
  2225. "Microsoft.NETCore.Platforms": "1.1.0",
  2226. "Microsoft.NETCore.Targets": "1.1.0",
  2227. "System.Runtime": "4.3.0"
  2228. },
  2229. "compile": {
  2230. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  2231. }
  2232. },
  2233. "System.Reflection.TypeExtensions/4.7.0": {
  2234. "type": "package",
  2235. "compile": {
  2236. "ref/netcoreapp2.0/_._": {}
  2237. },
  2238. "runtime": {
  2239. "lib/netcoreapp2.0/_._": {}
  2240. }
  2241. },
  2242. "System.Resources.ResourceManager/4.3.0": {
  2243. "type": "package",
  2244. "dependencies": {
  2245. "Microsoft.NETCore.Platforms": "1.1.0",
  2246. "Microsoft.NETCore.Targets": "1.1.0",
  2247. "System.Globalization": "4.3.0",
  2248. "System.Reflection": "4.3.0",
  2249. "System.Runtime": "4.3.0"
  2250. },
  2251. "compile": {
  2252. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  2253. }
  2254. },
  2255. "System.Runtime/4.3.0": {
  2256. "type": "package",
  2257. "dependencies": {
  2258. "Microsoft.NETCore.Platforms": "1.1.0",
  2259. "Microsoft.NETCore.Targets": "1.1.0"
  2260. },
  2261. "compile": {
  2262. "ref/netstandard1.5/System.Runtime.dll": {}
  2263. }
  2264. },
  2265. "System.Runtime.Extensions/4.3.0": {
  2266. "type": "package",
  2267. "dependencies": {
  2268. "Microsoft.NETCore.Platforms": "1.1.0",
  2269. "Microsoft.NETCore.Targets": "1.1.0",
  2270. "System.Runtime": "4.3.0"
  2271. },
  2272. "compile": {
  2273. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  2274. }
  2275. },
  2276. "System.Runtime.Handles/4.3.0": {
  2277. "type": "package",
  2278. "dependencies": {
  2279. "Microsoft.NETCore.Platforms": "1.1.0",
  2280. "Microsoft.NETCore.Targets": "1.1.0",
  2281. "System.Runtime": "4.3.0"
  2282. },
  2283. "compile": {
  2284. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  2285. }
  2286. },
  2287. "System.Runtime.InteropServices/4.3.0": {
  2288. "type": "package",
  2289. "dependencies": {
  2290. "Microsoft.NETCore.Platforms": "1.1.0",
  2291. "Microsoft.NETCore.Targets": "1.1.0",
  2292. "System.Reflection": "4.3.0",
  2293. "System.Reflection.Primitives": "4.3.0",
  2294. "System.Runtime": "4.3.0",
  2295. "System.Runtime.Handles": "4.3.0"
  2296. },
  2297. "compile": {
  2298. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2299. }
  2300. },
  2301. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2302. "type": "package",
  2303. "dependencies": {
  2304. "System.Reflection": "4.3.0",
  2305. "System.Reflection.Extensions": "4.3.0",
  2306. "System.Resources.ResourceManager": "4.3.0",
  2307. "System.Runtime": "4.3.0",
  2308. "System.Runtime.InteropServices": "4.3.0",
  2309. "System.Threading": "4.3.0",
  2310. "runtime.native.System": "4.3.0"
  2311. },
  2312. "compile": {
  2313. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2314. },
  2315. "runtime": {
  2316. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2317. },
  2318. "runtimeTargets": {
  2319. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2320. "assetType": "runtime",
  2321. "rid": "unix"
  2322. },
  2323. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2324. "assetType": "runtime",
  2325. "rid": "win"
  2326. }
  2327. }
  2328. },
  2329. "System.Runtime.Loader/4.3.0": {
  2330. "type": "package",
  2331. "dependencies": {
  2332. "System.IO": "4.3.0",
  2333. "System.Reflection": "4.3.0",
  2334. "System.Runtime": "4.3.0"
  2335. },
  2336. "compile": {
  2337. "ref/netstandard1.5/System.Runtime.Loader.dll": {}
  2338. },
  2339. "runtime": {
  2340. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  2341. }
  2342. },
  2343. "System.Runtime.Numerics/4.3.0": {
  2344. "type": "package",
  2345. "dependencies": {
  2346. "System.Globalization": "4.3.0",
  2347. "System.Resources.ResourceManager": "4.3.0",
  2348. "System.Runtime": "4.3.0",
  2349. "System.Runtime.Extensions": "4.3.0"
  2350. },
  2351. "compile": {
  2352. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  2353. },
  2354. "runtime": {
  2355. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2356. }
  2357. },
  2358. "System.Runtime.Serialization.Formatters/4.3.0": {
  2359. "type": "package",
  2360. "dependencies": {
  2361. "System.Collections": "4.3.0",
  2362. "System.Reflection": "4.3.0",
  2363. "System.Resources.ResourceManager": "4.3.0",
  2364. "System.Runtime": "4.3.0",
  2365. "System.Runtime.Serialization.Primitives": "4.3.0"
  2366. },
  2367. "compile": {
  2368. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {}
  2369. },
  2370. "runtime": {
  2371. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  2372. }
  2373. },
  2374. "System.Runtime.Serialization.Primitives/4.3.0": {
  2375. "type": "package",
  2376. "dependencies": {
  2377. "System.Resources.ResourceManager": "4.3.0",
  2378. "System.Runtime": "4.3.0"
  2379. },
  2380. "compile": {
  2381. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2382. },
  2383. "runtime": {
  2384. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2385. }
  2386. },
  2387. "System.Security.AccessControl/4.7.0": {
  2388. "type": "package",
  2389. "dependencies": {
  2390. "Microsoft.NETCore.Platforms": "3.1.0",
  2391. "System.Security.Principal.Windows": "4.7.0"
  2392. },
  2393. "compile": {
  2394. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  2395. },
  2396. "runtime": {
  2397. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2398. },
  2399. "runtimeTargets": {
  2400. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2401. "assetType": "runtime",
  2402. "rid": "win"
  2403. }
  2404. }
  2405. },
  2406. "System.Security.Cryptography.Algorithms/4.3.1": {
  2407. "type": "package",
  2408. "dependencies": {
  2409. "Microsoft.NETCore.Platforms": "1.1.0",
  2410. "System.Collections": "4.3.0",
  2411. "System.IO": "4.3.0",
  2412. "System.Resources.ResourceManager": "4.3.0",
  2413. "System.Runtime": "4.3.0",
  2414. "System.Runtime.Extensions": "4.3.0",
  2415. "System.Runtime.Handles": "4.3.0",
  2416. "System.Runtime.InteropServices": "4.3.0",
  2417. "System.Runtime.Numerics": "4.3.0",
  2418. "System.Security.Cryptography.Encoding": "4.3.0",
  2419. "System.Security.Cryptography.Primitives": "4.3.0",
  2420. "System.Text.Encoding": "4.3.0",
  2421. "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
  2422. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  2423. },
  2424. "compile": {
  2425. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2426. },
  2427. "runtimeTargets": {
  2428. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2429. "assetType": "runtime",
  2430. "rid": "osx"
  2431. },
  2432. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2433. "assetType": "runtime",
  2434. "rid": "unix"
  2435. },
  2436. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2437. "assetType": "runtime",
  2438. "rid": "win"
  2439. }
  2440. }
  2441. },
  2442. "System.Security.Cryptography.Cng/4.5.0": {
  2443. "type": "package",
  2444. "compile": {
  2445. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2446. },
  2447. "runtime": {
  2448. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2449. },
  2450. "runtimeTargets": {
  2451. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2452. "assetType": "runtime",
  2453. "rid": "win"
  2454. }
  2455. }
  2456. },
  2457. "System.Security.Cryptography.Csp/4.3.0": {
  2458. "type": "package",
  2459. "dependencies": {
  2460. "Microsoft.NETCore.Platforms": "1.1.0",
  2461. "System.IO": "4.3.0",
  2462. "System.Reflection": "4.3.0",
  2463. "System.Resources.ResourceManager": "4.3.0",
  2464. "System.Runtime": "4.3.0",
  2465. "System.Runtime.Extensions": "4.3.0",
  2466. "System.Runtime.Handles": "4.3.0",
  2467. "System.Runtime.InteropServices": "4.3.0",
  2468. "System.Security.Cryptography.Algorithms": "4.3.0",
  2469. "System.Security.Cryptography.Encoding": "4.3.0",
  2470. "System.Security.Cryptography.Primitives": "4.3.0",
  2471. "System.Text.Encoding": "4.3.0",
  2472. "System.Threading": "4.3.0"
  2473. },
  2474. "compile": {
  2475. "ref/netstandard1.3/_._": {}
  2476. },
  2477. "runtimeTargets": {
  2478. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2479. "assetType": "runtime",
  2480. "rid": "unix"
  2481. },
  2482. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2483. "assetType": "runtime",
  2484. "rid": "win"
  2485. }
  2486. }
  2487. },
  2488. "System.Security.Cryptography.Encoding/4.3.0": {
  2489. "type": "package",
  2490. "dependencies": {
  2491. "Microsoft.NETCore.Platforms": "1.1.0",
  2492. "System.Collections": "4.3.0",
  2493. "System.Collections.Concurrent": "4.3.0",
  2494. "System.Linq": "4.3.0",
  2495. "System.Resources.ResourceManager": "4.3.0",
  2496. "System.Runtime": "4.3.0",
  2497. "System.Runtime.Extensions": "4.3.0",
  2498. "System.Runtime.Handles": "4.3.0",
  2499. "System.Runtime.InteropServices": "4.3.0",
  2500. "System.Security.Cryptography.Primitives": "4.3.0",
  2501. "System.Text.Encoding": "4.3.0",
  2502. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2503. },
  2504. "compile": {
  2505. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2506. },
  2507. "runtimeTargets": {
  2508. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2509. "assetType": "runtime",
  2510. "rid": "unix"
  2511. },
  2512. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2513. "assetType": "runtime",
  2514. "rid": "win"
  2515. }
  2516. }
  2517. },
  2518. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2519. "type": "package",
  2520. "dependencies": {
  2521. "System.Collections": "4.3.0",
  2522. "System.IO": "4.3.0",
  2523. "System.Resources.ResourceManager": "4.3.0",
  2524. "System.Runtime": "4.3.0",
  2525. "System.Runtime.Extensions": "4.3.0",
  2526. "System.Runtime.Handles": "4.3.0",
  2527. "System.Runtime.InteropServices": "4.3.0",
  2528. "System.Runtime.Numerics": "4.3.0",
  2529. "System.Security.Cryptography.Algorithms": "4.3.0",
  2530. "System.Security.Cryptography.Encoding": "4.3.0",
  2531. "System.Security.Cryptography.Primitives": "4.3.0",
  2532. "System.Text.Encoding": "4.3.0",
  2533. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2534. },
  2535. "compile": {
  2536. "ref/netstandard1.6/_._": {}
  2537. },
  2538. "runtime": {
  2539. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2540. },
  2541. "runtimeTargets": {
  2542. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2543. "assetType": "runtime",
  2544. "rid": "unix"
  2545. }
  2546. }
  2547. },
  2548. "System.Security.Cryptography.Primitives/4.3.0": {
  2549. "type": "package",
  2550. "dependencies": {
  2551. "System.Diagnostics.Debug": "4.3.0",
  2552. "System.Globalization": "4.3.0",
  2553. "System.IO": "4.3.0",
  2554. "System.Resources.ResourceManager": "4.3.0",
  2555. "System.Runtime": "4.3.0",
  2556. "System.Threading": "4.3.0",
  2557. "System.Threading.Tasks": "4.3.0"
  2558. },
  2559. "compile": {
  2560. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2561. },
  2562. "runtime": {
  2563. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2564. }
  2565. },
  2566. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2567. "type": "package",
  2568. "compile": {
  2569. "ref/netstandard2.0/_._": {}
  2570. },
  2571. "runtime": {
  2572. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2573. },
  2574. "runtimeTargets": {
  2575. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2576. "assetType": "runtime",
  2577. "rid": "win"
  2578. }
  2579. }
  2580. },
  2581. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2582. "type": "package",
  2583. "dependencies": {
  2584. "Microsoft.NETCore.Platforms": "1.1.0",
  2585. "System.Collections": "4.3.0",
  2586. "System.Diagnostics.Debug": "4.3.0",
  2587. "System.Globalization": "4.3.0",
  2588. "System.Globalization.Calendars": "4.3.0",
  2589. "System.IO": "4.3.0",
  2590. "System.IO.FileSystem": "4.3.0",
  2591. "System.IO.FileSystem.Primitives": "4.3.0",
  2592. "System.Resources.ResourceManager": "4.3.0",
  2593. "System.Runtime": "4.3.0",
  2594. "System.Runtime.Extensions": "4.3.0",
  2595. "System.Runtime.Handles": "4.3.0",
  2596. "System.Runtime.InteropServices": "4.3.0",
  2597. "System.Runtime.Numerics": "4.3.0",
  2598. "System.Security.Cryptography.Algorithms": "4.3.0",
  2599. "System.Security.Cryptography.Cng": "4.3.0",
  2600. "System.Security.Cryptography.Csp": "4.3.0",
  2601. "System.Security.Cryptography.Encoding": "4.3.0",
  2602. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2603. "System.Security.Cryptography.Primitives": "4.3.0",
  2604. "System.Text.Encoding": "4.3.0",
  2605. "System.Threading": "4.3.0",
  2606. "runtime.native.System": "4.3.0",
  2607. "runtime.native.System.Net.Http": "4.3.0",
  2608. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2609. },
  2610. "compile": {
  2611. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2612. },
  2613. "runtimeTargets": {
  2614. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2615. "assetType": "runtime",
  2616. "rid": "unix"
  2617. },
  2618. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2619. "assetType": "runtime",
  2620. "rid": "win"
  2621. }
  2622. }
  2623. },
  2624. "System.Security.Permissions/4.7.0": {
  2625. "type": "package",
  2626. "dependencies": {
  2627. "System.Security.AccessControl": "4.7.0",
  2628. "System.Windows.Extensions": "4.7.0"
  2629. },
  2630. "compile": {
  2631. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  2632. },
  2633. "runtime": {
  2634. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  2635. }
  2636. },
  2637. "System.Security.Principal.Windows/4.7.0": {
  2638. "type": "package",
  2639. "compile": {
  2640. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2641. },
  2642. "runtime": {
  2643. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2644. },
  2645. "runtimeTargets": {
  2646. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2647. "assetType": "runtime",
  2648. "rid": "unix"
  2649. },
  2650. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2651. "assetType": "runtime",
  2652. "rid": "win"
  2653. }
  2654. }
  2655. },
  2656. "System.ServiceModel.Duplex/4.4.4": {
  2657. "type": "package",
  2658. "dependencies": {
  2659. "System.Private.ServiceModel": "4.4.4",
  2660. "System.ServiceModel.Primitives": "4.4.4"
  2661. },
  2662. "compile": {
  2663. "ref/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2664. },
  2665. "runtime": {
  2666. "lib/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2667. }
  2668. },
  2669. "System.ServiceModel.Http/4.4.4": {
  2670. "type": "package",
  2671. "dependencies": {
  2672. "System.Private.ServiceModel": "4.4.4",
  2673. "System.ServiceModel.Primitives": "4.4.4"
  2674. },
  2675. "compile": {
  2676. "ref/netstandard2.0/System.ServiceModel.Http.dll": {}
  2677. },
  2678. "runtime": {
  2679. "lib/netstandard2.0/System.ServiceModel.Http.dll": {}
  2680. }
  2681. },
  2682. "System.ServiceModel.NetTcp/4.4.4": {
  2683. "type": "package",
  2684. "dependencies": {
  2685. "System.Private.ServiceModel": "4.4.4",
  2686. "System.ServiceModel.Primitives": "4.4.4"
  2687. },
  2688. "compile": {
  2689. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2690. },
  2691. "runtime": {
  2692. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2693. }
  2694. },
  2695. "System.ServiceModel.Primitives/4.4.4": {
  2696. "type": "package",
  2697. "dependencies": {
  2698. "System.Private.ServiceModel": "4.4.4"
  2699. },
  2700. "compile": {
  2701. "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2702. "ref/netstandard2.0/System.ServiceModel.dll": {}
  2703. },
  2704. "runtime": {
  2705. "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2706. "lib/netstandard2.0/System.ServiceModel.dll": {}
  2707. }
  2708. },
  2709. "System.ServiceModel.Security/4.4.4": {
  2710. "type": "package",
  2711. "dependencies": {
  2712. "System.Private.ServiceModel": "4.4.4",
  2713. "System.ServiceModel.Primitives": "4.4.4"
  2714. },
  2715. "compile": {
  2716. "ref/netstandard2.0/System.ServiceModel.Security.dll": {}
  2717. },
  2718. "runtime": {
  2719. "lib/netstandard2.0/System.ServiceModel.Security.dll": {}
  2720. }
  2721. },
  2722. "System.Text.Encoding/4.3.0": {
  2723. "type": "package",
  2724. "dependencies": {
  2725. "Microsoft.NETCore.Platforms": "1.1.0",
  2726. "Microsoft.NETCore.Targets": "1.1.0",
  2727. "System.Runtime": "4.3.0"
  2728. },
  2729. "compile": {
  2730. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2731. }
  2732. },
  2733. "System.Text.Encoding.CodePages/4.7.1": {
  2734. "type": "package",
  2735. "dependencies": {
  2736. "Microsoft.NETCore.Platforms": "3.1.1"
  2737. },
  2738. "compile": {
  2739. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2740. },
  2741. "runtime": {
  2742. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2743. },
  2744. "runtimeTargets": {
  2745. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2746. "assetType": "runtime",
  2747. "rid": "win"
  2748. }
  2749. }
  2750. },
  2751. "System.Text.Encoding.Extensions/4.3.0": {
  2752. "type": "package",
  2753. "dependencies": {
  2754. "Microsoft.NETCore.Platforms": "1.1.0",
  2755. "Microsoft.NETCore.Targets": "1.1.0",
  2756. "System.Runtime": "4.3.0",
  2757. "System.Text.Encoding": "4.3.0"
  2758. },
  2759. "compile": {
  2760. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2761. }
  2762. },
  2763. "System.Text.Encodings.Web/4.5.0": {
  2764. "type": "package",
  2765. "compile": {
  2766. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2767. },
  2768. "runtime": {
  2769. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2770. }
  2771. },
  2772. "System.Text.RegularExpressions/4.3.0": {
  2773. "type": "package",
  2774. "dependencies": {
  2775. "System.Runtime": "4.3.0"
  2776. },
  2777. "compile": {
  2778. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2779. },
  2780. "runtime": {
  2781. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2782. }
  2783. },
  2784. "System.Threading/4.3.0": {
  2785. "type": "package",
  2786. "dependencies": {
  2787. "System.Runtime": "4.3.0",
  2788. "System.Threading.Tasks": "4.3.0"
  2789. },
  2790. "compile": {
  2791. "ref/netstandard1.3/System.Threading.dll": {}
  2792. },
  2793. "runtime": {
  2794. "lib/netstandard1.3/System.Threading.dll": {}
  2795. }
  2796. },
  2797. "System.Threading.Tasks/4.3.0": {
  2798. "type": "package",
  2799. "dependencies": {
  2800. "Microsoft.NETCore.Platforms": "1.1.0",
  2801. "Microsoft.NETCore.Targets": "1.1.0",
  2802. "System.Runtime": "4.3.0"
  2803. },
  2804. "compile": {
  2805. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2806. }
  2807. },
  2808. "System.Threading.Tasks.Extensions/4.3.0": {
  2809. "type": "package",
  2810. "dependencies": {
  2811. "System.Collections": "4.3.0",
  2812. "System.Runtime": "4.3.0",
  2813. "System.Threading.Tasks": "4.3.0"
  2814. },
  2815. "compile": {
  2816. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2817. },
  2818. "runtime": {
  2819. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2820. }
  2821. },
  2822. "System.Threading.Timer/4.3.0": {
  2823. "type": "package",
  2824. "dependencies": {
  2825. "Microsoft.NETCore.Platforms": "1.1.0",
  2826. "Microsoft.NETCore.Targets": "1.1.0",
  2827. "System.Runtime": "4.3.0"
  2828. },
  2829. "compile": {
  2830. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2831. }
  2832. },
  2833. "System.Windows.Extensions/4.7.0": {
  2834. "type": "package",
  2835. "dependencies": {
  2836. "System.Drawing.Common": "4.7.0"
  2837. },
  2838. "compile": {
  2839. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2840. },
  2841. "runtime": {
  2842. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2843. },
  2844. "runtimeTargets": {
  2845. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2846. "assetType": "runtime",
  2847. "rid": "win"
  2848. }
  2849. }
  2850. },
  2851. "System.Xml.ReaderWriter/4.3.1": {
  2852. "type": "package",
  2853. "dependencies": {
  2854. "System.Collections": "4.3.0",
  2855. "System.Diagnostics.Debug": "4.3.0",
  2856. "System.Globalization": "4.3.0",
  2857. "System.IO": "4.3.0",
  2858. "System.IO.FileSystem": "4.3.0",
  2859. "System.IO.FileSystem.Primitives": "4.3.0",
  2860. "System.Resources.ResourceManager": "4.3.0",
  2861. "System.Runtime": "4.3.0",
  2862. "System.Runtime.Extensions": "4.3.0",
  2863. "System.Runtime.InteropServices": "4.3.0",
  2864. "System.Text.Encoding": "4.3.0",
  2865. "System.Text.Encoding.Extensions": "4.3.0",
  2866. "System.Text.RegularExpressions": "4.3.0",
  2867. "System.Threading.Tasks": "4.3.0",
  2868. "System.Threading.Tasks.Extensions": "4.3.0"
  2869. },
  2870. "compile": {
  2871. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2872. },
  2873. "runtime": {
  2874. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2875. }
  2876. },
  2877. "System.Xml.XDocument/4.3.0": {
  2878. "type": "package",
  2879. "dependencies": {
  2880. "System.Collections": "4.3.0",
  2881. "System.Diagnostics.Debug": "4.3.0",
  2882. "System.Diagnostics.Tools": "4.3.0",
  2883. "System.Globalization": "4.3.0",
  2884. "System.IO": "4.3.0",
  2885. "System.Reflection": "4.3.0",
  2886. "System.Resources.ResourceManager": "4.3.0",
  2887. "System.Runtime": "4.3.0",
  2888. "System.Runtime.Extensions": "4.3.0",
  2889. "System.Text.Encoding": "4.3.0",
  2890. "System.Threading": "4.3.0",
  2891. "System.Xml.ReaderWriter": "4.3.0"
  2892. },
  2893. "compile": {
  2894. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2895. },
  2896. "runtime": {
  2897. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2898. }
  2899. },
  2900. "System.Xml.XmlDocument/4.3.0": {
  2901. "type": "package",
  2902. "dependencies": {
  2903. "System.Collections": "4.3.0",
  2904. "System.Diagnostics.Debug": "4.3.0",
  2905. "System.Globalization": "4.3.0",
  2906. "System.IO": "4.3.0",
  2907. "System.Resources.ResourceManager": "4.3.0",
  2908. "System.Runtime": "4.3.0",
  2909. "System.Runtime.Extensions": "4.3.0",
  2910. "System.Text.Encoding": "4.3.0",
  2911. "System.Threading": "4.3.0",
  2912. "System.Xml.ReaderWriter": "4.3.0"
  2913. },
  2914. "compile": {
  2915. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2916. },
  2917. "runtime": {
  2918. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2919. }
  2920. },
  2921. "WebAPIBase.NetCore.BusinessCore/1.0.0": {
  2922. "type": "project",
  2923. "framework": ".NETStandard,Version=v2.1",
  2924. "dependencies": {
  2925. "Microsoft.Extensions.Configuration.Abstractions": "3.1.10",
  2926. "NLog": "4.7.5",
  2927. "System.ServiceModel.Duplex": "4.4.0",
  2928. "System.ServiceModel.Http": "4.4.0",
  2929. "System.ServiceModel.NetTcp": "4.4.0",
  2930. "System.ServiceModel.Security": "4.4.0",
  2931. "WebAPIBase.NetCore.Enties": "1.0.0",
  2932. "WebAPIBase.Utils": "1.0.0",
  2933. "iTextSharp.LGPLv2.Core": "1.7.0",
  2934. "sqlSugarCore": "5.0.0.18"
  2935. },
  2936. "compile": {
  2937. "bin/placeholder/WebAPIBase.NetCore.BusinessCore.dll": {}
  2938. },
  2939. "runtime": {
  2940. "bin/placeholder/WebAPIBase.NetCore.BusinessCore.dll": {}
  2941. }
  2942. },
  2943. "WebAPIBase.NetCore.Enties/1.0.0": {
  2944. "type": "project",
  2945. "framework": ".NETStandard,Version=v2.1",
  2946. "dependencies": {
  2947. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "3.1.10",
  2948. "Microsoft.Extensions.Identity.Stores": "3.1.10",
  2949. "WebAPIBase.Utils": "1.0.0",
  2950. "sqlSugarCore": "5.0.0.18"
  2951. },
  2952. "compile": {
  2953. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  2954. },
  2955. "runtime": {
  2956. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  2957. }
  2958. },
  2959. "WebAPIBase.Utils/1.0.0": {
  2960. "type": "project",
  2961. "framework": ".NETStandard,Version=v2.0",
  2962. "dependencies": {
  2963. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  2964. "Microsoft.Extensions.Caching.Memory": "3.1.2",
  2965. "Microsoft.Extensions.Configuration": "3.1.10",
  2966. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  2967. "Microsoft.Extensions.Configuration.Json": "3.1.2",
  2968. "Microsoft.NETCore.Runtime.CoreCLR": "2.0.8",
  2969. "NLog": "4.7.5",
  2970. "NLog.Web.AspNetCore": "4.9.3",
  2971. "Quartz": "3.2.3",
  2972. "System.Drawing.Common": "4.7.0",
  2973. "System.IdentityModel.Tokens.Jwt": "5.6.0"
  2974. },
  2975. "compile": {
  2976. "bin/placeholder/WebAPIBase.Utils.dll": {}
  2977. },
  2978. "runtime": {
  2979. "bin/placeholder/WebAPIBase.Utils.dll": {}
  2980. }
  2981. }
  2982. }
  2983. },
  2984. "libraries": {
  2985. "coverlet.collector/1.2.0": {
  2986. "sha512": "ZB+EGXsVBIn8cew7D3S2c+rgIlokKv1dSwsXEoiFQaNXF/BSxp9Rlfz/jV1ehSWH5XpLitfRxFNW3ok7uPDOXA==",
  2987. "type": "package",
  2988. "path": "coverlet.collector/1.2.0",
  2989. "files": [
  2990. ".nupkg.metadata",
  2991. ".signature.p7s",
  2992. "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll",
  2993. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2994. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll",
  2995. "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll",
  2996. "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  2997. "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  2998. "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2999. "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3000. "build/netstandard1.0/Mono.Cecil.Mdb.dll",
  3001. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  3002. "build/netstandard1.0/Mono.Cecil.Rocks.dll",
  3003. "build/netstandard1.0/Mono.Cecil.dll",
  3004. "build/netstandard1.0/Newtonsoft.Json.dll",
  3005. "build/netstandard1.0/System.Xml.XPath.XmlDocument.dll",
  3006. "build/netstandard1.0/coverlet.collector.deps.json",
  3007. "build/netstandard1.0/coverlet.collector.dll",
  3008. "build/netstandard1.0/coverlet.collector.pdb",
  3009. "build/netstandard1.0/coverlet.collector.targets",
  3010. "build/netstandard1.0/coverlet.core.dll",
  3011. "build/netstandard1.0/coverlet.core.pdb",
  3012. "coverlet.collector.1.2.0.nupkg.sha512",
  3013. "coverlet.collector.nuspec"
  3014. ]
  3015. },
  3016. "Google.Protobuf/3.5.1": {
  3017. "sha512": "f2k1VNaB9bfvEsvARzzEL1TZiIpL33KKK3JMH7UANlPlJVptuvsk4qpBZEnz0pORWZOdUHlVwMQuUzFqjJYCxA==",
  3018. "type": "package",
  3019. "path": "google.protobuf/3.5.1",
  3020. "files": [
  3021. ".nupkg.metadata",
  3022. ".signature.p7s",
  3023. "google.protobuf.3.5.1.nupkg.sha512",
  3024. "google.protobuf.nuspec",
  3025. "lib/net45/Google.Protobuf.dll",
  3026. "lib/net45/Google.Protobuf.xml",
  3027. "lib/netstandard1.0/Google.Protobuf.dll",
  3028. "lib/netstandard1.0/Google.Protobuf.xml"
  3029. ]
  3030. },
  3031. "iTextSharp.LGPLv2.Core/1.7.0": {
  3032. "sha512": "eN/ivAHNjPFCBle/IRmU0om47ywhX2/oumEUsRwv50FSsTCcty87BXjzn6fP2S2+yJGc6gaEQ9YFaYU7Loybkg==",
  3033. "type": "package",
  3034. "path": "itextsharp.lgplv2.core/1.7.0",
  3035. "files": [
  3036. ".nupkg.metadata",
  3037. ".signature.p7s",
  3038. "itextsharp.lgplv2.core.1.7.0.nupkg.sha512",
  3039. "itextsharp.lgplv2.core.nuspec",
  3040. "lib/net40/iTextSharp.LGPLv2.Core.dll",
  3041. "lib/net40/iTextSharp.LGPLv2.Core.xml",
  3042. "lib/netstandard1.3/iTextSharp.LGPLv2.Core.dll",
  3043. "lib/netstandard1.3/iTextSharp.LGPLv2.Core.xml",
  3044. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll",
  3045. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.xml"
  3046. ]
  3047. },
  3048. "Microsoft.AspNetCore.Cryptography.Internal/3.1.10": {
  3049. "sha512": "s5jFewA59+K/MXnib5eC/WVCDyL4EvSVtBzvXmAlTcZ9iBqqw+4oyFWP5hHy2NZuynjvKDFsokR9zEDrdEwLYA==",
  3050. "type": "package",
  3051. "path": "microsoft.aspnetcore.cryptography.internal/3.1.10",
  3052. "files": [
  3053. ".nupkg.metadata",
  3054. ".signature.p7s",
  3055. "Icon.png",
  3056. "THIRD-PARTY-NOTICES.TXT",
  3057. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3058. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3059. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3060. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3061. "microsoft.aspnetcore.cryptography.internal.3.1.10.nupkg.sha512",
  3062. "microsoft.aspnetcore.cryptography.internal.nuspec"
  3063. ]
  3064. },
  3065. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.10": {
  3066. "sha512": "yXwwlRVybA/IlIl+djCnJAKIoQmG6AXN8K7/yx2csFkt+5SLD03/ziUhyfiH6yJ80LLlHsWxIYedug0s/UDh9g==",
  3067. "type": "package",
  3068. "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.10",
  3069. "files": [
  3070. ".nupkg.metadata",
  3071. ".signature.p7s",
  3072. "Icon.png",
  3073. "THIRD-PARTY-NOTICES.TXT",
  3074. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3075. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3076. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3077. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3078. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3079. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3080. "microsoft.aspnetcore.cryptography.keyderivation.3.1.10.nupkg.sha512",
  3081. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  3082. ]
  3083. },
  3084. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  3085. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  3086. "type": "package",
  3087. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  3088. "files": [
  3089. ".nupkg.metadata",
  3090. ".signature.p7s",
  3091. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  3092. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  3093. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  3094. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  3095. ]
  3096. },
  3097. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  3098. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  3099. "type": "package",
  3100. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  3101. "files": [
  3102. ".nupkg.metadata",
  3103. ".signature.p7s",
  3104. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  3105. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  3106. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  3107. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  3108. ]
  3109. },
  3110. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3111. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3112. "type": "package",
  3113. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3114. "files": [
  3115. ".nupkg.metadata",
  3116. ".signature.p7s",
  3117. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3118. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3119. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3120. "microsoft.aspnetcore.http.abstractions.nuspec"
  3121. ]
  3122. },
  3123. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  3124. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  3125. "type": "package",
  3126. "path": "microsoft.aspnetcore.http.features/2.2.0",
  3127. "files": [
  3128. ".nupkg.metadata",
  3129. ".signature.p7s",
  3130. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3131. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3132. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  3133. "microsoft.aspnetcore.http.features.nuspec"
  3134. ]
  3135. },
  3136. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/3.1.10": {
  3137. "sha512": "5zh2py185WLLC5qJRgtI44FKi95LwxxxoTTEf1S230MJZix0JygPzYzXRfnkBej0pR6c7oqwDNwGmS7JR7KNKw==",
  3138. "type": "package",
  3139. "path": "microsoft.aspnetcore.identity.entityframeworkcore/3.1.10",
  3140. "files": [
  3141. ".nupkg.metadata",
  3142. ".signature.p7s",
  3143. "Icon.png",
  3144. "THIRD-PARTY-NOTICES.TXT",
  3145. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3146. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3147. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3148. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3149. "microsoft.aspnetcore.identity.entityframeworkcore.3.1.10.nupkg.sha512",
  3150. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  3151. ]
  3152. },
  3153. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  3154. "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
  3155. "type": "package",
  3156. "path": "microsoft.bcl.asyncinterfaces/1.1.1",
  3157. "files": [
  3158. ".nupkg.metadata",
  3159. ".signature.p7s",
  3160. "Icon.png",
  3161. "LICENSE.TXT",
  3162. "THIRD-PARTY-NOTICES.TXT",
  3163. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  3164. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  3165. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3166. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  3167. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3168. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  3169. "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
  3170. "microsoft.bcl.asyncinterfaces.nuspec",
  3171. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  3172. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3173. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3174. "useSharedDesignerContext.txt",
  3175. "version.txt"
  3176. ]
  3177. },
  3178. "Microsoft.Bcl.HashCode/1.1.0": {
  3179. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  3180. "type": "package",
  3181. "path": "microsoft.bcl.hashcode/1.1.0",
  3182. "files": [
  3183. ".nupkg.metadata",
  3184. ".signature.p7s",
  3185. "LICENSE.TXT",
  3186. "THIRD-PARTY-NOTICES.TXT",
  3187. "lib/net461/Microsoft.Bcl.HashCode.dll",
  3188. "lib/net461/Microsoft.Bcl.HashCode.xml",
  3189. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3190. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  3191. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3192. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  3193. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3194. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  3195. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  3196. "microsoft.bcl.hashcode.nuspec",
  3197. "ref/net461/Microsoft.Bcl.HashCode.dll",
  3198. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3199. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3200. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3201. "useSharedDesignerContext.txt",
  3202. "version.txt"
  3203. ]
  3204. },
  3205. "Microsoft.CodeCoverage/16.5.0": {
  3206. "sha512": "PM5YLtyN45EyUGePJpaNogndlaQPrMgQQXHKMhMESC6KfSVvt+j7+dxBi8NYC6X6dZVysf7ngwhSW3wwvPJRSQ==",
  3207. "type": "package",
  3208. "path": "microsoft.codecoverage/16.5.0",
  3209. "files": [
  3210. ".nupkg.metadata",
  3211. ".signature.p7s",
  3212. "build/netstandard1.0/CodeCoverage/CodeCoverage.config",
  3213. "build/netstandard1.0/CodeCoverage/CodeCoverage.exe",
  3214. "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll",
  3215. "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll",
  3216. "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll",
  3217. "build/netstandard1.0/CodeCoverage/covrun32.dll",
  3218. "build/netstandard1.0/CodeCoverage/msdia140.dll",
  3219. "build/netstandard1.0/Microsoft.CodeCoverage.props",
  3220. "build/netstandard1.0/Microsoft.CodeCoverage.targets",
  3221. "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll",
  3222. "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3223. "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3224. "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3225. "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3226. "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3227. "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3228. "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3229. "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3230. "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3231. "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3232. "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3233. "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3234. "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3235. "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3236. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3237. "microsoft.codecoverage.16.5.0.nupkg.sha512",
  3238. "microsoft.codecoverage.nuspec"
  3239. ]
  3240. },
  3241. "Microsoft.CSharp/4.3.0": {
  3242. "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
  3243. "type": "package",
  3244. "path": "microsoft.csharp/4.3.0",
  3245. "files": [
  3246. ".nupkg.metadata",
  3247. ".signature.p7s",
  3248. "ThirdPartyNotices.txt",
  3249. "dotnet_library_license.txt",
  3250. "lib/MonoAndroid10/_._",
  3251. "lib/MonoTouch10/_._",
  3252. "lib/net45/_._",
  3253. "lib/netcore50/Microsoft.CSharp.dll",
  3254. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3255. "lib/portable-net45+win8+wp8+wpa81/_._",
  3256. "lib/win8/_._",
  3257. "lib/wp80/_._",
  3258. "lib/wpa81/_._",
  3259. "lib/xamarinios10/_._",
  3260. "lib/xamarinmac20/_._",
  3261. "lib/xamarintvos10/_._",
  3262. "lib/xamarinwatchos10/_._",
  3263. "microsoft.csharp.4.3.0.nupkg.sha512",
  3264. "microsoft.csharp.nuspec",
  3265. "ref/MonoAndroid10/_._",
  3266. "ref/MonoTouch10/_._",
  3267. "ref/net45/_._",
  3268. "ref/netcore50/Microsoft.CSharp.dll",
  3269. "ref/netcore50/Microsoft.CSharp.xml",
  3270. "ref/netcore50/de/Microsoft.CSharp.xml",
  3271. "ref/netcore50/es/Microsoft.CSharp.xml",
  3272. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3273. "ref/netcore50/it/Microsoft.CSharp.xml",
  3274. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3275. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3276. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3277. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3278. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3279. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3280. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3281. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3282. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3283. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3284. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3285. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3286. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3287. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3288. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3289. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3290. "ref/portable-net45+win8+wp8+wpa81/_._",
  3291. "ref/win8/_._",
  3292. "ref/wp80/_._",
  3293. "ref/wpa81/_._",
  3294. "ref/xamarinios10/_._",
  3295. "ref/xamarinmac20/_._",
  3296. "ref/xamarintvos10/_._",
  3297. "ref/xamarinwatchos10/_._"
  3298. ]
  3299. },
  3300. "Microsoft.Data.Sqlite/2.2.4": {
  3301. "sha512": "QgYDdW07QZUyZPwisIU3Db62FnK6Yfcuru7KAsHusLGstJ0kBIXFnG185PcWmm2ba4AN0ab1iwrhXZr/9Yxj0w==",
  3302. "type": "package",
  3303. "path": "microsoft.data.sqlite/2.2.4",
  3304. "files": [
  3305. ".nupkg.metadata",
  3306. ".signature.p7s",
  3307. "lib/netstandard2.0/_._",
  3308. "microsoft.data.sqlite.2.2.4.nupkg.sha512",
  3309. "microsoft.data.sqlite.nuspec"
  3310. ]
  3311. },
  3312. "Microsoft.Data.Sqlite.Core/2.2.4": {
  3313. "sha512": "69DJj8bUJpXPfWpmJ/Sh165GWjLjlL516l0GnJDImabfR+leXb61HaQF97THWvyx5yY7MvpO94QW5nyiXMVOAA==",
  3314. "type": "package",
  3315. "path": "microsoft.data.sqlite.core/2.2.4",
  3316. "files": [
  3317. ".nupkg.metadata",
  3318. ".signature.p7s",
  3319. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  3320. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  3321. "microsoft.data.sqlite.core.2.2.4.nupkg.sha512",
  3322. "microsoft.data.sqlite.core.nuspec"
  3323. ]
  3324. },
  3325. "Microsoft.EntityFrameworkCore/3.1.10": {
  3326. "sha512": "0IhJl9mVJ4IhHobKvOo2iLB0xfxX2eYaSz4VZX+bMSm8IyZA1tOmyaOtg7oSzeUAe6eqpKVQLTgMFzk2AqCcaA==",
  3327. "type": "package",
  3328. "path": "microsoft.entityframeworkcore/3.1.10",
  3329. "files": [
  3330. ".nupkg.metadata",
  3331. ".signature.p7s",
  3332. "Icon.png",
  3333. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  3334. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  3335. "microsoft.entityframeworkcore.3.1.10.nupkg.sha512",
  3336. "microsoft.entityframeworkcore.nuspec"
  3337. ]
  3338. },
  3339. "Microsoft.EntityFrameworkCore.Abstractions/3.1.10": {
  3340. "sha512": "B1kUQ7o6+4Ly2neo86RJCpTYzTPpW1xzpHyRaTmGQS/p7umZOGoBJay+i/YDLmZkUPI4XULGnu5KJKipA0awUw==",
  3341. "type": "package",
  3342. "path": "microsoft.entityframeworkcore.abstractions/3.1.10",
  3343. "files": [
  3344. ".nupkg.metadata",
  3345. ".signature.p7s",
  3346. "Icon.png",
  3347. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3348. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3349. "microsoft.entityframeworkcore.abstractions.3.1.10.nupkg.sha512",
  3350. "microsoft.entityframeworkcore.abstractions.nuspec"
  3351. ]
  3352. },
  3353. "Microsoft.EntityFrameworkCore.Analyzers/3.1.10": {
  3354. "sha512": "reHrrF8i/Wao7l2PVXJ+JeZzEC4OkbcbfnQs8vtiT+SQ5P4MdQj3WzMkupjebaJWhIJZRc6qPT4BD9BUWQU4wQ==",
  3355. "type": "package",
  3356. "path": "microsoft.entityframeworkcore.analyzers/3.1.10",
  3357. "files": [
  3358. ".nupkg.metadata",
  3359. ".signature.p7s",
  3360. "Icon.png",
  3361. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3362. "lib/netstandard2.0/_._",
  3363. "microsoft.entityframeworkcore.analyzers.3.1.10.nupkg.sha512",
  3364. "microsoft.entityframeworkcore.analyzers.nuspec"
  3365. ]
  3366. },
  3367. "Microsoft.EntityFrameworkCore.Relational/3.1.10": {
  3368. "sha512": "JpDMpGDx+wPvFSbw9vu13nfZESdu2SPFhLI1bPZwqDU0ZV40TmUOUN91hHjWhgh5qRX1jQTWMuvK3EmlpywgAw==",
  3369. "type": "package",
  3370. "path": "microsoft.entityframeworkcore.relational/3.1.10",
  3371. "files": [
  3372. ".nupkg.metadata",
  3373. ".signature.p7s",
  3374. "Icon.png",
  3375. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  3376. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  3377. "microsoft.entityframeworkcore.relational.3.1.10.nupkg.sha512",
  3378. "microsoft.entityframeworkcore.relational.nuspec"
  3379. ]
  3380. },
  3381. "Microsoft.Extensions.Caching.Abstractions/3.1.10": {
  3382. "sha512": "xdl25cxDgwVxF9ckD9vJ5AdjzRE1vTGLYj9kZf6aL317ZneUijkxd/nSuzN1gEuO74dwG/Yfr1zfs636D6YZsA==",
  3383. "type": "package",
  3384. "path": "microsoft.extensions.caching.abstractions/3.1.10",
  3385. "files": [
  3386. ".nupkg.metadata",
  3387. ".signature.p7s",
  3388. "Icon.png",
  3389. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  3390. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  3391. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3392. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3393. "microsoft.extensions.caching.abstractions.3.1.10.nupkg.sha512",
  3394. "microsoft.extensions.caching.abstractions.nuspec"
  3395. ]
  3396. },
  3397. "Microsoft.Extensions.Caching.Memory/3.1.10": {
  3398. "sha512": "pR6mRkJx67/itEnEpnBiiATeH/P6RnhqvriD6RdQsXepO+uisfUrd149CTGPc1G5J0Qf9bwSCJkb/MYkuQ6mqw==",
  3399. "type": "package",
  3400. "path": "microsoft.extensions.caching.memory/3.1.10",
  3401. "files": [
  3402. ".nupkg.metadata",
  3403. ".signature.p7s",
  3404. "Icon.png",
  3405. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  3406. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  3407. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3408. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3409. "microsoft.extensions.caching.memory.3.1.10.nupkg.sha512",
  3410. "microsoft.extensions.caching.memory.nuspec"
  3411. ]
  3412. },
  3413. "Microsoft.Extensions.Configuration/3.1.10": {
  3414. "sha512": "HHBhCP3wAJe7UIXjim0wFXty0WG/rZAP3aZyy03uuaxiOOPHJjbUdY6K9qkfQuP+hsRzfiT+np5k4rFmcSo3og==",
  3415. "type": "package",
  3416. "path": "microsoft.extensions.configuration/3.1.10",
  3417. "files": [
  3418. ".nupkg.metadata",
  3419. ".signature.p7s",
  3420. "Icon.png",
  3421. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  3422. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  3423. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3424. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3425. "microsoft.extensions.configuration.3.1.10.nupkg.sha512",
  3426. "microsoft.extensions.configuration.nuspec"
  3427. ]
  3428. },
  3429. "Microsoft.Extensions.Configuration.Abstractions/3.1.10": {
  3430. "sha512": "UEfngyXt8XYhmekUza9JsWlA37pNOtZAjcK5EEKQrHo2LDKJmZVmcyAUFlkzCcf97OSr+w/MiDLifDDNQk9agw==",
  3431. "type": "package",
  3432. "path": "microsoft.extensions.configuration.abstractions/3.1.10",
  3433. "files": [
  3434. ".nupkg.metadata",
  3435. ".signature.p7s",
  3436. "Icon.png",
  3437. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  3438. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  3439. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3440. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3441. "microsoft.extensions.configuration.abstractions.3.1.10.nupkg.sha512",
  3442. "microsoft.extensions.configuration.abstractions.nuspec"
  3443. ]
  3444. },
  3445. "Microsoft.Extensions.Configuration.Binder/3.1.10": {
  3446. "sha512": "B9nQBk0GZVkOgSB1oB9V/7kvxhBvLCqm2x4m8MIoSxrd9yga8MVq2HWqnai8zZdH1WL6OlOG5mCVrwgAVwNNJg==",
  3447. "type": "package",
  3448. "path": "microsoft.extensions.configuration.binder/3.1.10",
  3449. "files": [
  3450. ".nupkg.metadata",
  3451. ".signature.p7s",
  3452. "Icon.png",
  3453. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  3454. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  3455. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3456. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3457. "microsoft.extensions.configuration.binder.3.1.10.nupkg.sha512",
  3458. "microsoft.extensions.configuration.binder.nuspec"
  3459. ]
  3460. },
  3461. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  3462. "sha512": "itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
  3463. "type": "package",
  3464. "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
  3465. "files": [
  3466. ".nupkg.metadata",
  3467. ".signature.p7s",
  3468. "Icon.png",
  3469. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3470. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3471. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3472. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3473. "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
  3474. "microsoft.extensions.configuration.fileextensions.nuspec"
  3475. ]
  3476. },
  3477. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  3478. "sha512": "AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
  3479. "type": "package",
  3480. "path": "microsoft.extensions.configuration.json/3.1.2",
  3481. "files": [
  3482. ".nupkg.metadata",
  3483. ".signature.p7s",
  3484. "Icon.png",
  3485. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll",
  3486. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml",
  3487. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3488. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3489. "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
  3490. "microsoft.extensions.configuration.json.nuspec"
  3491. ]
  3492. },
  3493. "Microsoft.Extensions.DependencyInjection/3.1.10": {
  3494. "sha512": "fla8hKhQmld2s/7arhUxlu3dzZLBFJLg4BQiQZdqKND4MlmnMU9jhoxY4MMlSYl6MtxumtwASHMJnuV9f96IQQ==",
  3495. "type": "package",
  3496. "path": "microsoft.extensions.dependencyinjection/3.1.10",
  3497. "files": [
  3498. ".nupkg.metadata",
  3499. ".signature.p7s",
  3500. "Icon.png",
  3501. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3502. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3503. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
  3504. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
  3505. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3506. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3507. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3508. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3509. "microsoft.extensions.dependencyinjection.3.1.10.nupkg.sha512",
  3510. "microsoft.extensions.dependencyinjection.nuspec"
  3511. ]
  3512. },
  3513. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.10": {
  3514. "sha512": "bhjtAN7Ix5WOAr47RK16Lr1l2eizSBMCYQSavkooZyf6Xdf8XWAYGWsGsPqUFOeeRxzhpRho051rXaLn5wskVw==",
  3515. "type": "package",
  3516. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.10",
  3517. "files": [
  3518. ".nupkg.metadata",
  3519. ".signature.p7s",
  3520. "Icon.png",
  3521. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3522. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3523. "microsoft.extensions.dependencyinjection.abstractions.3.1.10.nupkg.sha512",
  3524. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  3525. ]
  3526. },
  3527. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  3528. "sha512": "O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
  3529. "type": "package",
  3530. "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
  3531. "files": [
  3532. ".nupkg.metadata",
  3533. ".signature.p7s",
  3534. "Icon.png",
  3535. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3536. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3537. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3538. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3539. "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
  3540. "microsoft.extensions.fileproviders.abstractions.nuspec"
  3541. ]
  3542. },
  3543. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  3544. "sha512": "lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
  3545. "type": "package",
  3546. "path": "microsoft.extensions.fileproviders.physical/3.1.2",
  3547. "files": [
  3548. ".nupkg.metadata",
  3549. ".signature.p7s",
  3550. "Icon.png",
  3551. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll",
  3552. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.xml",
  3553. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3554. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3555. "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
  3556. "microsoft.extensions.fileproviders.physical.nuspec"
  3557. ]
  3558. },
  3559. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  3560. "sha512": "/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
  3561. "type": "package",
  3562. "path": "microsoft.extensions.filesystemglobbing/3.1.2",
  3563. "files": [
  3564. ".nupkg.metadata",
  3565. ".signature.p7s",
  3566. "Icon.png",
  3567. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3568. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3569. "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
  3570. "microsoft.extensions.filesystemglobbing.nuspec"
  3571. ]
  3572. },
  3573. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  3574. "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  3575. "type": "package",
  3576. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  3577. "files": [
  3578. ".nupkg.metadata",
  3579. ".signature.p7s",
  3580. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3581. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3582. "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
  3583. "microsoft.extensions.hosting.abstractions.nuspec"
  3584. ]
  3585. },
  3586. "Microsoft.Extensions.Identity.Core/3.1.10": {
  3587. "sha512": "AuVQQAi7DtsrrHk6aO9BnMQCPGfI49AjeXOALTdbrJrPaLn35De9pAgobKftaUILwM4uzQdYEK012yqz2NH46w==",
  3588. "type": "package",
  3589. "path": "microsoft.extensions.identity.core/3.1.10",
  3590. "files": [
  3591. ".nupkg.metadata",
  3592. ".signature.p7s",
  3593. "Icon.png",
  3594. "THIRD-PARTY-NOTICES.TXT",
  3595. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll",
  3596. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.xml",
  3597. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  3598. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  3599. "microsoft.extensions.identity.core.3.1.10.nupkg.sha512",
  3600. "microsoft.extensions.identity.core.nuspec"
  3601. ]
  3602. },
  3603. "Microsoft.Extensions.Identity.Stores/3.1.10": {
  3604. "sha512": "USjhGGw7PivOcVVqNGPd2lg1S1J2jvrRePlgxNcPt4gSbTtGuaRBdd78dvpHoR1GQnJ93YqoyGH3X3FsHeDL/w==",
  3605. "type": "package",
  3606. "path": "microsoft.extensions.identity.stores/3.1.10",
  3607. "files": [
  3608. ".nupkg.metadata",
  3609. ".signature.p7s",
  3610. "Icon.png",
  3611. "THIRD-PARTY-NOTICES.TXT",
  3612. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll",
  3613. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.xml",
  3614. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  3615. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  3616. "microsoft.extensions.identity.stores.3.1.10.nupkg.sha512",
  3617. "microsoft.extensions.identity.stores.nuspec"
  3618. ]
  3619. },
  3620. "Microsoft.Extensions.Logging/3.1.10": {
  3621. "sha512": "GjP+4cUFdsNk/Px6BlJ7p7x7ibpawcaAV4tfrRJTv2s6Nb7yz5OEKA0kbNl1ZXKa6uMQzbNqc5+B/tJsqzgIXg==",
  3622. "type": "package",
  3623. "path": "microsoft.extensions.logging/3.1.10",
  3624. "files": [
  3625. ".nupkg.metadata",
  3626. ".signature.p7s",
  3627. "Icon.png",
  3628. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
  3629. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
  3630. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3631. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3632. "microsoft.extensions.logging.3.1.10.nupkg.sha512",
  3633. "microsoft.extensions.logging.nuspec"
  3634. ]
  3635. },
  3636. "Microsoft.Extensions.Logging.Abstractions/3.1.10": {
  3637. "sha512": "bKHbgzbGsPZbEaExRaJqBz3WQ1GfhMttM23e1nivLJ8HbA3Ad526mW2G2K350q3Dc3HG83I5W8uSZWG4Rv4IpA==",
  3638. "type": "package",
  3639. "path": "microsoft.extensions.logging.abstractions/3.1.10",
  3640. "files": [
  3641. ".nupkg.metadata",
  3642. ".signature.p7s",
  3643. "Icon.png",
  3644. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3645. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3646. "microsoft.extensions.logging.abstractions.3.1.10.nupkg.sha512",
  3647. "microsoft.extensions.logging.abstractions.nuspec"
  3648. ]
  3649. },
  3650. "Microsoft.Extensions.Options/3.1.10": {
  3651. "sha512": "CusdV4eIv+CGb9Fy6a+JcRqpcVJREmvFI8eHk3nQ76VLtEAIJpKQY5r5sRSs5w6NevNi2ukdnKleH0YCPudFZQ==",
  3652. "type": "package",
  3653. "path": "microsoft.extensions.options/3.1.10",
  3654. "files": [
  3655. ".nupkg.metadata",
  3656. ".signature.p7s",
  3657. "Icon.png",
  3658. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  3659. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  3660. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3661. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3662. "microsoft.extensions.options.3.1.10.nupkg.sha512",
  3663. "microsoft.extensions.options.nuspec"
  3664. ]
  3665. },
  3666. "Microsoft.Extensions.Primitives/3.1.10": {
  3667. "sha512": "YDuQS3BeaVY6PCWUm5f6qFTYsxhwntQrcfwUzbohU/0rZBL5XI+UsD5SgggHKHX+rFY4laaT428q608Sw/mDsw==",
  3668. "type": "package",
  3669. "path": "microsoft.extensions.primitives/3.1.10",
  3670. "files": [
  3671. ".nupkg.metadata",
  3672. ".signature.p7s",
  3673. "Icon.png",
  3674. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  3675. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  3676. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3677. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3678. "microsoft.extensions.primitives.3.1.10.nupkg.sha512",
  3679. "microsoft.extensions.primitives.nuspec"
  3680. ]
  3681. },
  3682. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  3683. "sha512": "0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  3684. "type": "package",
  3685. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  3686. "files": [
  3687. ".nupkg.metadata",
  3688. ".signature.p7s",
  3689. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3690. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3691. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  3692. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  3693. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3694. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3695. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  3696. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  3697. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3698. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3699. "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512",
  3700. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3701. ]
  3702. },
  3703. "Microsoft.IdentityModel.Logging/5.6.0": {
  3704. "sha512": "zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  3705. "type": "package",
  3706. "path": "microsoft.identitymodel.logging/5.6.0",
  3707. "files": [
  3708. ".nupkg.metadata",
  3709. ".signature.p7s",
  3710. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3711. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3712. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  3713. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  3714. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3715. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3716. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  3717. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  3718. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3719. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3720. "microsoft.identitymodel.logging.5.6.0.nupkg.sha512",
  3721. "microsoft.identitymodel.logging.nuspec"
  3722. ]
  3723. },
  3724. "Microsoft.IdentityModel.Tokens/5.6.0": {
  3725. "sha512": "C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  3726. "type": "package",
  3727. "path": "microsoft.identitymodel.tokens/5.6.0",
  3728. "files": [
  3729. ".nupkg.metadata",
  3730. ".signature.p7s",
  3731. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3732. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3733. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  3734. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  3735. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3736. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3737. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  3738. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  3739. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3740. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3741. "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512",
  3742. "microsoft.identitymodel.tokens.nuspec"
  3743. ]
  3744. },
  3745. "Microsoft.NET.Test.Sdk/16.5.0": {
  3746. "sha512": "yHZOhVSPuGqgHi+KhHiAZqNY08avkQraXKvgKgDU8c/ztmGzw7gmukkv49EaTq6T3xmp4XroWk3gAlbJHMxl8w==",
  3747. "type": "package",
  3748. "path": "microsoft.net.test.sdk/16.5.0",
  3749. "files": [
  3750. ".nupkg.metadata",
  3751. ".signature.p7s",
  3752. "build/net40/Microsoft.NET.Test.Sdk.props",
  3753. "build/net40/Microsoft.NET.Test.Sdk.targets",
  3754. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs",
  3755. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs",
  3756. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb",
  3757. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props",
  3758. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets",
  3759. "build/uap10.0/Microsoft.NET.Test.Sdk.props",
  3760. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
  3761. "microsoft.net.test.sdk.16.5.0.nupkg.sha512",
  3762. "microsoft.net.test.sdk.nuspec"
  3763. ]
  3764. },
  3765. "Microsoft.NETCore.Jit/2.0.8": {
  3766. "sha512": "webbzOhpGlR6qnCeb4m2OWHixBK0IgoyISVIhPVlLH8bY9yZtjnK4XQKkEkh/a9l5K26ddus7l+QpNh3EtnyYQ==",
  3767. "type": "package",
  3768. "path": "microsoft.netcore.jit/2.0.8",
  3769. "files": [
  3770. ".nupkg.metadata",
  3771. ".signature.p7s",
  3772. "LICENSE.TXT",
  3773. "THIRD-PARTY-NOTICES.TXT",
  3774. "microsoft.netcore.jit.2.0.8.nupkg.sha512",
  3775. "microsoft.netcore.jit.nuspec",
  3776. "runtime.json",
  3777. "version.txt"
  3778. ]
  3779. },
  3780. "Microsoft.NETCore.Platforms/3.1.1": {
  3781. "sha512": "RmINcaqiEkawM9C8oxFMN/CZmn1fGKWVsosbSY/8ARUNdHqV47hqhPVbrG3qUqLaRQI5w4HuqFOqrbhoSWcH6w==",
  3782. "type": "package",
  3783. "path": "microsoft.netcore.platforms/3.1.1",
  3784. "files": [
  3785. ".nupkg.metadata",
  3786. ".signature.p7s",
  3787. "Icon.png",
  3788. "LICENSE.TXT",
  3789. "THIRD-PARTY-NOTICES.TXT",
  3790. "lib/netstandard1.0/_._",
  3791. "microsoft.netcore.platforms.3.1.1.nupkg.sha512",
  3792. "microsoft.netcore.platforms.nuspec",
  3793. "runtime.json",
  3794. "useSharedDesignerContext.txt",
  3795. "version.txt"
  3796. ]
  3797. },
  3798. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  3799. "sha512": "F0t5KmilC9zaZY3JZYMfWSo+r+5PeZCXLP8uFToHTKL5kL2pTu4YPyxgweYfzTh4tb7OfZL32xnKdkzbWBP0aw==",
  3800. "type": "package",
  3801. "path": "microsoft.netcore.runtime.coreclr/2.0.8",
  3802. "files": [
  3803. ".nupkg.metadata",
  3804. ".signature.p7s",
  3805. "LICENSE.TXT",
  3806. "THIRD-PARTY-NOTICES.TXT",
  3807. "microsoft.netcore.runtime.coreclr.2.0.8.nupkg.sha512",
  3808. "microsoft.netcore.runtime.coreclr.nuspec",
  3809. "ref/netstandard1.0/_._",
  3810. "runtime.json",
  3811. "version.txt"
  3812. ]
  3813. },
  3814. "Microsoft.NETCore.Targets/1.1.0": {
  3815. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3816. "type": "package",
  3817. "path": "microsoft.netcore.targets/1.1.0",
  3818. "files": [
  3819. ".nupkg.metadata",
  3820. ".signature.p7s",
  3821. "ThirdPartyNotices.txt",
  3822. "dotnet_library_license.txt",
  3823. "lib/netstandard1.0/_._",
  3824. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3825. "microsoft.netcore.targets.nuspec",
  3826. "runtime.json"
  3827. ]
  3828. },
  3829. "Microsoft.TestPlatform.ObjectModel/16.5.0": {
  3830. "sha512": "NnLFxmFBCAS6kye2JFszD5WKgj4Zve5KX/R0mhYwh6BVnSeybI2unRnjEPtLyY3CAVhwrY4bh/8LNFtslAcGZg==",
  3831. "type": "package",
  3832. "path": "microsoft.testplatform.objectmodel/16.5.0",
  3833. "files": [
  3834. ".nupkg.metadata",
  3835. ".signature.p7s",
  3836. "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll",
  3837. "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3838. "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3839. "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3840. "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3841. "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3842. "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3843. "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3844. "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3845. "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3846. "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3847. "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3848. "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3849. "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3850. "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3851. "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3852. "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3853. "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3854. "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3855. "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3856. "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3857. "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3858. "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3859. "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3860. "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3861. "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3862. "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3863. "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3864. "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3865. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3866. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3867. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3868. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3869. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3870. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3871. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3872. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3873. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3874. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3875. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3876. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3877. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3878. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3879. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3880. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3881. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3882. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3883. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3884. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3885. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3886. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3887. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3888. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3889. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3890. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3891. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3892. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3893. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3894. "microsoft.testplatform.objectmodel.16.5.0.nupkg.sha512",
  3895. "microsoft.testplatform.objectmodel.nuspec"
  3896. ]
  3897. },
  3898. "Microsoft.TestPlatform.TestHost/16.5.0": {
  3899. "sha512": "ytGymboQIvjNX5pLC0yp/Bz9sGDHqSnLQgBRtd4VrqOUgKmmcfxMYZ6p0TBZgAT1oijdC6xqUZ7rl8mbaaXTJw==",
  3900. "type": "package",
  3901. "path": "microsoft.testplatform.testhost/16.5.0",
  3902. "files": [
  3903. ".nupkg.metadata",
  3904. ".signature.p7s",
  3905. "ThirdPartyNotices.txt",
  3906. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props",
  3907. "build/netcoreapp2.1/x64/testhost.dll",
  3908. "build/netcoreapp2.1/x64/testhost.exe",
  3909. "build/netcoreapp2.1/x86/testhost.x86.dll",
  3910. "build/netcoreapp2.1/x86/testhost.x86.exe",
  3911. "build/uap10.0/Microsoft.TestPlatform.TestHost.props",
  3912. "build/uap10.0/Microsoft.TestPlatform.TestHost.targets",
  3913. "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3914. "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3915. "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3916. "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll",
  3917. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3918. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3919. "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3920. "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3921. "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3922. "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll",
  3923. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3924. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3925. "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3926. "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3927. "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3928. "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll",
  3929. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3930. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3931. "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3932. "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3933. "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3934. "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll",
  3935. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3936. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3937. "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3938. "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3939. "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3940. "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll",
  3941. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3942. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3943. "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3944. "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3945. "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3946. "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll",
  3947. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3948. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3949. "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3950. "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3951. "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3952. "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll",
  3953. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3954. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3955. "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3956. "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3957. "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3958. "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll",
  3959. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3960. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3961. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3962. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3963. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3964. "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll",
  3965. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3966. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3967. "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3968. "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3969. "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3970. "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll",
  3971. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3972. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3973. "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3974. "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3975. "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3976. "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll",
  3977. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3978. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3979. "build/uap10.0/x64/msdia140.dll",
  3980. "build/uap10.0/x86/msdia140.dll",
  3981. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3982. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3983. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3984. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll",
  3985. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3986. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3987. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3988. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3989. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3990. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll",
  3991. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3992. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3993. "lib/net45/_._",
  3994. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll",
  3995. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll",
  3996. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll",
  3997. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll",
  3998. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3999. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4000. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4001. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4002. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4003. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4004. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4005. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4006. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4007. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4008. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4009. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4010. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4011. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4012. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4013. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4014. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4015. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4016. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4017. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4018. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4019. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4020. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4021. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4022. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4023. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4024. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4025. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4026. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4027. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4028. "lib/netcoreapp2.1/testhost.deps.json",
  4029. "lib/netcoreapp2.1/testhost.dll",
  4030. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4031. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4032. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4033. "lib/netcoreapp2.1/x64/msdia140.dll",
  4034. "lib/netcoreapp2.1/x86/msdia140.dll",
  4035. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4036. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4037. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4038. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4039. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4040. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4041. "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  4042. "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  4043. "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll",
  4044. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  4045. "lib/uap10.0/testhost.dll",
  4046. "microsoft.testplatform.testhost.16.5.0.nupkg.sha512",
  4047. "microsoft.testplatform.testhost.nuspec"
  4048. ]
  4049. },
  4050. "Microsoft.Win32.Primitives/4.3.0": {
  4051. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4052. "type": "package",
  4053. "path": "microsoft.win32.primitives/4.3.0",
  4054. "files": [
  4055. ".nupkg.metadata",
  4056. ".signature.p7s",
  4057. "ThirdPartyNotices.txt",
  4058. "dotnet_library_license.txt",
  4059. "lib/MonoAndroid10/_._",
  4060. "lib/MonoTouch10/_._",
  4061. "lib/net46/Microsoft.Win32.Primitives.dll",
  4062. "lib/xamarinios10/_._",
  4063. "lib/xamarinmac20/_._",
  4064. "lib/xamarintvos10/_._",
  4065. "lib/xamarinwatchos10/_._",
  4066. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4067. "microsoft.win32.primitives.nuspec",
  4068. "ref/MonoAndroid10/_._",
  4069. "ref/MonoTouch10/_._",
  4070. "ref/net46/Microsoft.Win32.Primitives.dll",
  4071. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4072. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4073. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4074. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4075. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4076. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4077. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4078. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4079. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4080. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4081. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4082. "ref/xamarinios10/_._",
  4083. "ref/xamarinmac20/_._",
  4084. "ref/xamarintvos10/_._",
  4085. "ref/xamarinwatchos10/_._"
  4086. ]
  4087. },
  4088. "Microsoft.Win32.Registry/4.4.0": {
  4089. "sha512": "dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
  4090. "type": "package",
  4091. "path": "microsoft.win32.registry/4.4.0",
  4092. "files": [
  4093. ".nupkg.metadata",
  4094. ".signature.p7s",
  4095. "LICENSE.TXT",
  4096. "THIRD-PARTY-NOTICES.TXT",
  4097. "lib/net46/Microsoft.Win32.Registry.dll",
  4098. "lib/net461/Microsoft.Win32.Registry.dll",
  4099. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4100. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4101. "microsoft.win32.registry.4.4.0.nupkg.sha512",
  4102. "microsoft.win32.registry.nuspec",
  4103. "ref/net46/Microsoft.Win32.Registry.dll",
  4104. "ref/net461/Microsoft.Win32.Registry.dll",
  4105. "ref/net461/Microsoft.Win32.Registry.xml",
  4106. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  4107. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  4108. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  4109. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  4110. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  4111. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  4112. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  4113. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  4114. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  4115. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  4116. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  4117. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  4118. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  4119. "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
  4120. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4121. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  4122. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
  4123. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4124. "useSharedDesignerContext.txt",
  4125. "version.txt"
  4126. ]
  4127. },
  4128. "Microsoft.Win32.SystemEvents/4.7.0": {
  4129. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  4130. "type": "package",
  4131. "path": "microsoft.win32.systemevents/4.7.0",
  4132. "files": [
  4133. ".nupkg.metadata",
  4134. ".signature.p7s",
  4135. "LICENSE.TXT",
  4136. "THIRD-PARTY-NOTICES.TXT",
  4137. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4138. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4139. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4140. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4141. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  4142. "microsoft.win32.systemevents.nuspec",
  4143. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4144. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4145. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  4146. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  4147. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4148. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4149. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4150. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4151. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4152. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4153. "useSharedDesignerContext.txt",
  4154. "version.txt"
  4155. ]
  4156. },
  4157. "MSTest.TestAdapter/2.1.0": {
  4158. "sha512": "roxWjDyH5S+XlibaHM96VswxYq4vfbB53Ys9k3Qr2F1uNH+VpgIbygNQvtZUxSoAaI7aNSMMKA/HBfZPg5QDCA==",
  4159. "type": "package",
  4160. "path": "mstest.testadapter/2.1.0",
  4161. "files": [
  4162. ".nupkg.metadata",
  4163. ".signature.p7s",
  4164. "LICENSE.txt",
  4165. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  4166. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll",
  4167. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4168. "build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4169. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4170. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4171. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4172. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4173. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4174. "build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4175. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4176. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4177. "build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4178. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4179. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4180. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4181. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4182. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4183. "build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4184. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4185. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4186. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4187. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4188. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4189. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4190. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4191. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4192. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4193. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4194. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4195. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4196. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4197. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4198. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4199. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4200. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4201. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4202. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4203. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4204. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4205. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4206. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4207. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4208. "build/net45/MSTest.TestAdapter.props",
  4209. "build/net45/MSTest.TestAdapter.targets",
  4210. "build/netcoreapp1.0/MSTest.TestAdapter.props",
  4211. "build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4212. "build/uap10.0/MSTest.TestAdapter.props",
  4213. "build/uap10.0/MSTest.TestAdapter.targets",
  4214. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4215. "mstest.testadapter.2.1.0.nupkg.sha512",
  4216. "mstest.testadapter.nuspec"
  4217. ]
  4218. },
  4219. "MSTest.TestFramework/2.1.0": {
  4220. "sha512": "FcW3sokxmi52e4gzBdv4bv59yQWJ0Lg2F579U82O4V9Pr7aNwTe7HxlHChzQqvcqgnH69XH8aDfMlfM3Y1wjAg==",
  4221. "type": "package",
  4222. "path": "mstest.testframework/2.1.0",
  4223. "files": [
  4224. ".nupkg.metadata",
  4225. ".signature.p7s",
  4226. "LICENSE.txt",
  4227. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4228. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4229. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4230. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4231. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4232. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4233. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4234. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4235. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4236. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4237. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4238. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4239. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4240. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4241. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4242. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4243. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4244. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4245. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4246. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4247. "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4248. "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4249. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4250. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4251. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4252. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4253. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4254. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4255. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4256. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4257. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4258. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4259. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4260. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4261. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4262. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4263. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4264. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4265. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4266. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4267. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4268. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4269. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4270. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4271. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4272. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4273. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4274. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4275. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4276. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4277. "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4278. "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4279. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4280. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4281. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4282. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4283. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4284. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4285. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4286. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4287. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4288. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4289. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4290. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4291. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4292. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4293. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4294. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4295. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4296. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4297. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4298. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4299. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4300. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4301. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4302. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4303. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4304. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4305. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4306. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4307. "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4308. "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4309. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4310. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4311. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4312. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4313. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4314. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4315. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4316. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4317. "mstest.testframework.2.1.0.nupkg.sha512",
  4318. "mstest.testframework.nuspec"
  4319. ]
  4320. },
  4321. "MySql.Data/8.0.15": {
  4322. "sha512": "PnjT2+TzlYUBF5cILcLMD1ux85P5iiRTF9PWx+Mel6/Z/rx+k39aWuA0mozfdgd+0TlJjGKKTyQZfKeYlRXTUA==",
  4323. "type": "package",
  4324. "path": "mysql.data/8.0.15",
  4325. "files": [
  4326. ".nupkg.metadata",
  4327. ".signature.p7s",
  4328. "lib/net452/MySql.Data.dll",
  4329. "lib/net452/MySql.Data.xml",
  4330. "lib/netcoreapp2.0/MySql.Data.dll",
  4331. "lib/netcoreapp2.0/MySql.Data.xml",
  4332. "lib/netstandard1.6/MySql.Data.dll",
  4333. "lib/netstandard1.6/MySql.Data.xml",
  4334. "lib/netstandard2.0/MySql.Data.dll",
  4335. "lib/netstandard2.0/MySql.Data.xml",
  4336. "mysql.data.8.0.15.nupkg.sha512",
  4337. "mysql.data.nuspec"
  4338. ]
  4339. },
  4340. "NETStandard.Library/1.6.1": {
  4341. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4342. "type": "package",
  4343. "path": "netstandard.library/1.6.1",
  4344. "files": [
  4345. ".nupkg.metadata",
  4346. ".signature.p7s",
  4347. "ThirdPartyNotices.txt",
  4348. "dotnet_library_license.txt",
  4349. "netstandard.library.1.6.1.nupkg.sha512",
  4350. "netstandard.library.nuspec"
  4351. ]
  4352. },
  4353. "Newtonsoft.Json/10.0.3": {
  4354. "sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
  4355. "type": "package",
  4356. "path": "newtonsoft.json/10.0.3",
  4357. "hasTools": true,
  4358. "files": [
  4359. ".nupkg.metadata",
  4360. ".signature.p7s",
  4361. "LICENSE.md",
  4362. "lib/net20/Newtonsoft.Json.dll",
  4363. "lib/net20/Newtonsoft.Json.xml",
  4364. "lib/net35/Newtonsoft.Json.dll",
  4365. "lib/net35/Newtonsoft.Json.xml",
  4366. "lib/net40/Newtonsoft.Json.dll",
  4367. "lib/net40/Newtonsoft.Json.xml",
  4368. "lib/net45/Newtonsoft.Json.dll",
  4369. "lib/net45/Newtonsoft.Json.xml",
  4370. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4371. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4372. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4373. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4374. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4375. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4376. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4377. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4378. "newtonsoft.json.10.0.3.nupkg.sha512",
  4379. "newtonsoft.json.nuspec",
  4380. "tools/install.ps1"
  4381. ]
  4382. },
  4383. "NLog/4.7.5": {
  4384. "sha512": "1Udzim+UwoAGk0vW6T2rEBXJq1COvqTuE+4NFj2zHytuX1WOu+1Yes1qABG1IJOA5V3OMilIufUU1Ha9T0rrzQ==",
  4385. "type": "package",
  4386. "path": "nlog/4.7.5",
  4387. "files": [
  4388. ".nupkg.metadata",
  4389. ".signature.p7s",
  4390. "lib/monoandroid44/NLog.dll",
  4391. "lib/monoandroid44/NLog.xml",
  4392. "lib/net35/NLog.dll",
  4393. "lib/net35/NLog.xml",
  4394. "lib/net40-client/NLog.dll",
  4395. "lib/net40-client/NLog.xml",
  4396. "lib/net45/NLog.dll",
  4397. "lib/net45/NLog.xml",
  4398. "lib/netstandard1.3/NLog.dll",
  4399. "lib/netstandard1.3/NLog.xml",
  4400. "lib/netstandard1.5/NLog.dll",
  4401. "lib/netstandard1.5/NLog.xml",
  4402. "lib/netstandard2.0/NLog.dll",
  4403. "lib/netstandard2.0/NLog.xml",
  4404. "lib/sl4/NLog.dll",
  4405. "lib/sl4/NLog.xml",
  4406. "lib/sl5/NLog.dll",
  4407. "lib/sl5/NLog.xml",
  4408. "lib/wp8/NLog.dll",
  4409. "lib/wp8/NLog.xml",
  4410. "lib/xamarinios10/NLog.dll",
  4411. "lib/xamarinios10/NLog.xml",
  4412. "nlog.4.7.5.nupkg.sha512",
  4413. "nlog.nuspec"
  4414. ]
  4415. },
  4416. "NLog.Extensions.Logging/1.6.4": {
  4417. "sha512": "ESOBd/bzxFacwpWTdTXaAaItJz/0Mzibyw65YB0uQT4pf2hXtwHp2626qEiVOmaacIQbJH5wGpBLNcVpbQLpKA==",
  4418. "type": "package",
  4419. "path": "nlog.extensions.logging/1.6.4",
  4420. "files": [
  4421. ".nupkg.metadata",
  4422. ".signature.p7s",
  4423. "lib/net451/NLog.Extensions.Logging.dll",
  4424. "lib/net451/NLog.Extensions.Logging.xml",
  4425. "lib/net461/NLog.Extensions.Logging.dll",
  4426. "lib/net461/NLog.Extensions.Logging.xml",
  4427. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
  4428. "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
  4429. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  4430. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  4431. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  4432. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  4433. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  4434. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  4435. "nlog.extensions.logging.1.6.4.nupkg.sha512",
  4436. "nlog.extensions.logging.nuspec"
  4437. ]
  4438. },
  4439. "NLog.Web.AspNetCore/4.9.3": {
  4440. "sha512": "v3TiGaFXENM3/fVCFJJaien7A44EcGwceySh5rFNkp5RC3PZvsbDjEXoOeqsDz8+i5iuYQDMjTFuD2JReNdj9g==",
  4441. "type": "package",
  4442. "path": "nlog.web.aspnetcore/4.9.3",
  4443. "files": [
  4444. ".nupkg.metadata",
  4445. ".signature.p7s",
  4446. "lib/net451/NLog.Web.AspNetCore.dll",
  4447. "lib/net451/NLog.Web.AspNetCore.xml",
  4448. "lib/net461/NLog.Web.AspNetCore.dll",
  4449. "lib/net461/NLog.Web.AspNetCore.xml",
  4450. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll",
  4451. "lib/netcoreapp3.0/NLog.Web.AspNetCore.xml",
  4452. "lib/netstandard1.5/NLog.Web.AspNetCore.dll",
  4453. "lib/netstandard1.5/NLog.Web.AspNetCore.xml",
  4454. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  4455. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  4456. "nlog.web.aspnetcore.4.9.3.nupkg.sha512",
  4457. "nlog.web.aspnetcore.nuspec"
  4458. ]
  4459. },
  4460. "Npgsql/3.2.7": {
  4461. "sha512": "CxSXzWn/MNbHX8L1xfQSzrZfJEA2Yt5cvT27Az5abmvbqtUY1ab6xAkmBj5FfLyKCIYEnmSrxn1IY1+Jy13oFA==",
  4462. "type": "package",
  4463. "path": "npgsql/3.2.7",
  4464. "files": [
  4465. ".nupkg.metadata",
  4466. ".signature.p7s",
  4467. "lib/net45/Npgsql.dll",
  4468. "lib/net45/Npgsql.xml",
  4469. "lib/net451/Npgsql.dll",
  4470. "lib/net451/Npgsql.xml",
  4471. "lib/netstandard1.3/Npgsql.dll",
  4472. "lib/netstandard1.3/Npgsql.xml",
  4473. "lib/netstandard2.0/Npgsql.dll",
  4474. "lib/netstandard2.0/Npgsql.xml",
  4475. "npgsql.3.2.7.nupkg.sha512",
  4476. "npgsql.nuspec"
  4477. ]
  4478. },
  4479. "NuGet.Frameworks/5.0.0": {
  4480. "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==",
  4481. "type": "package",
  4482. "path": "nuget.frameworks/5.0.0",
  4483. "files": [
  4484. ".nupkg.metadata",
  4485. ".signature.p7s",
  4486. "lib/net40/NuGet.Frameworks.dll",
  4487. "lib/net40/NuGet.Frameworks.xml",
  4488. "lib/net472/NuGet.Frameworks.dll",
  4489. "lib/net472/NuGet.Frameworks.xml",
  4490. "lib/netstandard2.0/NuGet.Frameworks.dll",
  4491. "lib/netstandard2.0/NuGet.Frameworks.xml",
  4492. "nuget.frameworks.5.0.0.nupkg.sha512",
  4493. "nuget.frameworks.nuspec"
  4494. ]
  4495. },
  4496. "Oracle.ManagedDataAccess.Core/2.18.3": {
  4497. "sha512": "YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==",
  4498. "type": "package",
  4499. "path": "oracle.manageddataaccess.core/2.18.3",
  4500. "files": [
  4501. ".nupkg.metadata",
  4502. ".signature.p7s",
  4503. "info.txt",
  4504. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll",
  4505. "oracle.manageddataaccess.core.2.18.3.nupkg.sha512",
  4506. "oracle.manageddataaccess.core.nuspec",
  4507. "readme.txt"
  4508. ]
  4509. },
  4510. "Portable.BouncyCastle/1.8.8": {
  4511. "sha512": "1rxdf8NfyAxLlqIEciCl/yNhmz1YiLkmp6rrF8p3/NVmyHHzPWLx8djtDvSAwhPLg64BXvsRcM3+5bP1HAUdYg==",
  4512. "type": "package",
  4513. "path": "portable.bouncycastle/1.8.8",
  4514. "files": [
  4515. ".nupkg.metadata",
  4516. ".signature.p7s",
  4517. "lib/net40/BouncyCastle.Crypto.dll",
  4518. "lib/net40/BouncyCastle.Crypto.xml",
  4519. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  4520. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  4521. "portable.bouncycastle.1.8.8.nupkg.sha512",
  4522. "portable.bouncycastle.nuspec"
  4523. ]
  4524. },
  4525. "Quartz/3.2.3": {
  4526. "sha512": "AWybQvHH/eI69NEiqe4x4jgCGYOCxHfsbrK7IdZJU35MC+85wneNtY4xd9CkUiLlYJvV7YsU0uBMzJV00HKtWg==",
  4527. "type": "package",
  4528. "path": "quartz/3.2.3",
  4529. "files": [
  4530. ".nupkg.metadata",
  4531. ".signature.p7s",
  4532. "lib/net461/Quartz.dll",
  4533. "lib/net461/Quartz.xml",
  4534. "lib/netstandard2.0/Quartz.dll",
  4535. "lib/netstandard2.0/Quartz.xml",
  4536. "quartz-logo-small.png",
  4537. "quartz.3.2.3.nupkg.sha512",
  4538. "quartz.nuspec"
  4539. ]
  4540. },
  4541. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4542. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  4543. "type": "package",
  4544. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4545. "files": [
  4546. ".nupkg.metadata",
  4547. ".signature.p7s",
  4548. "ThirdPartyNotices.txt",
  4549. "dotnet_library_license.txt",
  4550. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4551. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4552. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4553. ]
  4554. },
  4555. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4556. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  4557. "type": "package",
  4558. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4559. "files": [
  4560. ".nupkg.metadata",
  4561. ".signature.p7s",
  4562. "ThirdPartyNotices.txt",
  4563. "dotnet_library_license.txt",
  4564. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4565. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4566. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4567. ]
  4568. },
  4569. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4570. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  4571. "type": "package",
  4572. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4573. "files": [
  4574. ".nupkg.metadata",
  4575. ".signature.p7s",
  4576. "ThirdPartyNotices.txt",
  4577. "dotnet_library_license.txt",
  4578. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4579. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4580. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4581. ]
  4582. },
  4583. "runtime.native.System/4.3.0": {
  4584. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4585. "type": "package",
  4586. "path": "runtime.native.system/4.3.0",
  4587. "files": [
  4588. ".nupkg.metadata",
  4589. ".signature.p7s",
  4590. "ThirdPartyNotices.txt",
  4591. "dotnet_library_license.txt",
  4592. "lib/netstandard1.0/_._",
  4593. "runtime.native.system.4.3.0.nupkg.sha512",
  4594. "runtime.native.system.nuspec"
  4595. ]
  4596. },
  4597. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4598. "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  4599. "type": "package",
  4600. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  4601. "files": [
  4602. ".nupkg.metadata",
  4603. ".signature.p7s",
  4604. "LICENSE.TXT",
  4605. "THIRD-PARTY-NOTICES.TXT",
  4606. "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4607. "runtime.native.system.data.sqlclient.sni.nuspec",
  4608. "useSharedDesignerContext.txt",
  4609. "version.txt"
  4610. ]
  4611. },
  4612. "runtime.native.System.IO.Compression/4.3.0": {
  4613. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4614. "type": "package",
  4615. "path": "runtime.native.system.io.compression/4.3.0",
  4616. "files": [
  4617. ".nupkg.metadata",
  4618. ".signature.p7s",
  4619. "ThirdPartyNotices.txt",
  4620. "dotnet_library_license.txt",
  4621. "lib/netstandard1.0/_._",
  4622. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4623. "runtime.native.system.io.compression.nuspec"
  4624. ]
  4625. },
  4626. "runtime.native.System.Net.Http/4.3.0": {
  4627. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4628. "type": "package",
  4629. "path": "runtime.native.system.net.http/4.3.0",
  4630. "files": [
  4631. ".nupkg.metadata",
  4632. ".signature.p7s",
  4633. "ThirdPartyNotices.txt",
  4634. "dotnet_library_license.txt",
  4635. "lib/netstandard1.0/_._",
  4636. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4637. "runtime.native.system.net.http.nuspec"
  4638. ]
  4639. },
  4640. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  4641. "sha512": "UPrVPlqPRSVZaB4ADmbsQ77KXn9ORiWXyA1RP2W2+byCh3bhgT1bQz0jbeOoog9/2oTQ5wWZSDSMeb74MjezcA==",
  4642. "type": "package",
  4643. "path": "runtime.native.system.security.cryptography.apple/4.3.1",
  4644. "files": [
  4645. ".nupkg.metadata",
  4646. ".signature.p7s",
  4647. "ThirdPartyNotices.txt",
  4648. "dotnet_library_license.txt",
  4649. "lib/netstandard1.0/_._",
  4650. "runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  4651. "runtime.native.system.security.cryptography.apple.nuspec"
  4652. ]
  4653. },
  4654. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4655. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  4656. "type": "package",
  4657. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  4658. "files": [
  4659. ".nupkg.metadata",
  4660. ".signature.p7s",
  4661. "ThirdPartyNotices.txt",
  4662. "dotnet_library_license.txt",
  4663. "lib/netstandard1.0/_._",
  4664. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4665. "runtime.native.system.security.cryptography.openssl.nuspec"
  4666. ]
  4667. },
  4668. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4669. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  4670. "type": "package",
  4671. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4672. "files": [
  4673. ".nupkg.metadata",
  4674. ".signature.p7s",
  4675. "ThirdPartyNotices.txt",
  4676. "dotnet_library_license.txt",
  4677. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4678. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4679. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4680. ]
  4681. },
  4682. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4683. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  4684. "type": "package",
  4685. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4686. "files": [
  4687. ".nupkg.metadata",
  4688. ".signature.p7s",
  4689. "ThirdPartyNotices.txt",
  4690. "dotnet_library_license.txt",
  4691. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4692. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4693. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4694. ]
  4695. },
  4696. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  4697. "sha512": "t15yGf5r6vMV1rB5O6TgfXKChtCaN3niwFw44M2ImX3eZ8yzueplqMqXPCbWzoBDHJVz9fE+9LFUGCsUmS2Jgg==",
  4698. "type": "package",
  4699. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.1",
  4700. "files": [
  4701. ".nupkg.metadata",
  4702. ".signature.p7s",
  4703. "ThirdPartyNotices.txt",
  4704. "dotnet_library_license.txt",
  4705. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  4706. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4707. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4708. ]
  4709. },
  4710. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4711. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  4712. "type": "package",
  4713. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4714. "files": [
  4715. ".nupkg.metadata",
  4716. ".signature.p7s",
  4717. "ThirdPartyNotices.txt",
  4718. "dotnet_library_license.txt",
  4719. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4720. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4721. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4722. ]
  4723. },
  4724. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4725. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  4726. "type": "package",
  4727. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4728. "files": [
  4729. ".nupkg.metadata",
  4730. ".signature.p7s",
  4731. "ThirdPartyNotices.txt",
  4732. "dotnet_library_license.txt",
  4733. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4734. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4735. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4736. ]
  4737. },
  4738. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4739. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  4740. "type": "package",
  4741. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4742. "files": [
  4743. ".nupkg.metadata",
  4744. ".signature.p7s",
  4745. "ThirdPartyNotices.txt",
  4746. "dotnet_library_license.txt",
  4747. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4748. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4749. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4750. ]
  4751. },
  4752. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4753. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  4754. "type": "package",
  4755. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4756. "files": [
  4757. ".nupkg.metadata",
  4758. ".signature.p7s",
  4759. "ThirdPartyNotices.txt",
  4760. "dotnet_library_license.txt",
  4761. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4762. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4763. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4764. ]
  4765. },
  4766. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4767. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  4768. "type": "package",
  4769. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4770. "files": [
  4771. ".nupkg.metadata",
  4772. ".signature.p7s",
  4773. "ThirdPartyNotices.txt",
  4774. "dotnet_library_license.txt",
  4775. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4776. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4777. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4778. ]
  4779. },
  4780. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4781. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  4782. "type": "package",
  4783. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4784. "files": [
  4785. ".nupkg.metadata",
  4786. ".signature.p7s",
  4787. "ThirdPartyNotices.txt",
  4788. "dotnet_library_license.txt",
  4789. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4790. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  4791. "runtimes/win-arm64/native/sni.dll",
  4792. "useSharedDesignerContext.txt",
  4793. "version.txt"
  4794. ]
  4795. },
  4796. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4797. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  4798. "type": "package",
  4799. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4800. "files": [
  4801. ".nupkg.metadata",
  4802. ".signature.p7s",
  4803. "ThirdPartyNotices.txt",
  4804. "dotnet_library_license.txt",
  4805. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4806. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  4807. "runtimes/win-x64/native/sni.dll",
  4808. "useSharedDesignerContext.txt",
  4809. "version.txt"
  4810. ]
  4811. },
  4812. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4813. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4814. "type": "package",
  4815. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4816. "files": [
  4817. ".nupkg.metadata",
  4818. ".signature.p7s",
  4819. "ThirdPartyNotices.txt",
  4820. "dotnet_library_license.txt",
  4821. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4822. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  4823. "runtimes/win-x86/native/sni.dll",
  4824. "useSharedDesignerContext.txt",
  4825. "version.txt"
  4826. ]
  4827. },
  4828. "SQLitePCLRaw.bundle_green/1.1.12": {
  4829. "sha512": "U5lZv+E0JBCG5uQngaRgyIAlbzIwRczb0m46XJfLGXovtfVOaMNRY/oGyKAJjdexVrfqLRd+JyopGMySpAZRGQ==",
  4830. "type": "package",
  4831. "path": "sqlitepclraw.bundle_green/1.1.12",
  4832. "files": [
  4833. ".nupkg.metadata",
  4834. ".signature.p7s",
  4835. "build/wp8/SQLitePCLRaw.bundle_green.targets",
  4836. "build/wp80/arm/SQLitePCLRaw.batteries_green.dll",
  4837. "build/wp80/arm/SQLitePCLRaw.batteries_v2.dll",
  4838. "build/wp80/x86/SQLitePCLRaw.batteries_green.dll",
  4839. "build/wp80/x86/SQLitePCLRaw.batteries_v2.dll",
  4840. "lib/MonoAndroid/SQLitePCLRaw.batteries_green.dll",
  4841. "lib/MonoAndroid/SQLitePCLRaw.batteries_v2.dll",
  4842. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_green.dll",
  4843. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_v2.dll",
  4844. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4845. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4846. "lib/net35/SQLitePCLRaw.batteries_green.dll",
  4847. "lib/net35/SQLitePCLRaw.batteries_v2.dll",
  4848. "lib/net40/SQLitePCLRaw.batteries_green.dll",
  4849. "lib/net40/SQLitePCLRaw.batteries_v2.dll",
  4850. "lib/net45/SQLitePCLRaw.batteries_green.dll",
  4851. "lib/net45/SQLitePCLRaw.batteries_v2.dll",
  4852. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll",
  4853. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll",
  4854. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll",
  4855. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll",
  4856. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4857. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4858. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4859. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4860. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4861. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4862. "lib/uap10.0/SQLitePCLRaw.batteries_green.dll",
  4863. "lib/uap10.0/SQLitePCLRaw.batteries_v2.dll",
  4864. "lib/win8/SQLitePCLRaw.batteries_green.dll",
  4865. "lib/win8/SQLitePCLRaw.batteries_v2.dll",
  4866. "lib/win81/SQLitePCLRaw.batteries_green.dll",
  4867. "lib/win81/SQLitePCLRaw.batteries_v2.dll",
  4868. "lib/wp8/_._",
  4869. "lib/wpa81/SQLitePCLRaw.batteries_green.dll",
  4870. "lib/wpa81/SQLitePCLRaw.batteries_v2.dll",
  4871. "sqlitepclraw.bundle_green.1.1.12.nupkg.sha512",
  4872. "sqlitepclraw.bundle_green.nuspec"
  4873. ]
  4874. },
  4875. "SQLitePCLRaw.core/1.1.12": {
  4876. "sha512": "S4hr+tE275ran5jyKFW/FYPG6Bz6nsHUp9H8chqKxzk21PxJadLd9LnvLe6LMRP/IqY5+LOIIDQF3m/2iDlZ7Q==",
  4877. "type": "package",
  4878. "path": "sqlitepclraw.core/1.1.12",
  4879. "files": [
  4880. ".nupkg.metadata",
  4881. ".signature.p7s",
  4882. "lib/MonoAndroid/SQLitePCLRaw.core.dll",
  4883. "lib/Xamarin.Mac20/SQLitePCLRaw.core.dll",
  4884. "lib/Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4885. "lib/net35/SQLitePCLRaw.core.dll",
  4886. "lib/net40/SQLitePCLRaw.core.dll",
  4887. "lib/net45/SQLitePCLRaw.core.dll",
  4888. "lib/netstandard1.0/SQLitePCLRaw.core.dll",
  4889. "lib/netstandard1.1/SQLitePCLRaw.core.dll",
  4890. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4891. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4892. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4893. "lib/uap10.0/SQLitePCLRaw.core.dll",
  4894. "lib/win8/SQLitePCLRaw.core.dll",
  4895. "lib/win81/SQLitePCLRaw.core.dll",
  4896. "lib/wpa81/SQLitePCLRaw.core.dll",
  4897. "sqlitepclraw.core.1.1.12.nupkg.sha512",
  4898. "sqlitepclraw.core.nuspec"
  4899. ]
  4900. },
  4901. "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": {
  4902. "sha512": "Tn/YE1VxWtHa4MQ9KC//ptIw6cLAUh+xXSdpX7MyGINmb4/igqyx0IOEq5WeH/+cuI/EnDtdWAOn98eMQnKsTQ==",
  4903. "type": "package",
  4904. "path": "sqlitepclraw.lib.e_sqlite3.linux/1.1.12",
  4905. "files": [
  4906. ".nupkg.metadata",
  4907. ".signature.p7s",
  4908. "build/net35/SQLitePCLRaw.lib.e_sqlite3.linux.targets",
  4909. "lib/net35/_._",
  4910. "lib/netstandard1.0/_._",
  4911. "lib/netstandard2.0/_._",
  4912. "runtimes/alpine-x64/native/libe_sqlite3.so",
  4913. "runtimes/linux-arm/native/libe_sqlite3.so",
  4914. "runtimes/linux-arm64/native/libe_sqlite3.so",
  4915. "runtimes/linux-armel/native/libe_sqlite3.so",
  4916. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  4917. "runtimes/linux-x64/native/libe_sqlite3.so",
  4918. "runtimes/linux-x86/native/libe_sqlite3.so",
  4919. "sqlitepclraw.lib.e_sqlite3.linux.1.1.12.nupkg.sha512",
  4920. "sqlitepclraw.lib.e_sqlite3.linux.nuspec"
  4921. ]
  4922. },
  4923. "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": {
  4924. "sha512": "qfl1ljn6NOQDyM2i9JDZc6xekHoC+Fqe4GzuhWFCS6siI7lLInw09HHSZRqyimV36vjdQYnyBBFKSn53rSOYkA==",
  4925. "type": "package",
  4926. "path": "sqlitepclraw.lib.e_sqlite3.osx/1.1.12",
  4927. "files": [
  4928. ".nupkg.metadata",
  4929. ".signature.p7s",
  4930. "build/Xamarin.Mac20/SQLitePCLRaw.lib.e_sqlite3.osx.targets",
  4931. "build/net35/SQLitePCLRaw.lib.e_sqlite3.osx.targets",
  4932. "lib/Xamarin.Mac20/_._",
  4933. "lib/net35/_._",
  4934. "lib/netstandard1.0/_._",
  4935. "lib/netstandard2.0/_._",
  4936. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  4937. "sqlitepclraw.lib.e_sqlite3.osx.1.1.12.nupkg.sha512",
  4938. "sqlitepclraw.lib.e_sqlite3.osx.nuspec"
  4939. ]
  4940. },
  4941. "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": {
  4942. "sha512": "YfmaVhcEyAGU6BZ7NQiYYfCHKsCYjldwsafiFKArzqeM8MHuhfqft1Fjdv7ncukXrvKsHXhCrzJzKEMwPXiSSg==",
  4943. "type": "package",
  4944. "path": "sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.12",
  4945. "files": [
  4946. ".nupkg.metadata",
  4947. ".signature.p7s",
  4948. "build/net35/SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets",
  4949. "lib/net35/_._",
  4950. "lib/netstandard1.0/_._",
  4951. "lib/netstandard2.0/_._",
  4952. "runtimes/win-x64/native/e_sqlite3.dll",
  4953. "runtimes/win-x86/native/e_sqlite3.dll",
  4954. "runtimes/win8-arm/native/e_sqlite3.dll",
  4955. "sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.12.nupkg.sha512",
  4956. "sqlitepclraw.lib.e_sqlite3.v110_xp.nuspec"
  4957. ]
  4958. },
  4959. "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": {
  4960. "sha512": "qjz6Ad1Q5hiI8imCiG5Mpa/w8E8+rAk3SRJdX54uEOo5nPywiN1H0jmMZO+ID0nPibQA3yjlAHt5/GcLW9Iftg==",
  4961. "type": "package",
  4962. "path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.12",
  4963. "files": [
  4964. ".nupkg.metadata",
  4965. ".signature.p7s",
  4966. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll",
  4967. "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512",
  4968. "sqlitepclraw.provider.e_sqlite3.netstandard11.nuspec"
  4969. ]
  4970. },
  4971. "sqlSugarCore/5.0.0.18": {
  4972. "sha512": "AtNXN+yg50fIZuOHBggWvxY/sBH0nqTFEVM6CDmmc06WxUJ0MA8N7kBbKxVYVWbhpD8/INWZrGJ4tko3ZKD88A==",
  4973. "type": "package",
  4974. "path": "sqlsugarcore/5.0.0.18",
  4975. "files": [
  4976. ".nupkg.metadata",
  4977. ".signature.p7s",
  4978. "lib/netstandard2.0/SqlSugar.dll",
  4979. "sqlsugarcore.5.0.0.18.nupkg.sha512",
  4980. "sqlsugarcore.nuspec"
  4981. ]
  4982. },
  4983. "System.AppContext/4.3.0": {
  4984. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4985. "type": "package",
  4986. "path": "system.appcontext/4.3.0",
  4987. "files": [
  4988. ".nupkg.metadata",
  4989. ".signature.p7s",
  4990. "ThirdPartyNotices.txt",
  4991. "dotnet_library_license.txt",
  4992. "lib/MonoAndroid10/_._",
  4993. "lib/MonoTouch10/_._",
  4994. "lib/net46/System.AppContext.dll",
  4995. "lib/net463/System.AppContext.dll",
  4996. "lib/netcore50/System.AppContext.dll",
  4997. "lib/netstandard1.6/System.AppContext.dll",
  4998. "lib/xamarinios10/_._",
  4999. "lib/xamarinmac20/_._",
  5000. "lib/xamarintvos10/_._",
  5001. "lib/xamarinwatchos10/_._",
  5002. "ref/MonoAndroid10/_._",
  5003. "ref/MonoTouch10/_._",
  5004. "ref/net46/System.AppContext.dll",
  5005. "ref/net463/System.AppContext.dll",
  5006. "ref/netstandard/_._",
  5007. "ref/netstandard1.3/System.AppContext.dll",
  5008. "ref/netstandard1.3/System.AppContext.xml",
  5009. "ref/netstandard1.3/de/System.AppContext.xml",
  5010. "ref/netstandard1.3/es/System.AppContext.xml",
  5011. "ref/netstandard1.3/fr/System.AppContext.xml",
  5012. "ref/netstandard1.3/it/System.AppContext.xml",
  5013. "ref/netstandard1.3/ja/System.AppContext.xml",
  5014. "ref/netstandard1.3/ko/System.AppContext.xml",
  5015. "ref/netstandard1.3/ru/System.AppContext.xml",
  5016. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5017. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5018. "ref/netstandard1.6/System.AppContext.dll",
  5019. "ref/netstandard1.6/System.AppContext.xml",
  5020. "ref/netstandard1.6/de/System.AppContext.xml",
  5021. "ref/netstandard1.6/es/System.AppContext.xml",
  5022. "ref/netstandard1.6/fr/System.AppContext.xml",
  5023. "ref/netstandard1.6/it/System.AppContext.xml",
  5024. "ref/netstandard1.6/ja/System.AppContext.xml",
  5025. "ref/netstandard1.6/ko/System.AppContext.xml",
  5026. "ref/netstandard1.6/ru/System.AppContext.xml",
  5027. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5028. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5029. "ref/xamarinios10/_._",
  5030. "ref/xamarinmac20/_._",
  5031. "ref/xamarintvos10/_._",
  5032. "ref/xamarinwatchos10/_._",
  5033. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5034. "system.appcontext.4.3.0.nupkg.sha512",
  5035. "system.appcontext.nuspec"
  5036. ]
  5037. },
  5038. "System.Buffers/4.3.0": {
  5039. "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
  5040. "type": "package",
  5041. "path": "system.buffers/4.3.0",
  5042. "files": [
  5043. ".nupkg.metadata",
  5044. ".signature.p7s",
  5045. "ThirdPartyNotices.txt",
  5046. "dotnet_library_license.txt",
  5047. "lib/netstandard1.1/.xml",
  5048. "lib/netstandard1.1/System.Buffers.dll",
  5049. "system.buffers.4.3.0.nupkg.sha512",
  5050. "system.buffers.nuspec"
  5051. ]
  5052. },
  5053. "System.Collections/4.3.0": {
  5054. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5055. "type": "package",
  5056. "path": "system.collections/4.3.0",
  5057. "files": [
  5058. ".nupkg.metadata",
  5059. ".signature.p7s",
  5060. "ThirdPartyNotices.txt",
  5061. "dotnet_library_license.txt",
  5062. "lib/MonoAndroid10/_._",
  5063. "lib/MonoTouch10/_._",
  5064. "lib/net45/_._",
  5065. "lib/portable-net45+win8+wp8+wpa81/_._",
  5066. "lib/win8/_._",
  5067. "lib/wp80/_._",
  5068. "lib/wpa81/_._",
  5069. "lib/xamarinios10/_._",
  5070. "lib/xamarinmac20/_._",
  5071. "lib/xamarintvos10/_._",
  5072. "lib/xamarinwatchos10/_._",
  5073. "ref/MonoAndroid10/_._",
  5074. "ref/MonoTouch10/_._",
  5075. "ref/net45/_._",
  5076. "ref/netcore50/System.Collections.dll",
  5077. "ref/netcore50/System.Collections.xml",
  5078. "ref/netcore50/de/System.Collections.xml",
  5079. "ref/netcore50/es/System.Collections.xml",
  5080. "ref/netcore50/fr/System.Collections.xml",
  5081. "ref/netcore50/it/System.Collections.xml",
  5082. "ref/netcore50/ja/System.Collections.xml",
  5083. "ref/netcore50/ko/System.Collections.xml",
  5084. "ref/netcore50/ru/System.Collections.xml",
  5085. "ref/netcore50/zh-hans/System.Collections.xml",
  5086. "ref/netcore50/zh-hant/System.Collections.xml",
  5087. "ref/netstandard1.0/System.Collections.dll",
  5088. "ref/netstandard1.0/System.Collections.xml",
  5089. "ref/netstandard1.0/de/System.Collections.xml",
  5090. "ref/netstandard1.0/es/System.Collections.xml",
  5091. "ref/netstandard1.0/fr/System.Collections.xml",
  5092. "ref/netstandard1.0/it/System.Collections.xml",
  5093. "ref/netstandard1.0/ja/System.Collections.xml",
  5094. "ref/netstandard1.0/ko/System.Collections.xml",
  5095. "ref/netstandard1.0/ru/System.Collections.xml",
  5096. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5097. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5098. "ref/netstandard1.3/System.Collections.dll",
  5099. "ref/netstandard1.3/System.Collections.xml",
  5100. "ref/netstandard1.3/de/System.Collections.xml",
  5101. "ref/netstandard1.3/es/System.Collections.xml",
  5102. "ref/netstandard1.3/fr/System.Collections.xml",
  5103. "ref/netstandard1.3/it/System.Collections.xml",
  5104. "ref/netstandard1.3/ja/System.Collections.xml",
  5105. "ref/netstandard1.3/ko/System.Collections.xml",
  5106. "ref/netstandard1.3/ru/System.Collections.xml",
  5107. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5108. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5109. "ref/portable-net45+win8+wp8+wpa81/_._",
  5110. "ref/win8/_._",
  5111. "ref/wp80/_._",
  5112. "ref/wpa81/_._",
  5113. "ref/xamarinios10/_._",
  5114. "ref/xamarinmac20/_._",
  5115. "ref/xamarintvos10/_._",
  5116. "ref/xamarinwatchos10/_._",
  5117. "system.collections.4.3.0.nupkg.sha512",
  5118. "system.collections.nuspec"
  5119. ]
  5120. },
  5121. "System.Collections.Concurrent/4.3.0": {
  5122. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5123. "type": "package",
  5124. "path": "system.collections.concurrent/4.3.0",
  5125. "files": [
  5126. ".nupkg.metadata",
  5127. ".signature.p7s",
  5128. "ThirdPartyNotices.txt",
  5129. "dotnet_library_license.txt",
  5130. "lib/MonoAndroid10/_._",
  5131. "lib/MonoTouch10/_._",
  5132. "lib/net45/_._",
  5133. "lib/netcore50/System.Collections.Concurrent.dll",
  5134. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5135. "lib/portable-net45+win8+wpa81/_._",
  5136. "lib/win8/_._",
  5137. "lib/wpa81/_._",
  5138. "lib/xamarinios10/_._",
  5139. "lib/xamarinmac20/_._",
  5140. "lib/xamarintvos10/_._",
  5141. "lib/xamarinwatchos10/_._",
  5142. "ref/MonoAndroid10/_._",
  5143. "ref/MonoTouch10/_._",
  5144. "ref/net45/_._",
  5145. "ref/netcore50/System.Collections.Concurrent.dll",
  5146. "ref/netcore50/System.Collections.Concurrent.xml",
  5147. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5148. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5149. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5150. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5151. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5152. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5153. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5154. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5155. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5156. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5157. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5158. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5159. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5160. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5161. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5162. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5163. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5164. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5165. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5166. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5167. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5168. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5169. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5170. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5171. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5172. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5173. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5174. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5175. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5176. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5177. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5178. "ref/portable-net45+win8+wpa81/_._",
  5179. "ref/win8/_._",
  5180. "ref/wpa81/_._",
  5181. "ref/xamarinios10/_._",
  5182. "ref/xamarinmac20/_._",
  5183. "ref/xamarintvos10/_._",
  5184. "ref/xamarinwatchos10/_._",
  5185. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5186. "system.collections.concurrent.nuspec"
  5187. ]
  5188. },
  5189. "System.Collections.Immutable/1.7.1": {
  5190. "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
  5191. "type": "package",
  5192. "path": "system.collections.immutable/1.7.1",
  5193. "files": [
  5194. ".nupkg.metadata",
  5195. ".signature.p7s",
  5196. "Icon.png",
  5197. "LICENSE.TXT",
  5198. "THIRD-PARTY-NOTICES.TXT",
  5199. "lib/net461/System.Collections.Immutable.dll",
  5200. "lib/net461/System.Collections.Immutable.xml",
  5201. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5202. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5203. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5204. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5205. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5206. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5207. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5208. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5209. "system.collections.immutable.1.7.1.nupkg.sha512",
  5210. "system.collections.immutable.nuspec",
  5211. "useSharedDesignerContext.txt",
  5212. "version.txt"
  5213. ]
  5214. },
  5215. "System.Collections.NonGeneric/4.3.0": {
  5216. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5217. "type": "package",
  5218. "path": "system.collections.nongeneric/4.3.0",
  5219. "files": [
  5220. ".nupkg.metadata",
  5221. ".signature.p7s",
  5222. "ThirdPartyNotices.txt",
  5223. "dotnet_library_license.txt",
  5224. "lib/MonoAndroid10/_._",
  5225. "lib/MonoTouch10/_._",
  5226. "lib/net46/System.Collections.NonGeneric.dll",
  5227. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5228. "lib/xamarinios10/_._",
  5229. "lib/xamarinmac20/_._",
  5230. "lib/xamarintvos10/_._",
  5231. "lib/xamarinwatchos10/_._",
  5232. "ref/MonoAndroid10/_._",
  5233. "ref/MonoTouch10/_._",
  5234. "ref/net46/System.Collections.NonGeneric.dll",
  5235. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5236. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5237. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5238. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5239. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5240. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5241. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5242. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5243. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5244. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5245. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5246. "ref/xamarinios10/_._",
  5247. "ref/xamarinmac20/_._",
  5248. "ref/xamarintvos10/_._",
  5249. "ref/xamarinwatchos10/_._",
  5250. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5251. "system.collections.nongeneric.nuspec"
  5252. ]
  5253. },
  5254. "System.Collections.Specialized/4.3.0": {
  5255. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  5256. "type": "package",
  5257. "path": "system.collections.specialized/4.3.0",
  5258. "files": [
  5259. ".nupkg.metadata",
  5260. ".signature.p7s",
  5261. "ThirdPartyNotices.txt",
  5262. "dotnet_library_license.txt",
  5263. "lib/MonoAndroid10/_._",
  5264. "lib/MonoTouch10/_._",
  5265. "lib/net46/System.Collections.Specialized.dll",
  5266. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5267. "lib/xamarinios10/_._",
  5268. "lib/xamarinmac20/_._",
  5269. "lib/xamarintvos10/_._",
  5270. "lib/xamarinwatchos10/_._",
  5271. "ref/MonoAndroid10/_._",
  5272. "ref/MonoTouch10/_._",
  5273. "ref/net46/System.Collections.Specialized.dll",
  5274. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5275. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5276. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5277. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5278. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5279. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5280. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5281. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5282. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5283. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5284. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5285. "ref/xamarinios10/_._",
  5286. "ref/xamarinmac20/_._",
  5287. "ref/xamarintvos10/_._",
  5288. "ref/xamarinwatchos10/_._",
  5289. "system.collections.specialized.4.3.0.nupkg.sha512",
  5290. "system.collections.specialized.nuspec"
  5291. ]
  5292. },
  5293. "System.ComponentModel/4.3.0": {
  5294. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5295. "type": "package",
  5296. "path": "system.componentmodel/4.3.0",
  5297. "files": [
  5298. ".nupkg.metadata",
  5299. ".signature.p7s",
  5300. "ThirdPartyNotices.txt",
  5301. "dotnet_library_license.txt",
  5302. "lib/MonoAndroid10/_._",
  5303. "lib/MonoTouch10/_._",
  5304. "lib/net45/_._",
  5305. "lib/netcore50/System.ComponentModel.dll",
  5306. "lib/netstandard1.3/System.ComponentModel.dll",
  5307. "lib/portable-net45+win8+wp8+wpa81/_._",
  5308. "lib/win8/_._",
  5309. "lib/wp80/_._",
  5310. "lib/wpa81/_._",
  5311. "lib/xamarinios10/_._",
  5312. "lib/xamarinmac20/_._",
  5313. "lib/xamarintvos10/_._",
  5314. "lib/xamarinwatchos10/_._",
  5315. "ref/MonoAndroid10/_._",
  5316. "ref/MonoTouch10/_._",
  5317. "ref/net45/_._",
  5318. "ref/netcore50/System.ComponentModel.dll",
  5319. "ref/netcore50/System.ComponentModel.xml",
  5320. "ref/netcore50/de/System.ComponentModel.xml",
  5321. "ref/netcore50/es/System.ComponentModel.xml",
  5322. "ref/netcore50/fr/System.ComponentModel.xml",
  5323. "ref/netcore50/it/System.ComponentModel.xml",
  5324. "ref/netcore50/ja/System.ComponentModel.xml",
  5325. "ref/netcore50/ko/System.ComponentModel.xml",
  5326. "ref/netcore50/ru/System.ComponentModel.xml",
  5327. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5328. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5329. "ref/netstandard1.0/System.ComponentModel.dll",
  5330. "ref/netstandard1.0/System.ComponentModel.xml",
  5331. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5332. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5333. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5334. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5335. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5336. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5337. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5338. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5339. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5340. "ref/portable-net45+win8+wp8+wpa81/_._",
  5341. "ref/win8/_._",
  5342. "ref/wp80/_._",
  5343. "ref/wpa81/_._",
  5344. "ref/xamarinios10/_._",
  5345. "ref/xamarinmac20/_._",
  5346. "ref/xamarintvos10/_._",
  5347. "ref/xamarinwatchos10/_._",
  5348. "system.componentmodel.4.3.0.nupkg.sha512",
  5349. "system.componentmodel.nuspec"
  5350. ]
  5351. },
  5352. "System.ComponentModel.Annotations/4.7.0": {
  5353. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  5354. "type": "package",
  5355. "path": "system.componentmodel.annotations/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/net45/_._",
  5364. "lib/net461/System.ComponentModel.Annotations.dll",
  5365. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5366. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5367. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5368. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5369. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5370. "lib/portable-net45+win8/_._",
  5371. "lib/win8/_._",
  5372. "lib/xamarinios10/_._",
  5373. "lib/xamarinmac20/_._",
  5374. "lib/xamarintvos10/_._",
  5375. "lib/xamarinwatchos10/_._",
  5376. "ref/MonoAndroid10/_._",
  5377. "ref/MonoTouch10/_._",
  5378. "ref/net45/_._",
  5379. "ref/net461/System.ComponentModel.Annotations.dll",
  5380. "ref/net461/System.ComponentModel.Annotations.xml",
  5381. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5382. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5383. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5384. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5385. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5386. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5387. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5388. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5389. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5390. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5391. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5392. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5393. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5394. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5395. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5396. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5397. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5398. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5399. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5400. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5401. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5402. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5403. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5404. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5405. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5406. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5407. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5408. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5409. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5410. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5411. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5412. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5413. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5414. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5415. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5416. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5417. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5418. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5419. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5420. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5421. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5422. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5423. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5424. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5425. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5426. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5427. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5428. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5429. "ref/portable-net45+win8/_._",
  5430. "ref/win8/_._",
  5431. "ref/xamarinios10/_._",
  5432. "ref/xamarinmac20/_._",
  5433. "ref/xamarintvos10/_._",
  5434. "ref/xamarinwatchos10/_._",
  5435. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  5436. "system.componentmodel.annotations.nuspec",
  5437. "useSharedDesignerContext.txt",
  5438. "version.txt"
  5439. ]
  5440. },
  5441. "System.ComponentModel.Primitives/4.3.0": {
  5442. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5443. "type": "package",
  5444. "path": "system.componentmodel.primitives/4.3.0",
  5445. "files": [
  5446. ".nupkg.metadata",
  5447. ".signature.p7s",
  5448. "ThirdPartyNotices.txt",
  5449. "dotnet_library_license.txt",
  5450. "lib/MonoAndroid10/_._",
  5451. "lib/MonoTouch10/_._",
  5452. "lib/net45/System.ComponentModel.Primitives.dll",
  5453. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5454. "lib/xamarinios10/_._",
  5455. "lib/xamarinmac20/_._",
  5456. "lib/xamarintvos10/_._",
  5457. "lib/xamarinwatchos10/_._",
  5458. "ref/MonoAndroid10/_._",
  5459. "ref/MonoTouch10/_._",
  5460. "ref/net45/System.ComponentModel.Primitives.dll",
  5461. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5462. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5463. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5464. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5465. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5466. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5467. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5468. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5469. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5470. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5471. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5472. "ref/xamarinios10/_._",
  5473. "ref/xamarinmac20/_._",
  5474. "ref/xamarintvos10/_._",
  5475. "ref/xamarinwatchos10/_._",
  5476. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5477. "system.componentmodel.primitives.nuspec"
  5478. ]
  5479. },
  5480. "System.ComponentModel.TypeConverter/4.3.0": {
  5481. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5482. "type": "package",
  5483. "path": "system.componentmodel.typeconverter/4.3.0",
  5484. "files": [
  5485. ".nupkg.metadata",
  5486. ".signature.p7s",
  5487. "ThirdPartyNotices.txt",
  5488. "dotnet_library_license.txt",
  5489. "lib/MonoAndroid10/_._",
  5490. "lib/MonoTouch10/_._",
  5491. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5492. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5493. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5494. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5495. "lib/xamarinios10/_._",
  5496. "lib/xamarinmac20/_._",
  5497. "lib/xamarintvos10/_._",
  5498. "lib/xamarinwatchos10/_._",
  5499. "ref/MonoAndroid10/_._",
  5500. "ref/MonoTouch10/_._",
  5501. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5502. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5503. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5504. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5505. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5506. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5507. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5508. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5509. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5510. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5511. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5512. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5513. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5514. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5515. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5516. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5517. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5518. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5519. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5520. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5521. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5522. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5523. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5524. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5525. "ref/xamarinios10/_._",
  5526. "ref/xamarinmac20/_._",
  5527. "ref/xamarintvos10/_._",
  5528. "ref/xamarinwatchos10/_._",
  5529. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5530. "system.componentmodel.typeconverter.nuspec"
  5531. ]
  5532. },
  5533. "System.Configuration.ConfigurationManager/4.7.0": {
  5534. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  5535. "type": "package",
  5536. "path": "system.configuration.configurationmanager/4.7.0",
  5537. "files": [
  5538. ".nupkg.metadata",
  5539. ".signature.p7s",
  5540. "LICENSE.TXT",
  5541. "THIRD-PARTY-NOTICES.TXT",
  5542. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5543. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5544. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5545. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5546. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5547. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5548. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5549. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5550. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  5551. "system.configuration.configurationmanager.nuspec",
  5552. "useSharedDesignerContext.txt",
  5553. "version.txt"
  5554. ]
  5555. },
  5556. "System.Console/4.3.0": {
  5557. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5558. "type": "package",
  5559. "path": "system.console/4.3.0",
  5560. "files": [
  5561. ".nupkg.metadata",
  5562. ".signature.p7s",
  5563. "ThirdPartyNotices.txt",
  5564. "dotnet_library_license.txt",
  5565. "lib/MonoAndroid10/_._",
  5566. "lib/MonoTouch10/_._",
  5567. "lib/net46/System.Console.dll",
  5568. "lib/xamarinios10/_._",
  5569. "lib/xamarinmac20/_._",
  5570. "lib/xamarintvos10/_._",
  5571. "lib/xamarinwatchos10/_._",
  5572. "ref/MonoAndroid10/_._",
  5573. "ref/MonoTouch10/_._",
  5574. "ref/net46/System.Console.dll",
  5575. "ref/netstandard1.3/System.Console.dll",
  5576. "ref/netstandard1.3/System.Console.xml",
  5577. "ref/netstandard1.3/de/System.Console.xml",
  5578. "ref/netstandard1.3/es/System.Console.xml",
  5579. "ref/netstandard1.3/fr/System.Console.xml",
  5580. "ref/netstandard1.3/it/System.Console.xml",
  5581. "ref/netstandard1.3/ja/System.Console.xml",
  5582. "ref/netstandard1.3/ko/System.Console.xml",
  5583. "ref/netstandard1.3/ru/System.Console.xml",
  5584. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5585. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5586. "ref/xamarinios10/_._",
  5587. "ref/xamarinmac20/_._",
  5588. "ref/xamarintvos10/_._",
  5589. "ref/xamarinwatchos10/_._",
  5590. "system.console.4.3.0.nupkg.sha512",
  5591. "system.console.nuspec"
  5592. ]
  5593. },
  5594. "System.Data.Common/4.3.0": {
  5595. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  5596. "type": "package",
  5597. "path": "system.data.common/4.3.0",
  5598. "files": [
  5599. ".nupkg.metadata",
  5600. ".signature.p7s",
  5601. "ThirdPartyNotices.txt",
  5602. "dotnet_library_license.txt",
  5603. "lib/MonoAndroid10/_._",
  5604. "lib/MonoTouch10/_._",
  5605. "lib/net451/System.Data.Common.dll",
  5606. "lib/netstandard1.2/System.Data.Common.dll",
  5607. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5608. "lib/xamarinios10/_._",
  5609. "lib/xamarinmac20/_._",
  5610. "lib/xamarintvos10/_._",
  5611. "lib/xamarinwatchos10/_._",
  5612. "ref/MonoAndroid10/_._",
  5613. "ref/MonoTouch10/_._",
  5614. "ref/net451/System.Data.Common.dll",
  5615. "ref/netstandard1.2/System.Data.Common.dll",
  5616. "ref/netstandard1.2/System.Data.Common.xml",
  5617. "ref/netstandard1.2/de/System.Data.Common.xml",
  5618. "ref/netstandard1.2/es/System.Data.Common.xml",
  5619. "ref/netstandard1.2/fr/System.Data.Common.xml",
  5620. "ref/netstandard1.2/it/System.Data.Common.xml",
  5621. "ref/netstandard1.2/ja/System.Data.Common.xml",
  5622. "ref/netstandard1.2/ko/System.Data.Common.xml",
  5623. "ref/netstandard1.2/ru/System.Data.Common.xml",
  5624. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  5625. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  5626. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5627. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  5628. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  5629. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  5630. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  5631. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  5632. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  5633. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  5634. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  5635. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  5636. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  5637. "ref/xamarinios10/_._",
  5638. "ref/xamarinmac20/_._",
  5639. "ref/xamarintvos10/_._",
  5640. "ref/xamarinwatchos10/_._",
  5641. "system.data.common.4.3.0.nupkg.sha512",
  5642. "system.data.common.nuspec"
  5643. ]
  5644. },
  5645. "System.Data.SqlClient/4.4.0": {
  5646. "sha512": "fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==",
  5647. "type": "package",
  5648. "path": "system.data.sqlclient/4.4.0",
  5649. "files": [
  5650. ".nupkg.metadata",
  5651. ".signature.p7s",
  5652. "LICENSE.TXT",
  5653. "THIRD-PARTY-NOTICES.TXT",
  5654. "lib/MonoAndroid10/_._",
  5655. "lib/MonoTouch10/_._",
  5656. "lib/net451/System.Data.SqlClient.dll",
  5657. "lib/net46/System.Data.SqlClient.dll",
  5658. "lib/net461/System.Data.SqlClient.dll",
  5659. "lib/netstandard1.2/System.Data.SqlClient.dll",
  5660. "lib/netstandard1.3/System.Data.SqlClient.dll",
  5661. "lib/netstandard2.0/System.Data.SqlClient.dll",
  5662. "lib/xamarinios10/_._",
  5663. "lib/xamarinmac20/_._",
  5664. "lib/xamarintvos10/_._",
  5665. "lib/xamarinwatchos10/_._",
  5666. "ref/MonoAndroid10/_._",
  5667. "ref/MonoTouch10/_._",
  5668. "ref/net451/System.Data.SqlClient.dll",
  5669. "ref/net46/System.Data.SqlClient.dll",
  5670. "ref/net461/System.Data.SqlClient.dll",
  5671. "ref/net461/System.Data.SqlClient.xml",
  5672. "ref/netstandard1.2/System.Data.SqlClient.dll",
  5673. "ref/netstandard1.2/System.Data.SqlClient.xml",
  5674. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  5675. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  5676. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  5677. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  5678. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  5679. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  5680. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  5681. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  5682. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  5683. "ref/netstandard1.3/System.Data.SqlClient.dll",
  5684. "ref/netstandard1.3/System.Data.SqlClient.xml",
  5685. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  5686. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  5687. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  5688. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  5689. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  5690. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  5691. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  5692. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  5693. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  5694. "ref/netstandard2.0/System.Data.SqlClient.dll",
  5695. "ref/netstandard2.0/System.Data.SqlClient.xml",
  5696. "ref/xamarinios10/_._",
  5697. "ref/xamarinmac20/_._",
  5698. "ref/xamarintvos10/_._",
  5699. "ref/xamarinwatchos10/_._",
  5700. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  5701. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  5702. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  5703. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  5704. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  5705. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  5706. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  5707. "system.data.sqlclient.4.4.0.nupkg.sha512",
  5708. "system.data.sqlclient.nuspec",
  5709. "useSharedDesignerContext.txt",
  5710. "version.txt"
  5711. ]
  5712. },
  5713. "System.Diagnostics.Debug/4.3.0": {
  5714. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5715. "type": "package",
  5716. "path": "system.diagnostics.debug/4.3.0",
  5717. "files": [
  5718. ".nupkg.metadata",
  5719. ".signature.p7s",
  5720. "ThirdPartyNotices.txt",
  5721. "dotnet_library_license.txt",
  5722. "lib/MonoAndroid10/_._",
  5723. "lib/MonoTouch10/_._",
  5724. "lib/net45/_._",
  5725. "lib/portable-net45+win8+wp8+wpa81/_._",
  5726. "lib/win8/_._",
  5727. "lib/wp80/_._",
  5728. "lib/wpa81/_._",
  5729. "lib/xamarinios10/_._",
  5730. "lib/xamarinmac20/_._",
  5731. "lib/xamarintvos10/_._",
  5732. "lib/xamarinwatchos10/_._",
  5733. "ref/MonoAndroid10/_._",
  5734. "ref/MonoTouch10/_._",
  5735. "ref/net45/_._",
  5736. "ref/netcore50/System.Diagnostics.Debug.dll",
  5737. "ref/netcore50/System.Diagnostics.Debug.xml",
  5738. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5739. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5740. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5741. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5742. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5743. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5744. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5745. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5746. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5747. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5748. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5749. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5750. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5751. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5752. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5753. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5754. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5755. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5756. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5757. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5758. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5759. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5760. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5761. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5762. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5763. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5764. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5765. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5766. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5767. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5768. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5769. "ref/portable-net45+win8+wp8+wpa81/_._",
  5770. "ref/win8/_._",
  5771. "ref/wp80/_._",
  5772. "ref/wpa81/_._",
  5773. "ref/xamarinios10/_._",
  5774. "ref/xamarinmac20/_._",
  5775. "ref/xamarintvos10/_._",
  5776. "ref/xamarinwatchos10/_._",
  5777. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5778. "system.diagnostics.debug.nuspec"
  5779. ]
  5780. },
  5781. "System.Diagnostics.DiagnosticSource/4.7.1": {
  5782. "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  5783. "type": "package",
  5784. "path": "system.diagnostics.diagnosticsource/4.7.1",
  5785. "files": [
  5786. ".nupkg.metadata",
  5787. ".signature.p7s",
  5788. "Icon.png",
  5789. "LICENSE.TXT",
  5790. "THIRD-PARTY-NOTICES.TXT",
  5791. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5792. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5793. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5794. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5795. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5796. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5797. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5798. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5799. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5800. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5801. "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
  5802. "system.diagnostics.diagnosticsource.nuspec",
  5803. "useSharedDesignerContext.txt",
  5804. "version.txt"
  5805. ]
  5806. },
  5807. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  5808. "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
  5809. "type": "package",
  5810. "path": "system.diagnostics.textwritertracelistener/4.3.0",
  5811. "files": [
  5812. ".nupkg.metadata",
  5813. ".signature.p7s",
  5814. "ThirdPartyNotices.txt",
  5815. "dotnet_library_license.txt",
  5816. "lib/MonoAndroid10/_._",
  5817. "lib/MonoTouch10/_._",
  5818. "lib/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5819. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5820. "lib/xamarinios10/_._",
  5821. "lib/xamarinmac20/_._",
  5822. "lib/xamarintvos10/_._",
  5823. "lib/xamarinwatchos10/_._",
  5824. "ref/MonoAndroid10/_._",
  5825. "ref/MonoTouch10/_._",
  5826. "ref/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5827. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5828. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml",
  5829. "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml",
  5830. "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml",
  5831. "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml",
  5832. "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml",
  5833. "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml",
  5834. "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml",
  5835. "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml",
  5836. "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml",
  5837. "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml",
  5838. "ref/xamarinios10/_._",
  5839. "ref/xamarinmac20/_._",
  5840. "ref/xamarintvos10/_._",
  5841. "ref/xamarinwatchos10/_._",
  5842. "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512",
  5843. "system.diagnostics.textwritertracelistener.nuspec"
  5844. ]
  5845. },
  5846. "System.Diagnostics.Tools/4.3.0": {
  5847. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5848. "type": "package",
  5849. "path": "system.diagnostics.tools/4.3.0",
  5850. "files": [
  5851. ".nupkg.metadata",
  5852. ".signature.p7s",
  5853. "ThirdPartyNotices.txt",
  5854. "dotnet_library_license.txt",
  5855. "lib/MonoAndroid10/_._",
  5856. "lib/MonoTouch10/_._",
  5857. "lib/net45/_._",
  5858. "lib/portable-net45+win8+wp8+wpa81/_._",
  5859. "lib/win8/_._",
  5860. "lib/wp80/_._",
  5861. "lib/wpa81/_._",
  5862. "lib/xamarinios10/_._",
  5863. "lib/xamarinmac20/_._",
  5864. "lib/xamarintvos10/_._",
  5865. "lib/xamarinwatchos10/_._",
  5866. "ref/MonoAndroid10/_._",
  5867. "ref/MonoTouch10/_._",
  5868. "ref/net45/_._",
  5869. "ref/netcore50/System.Diagnostics.Tools.dll",
  5870. "ref/netcore50/System.Diagnostics.Tools.xml",
  5871. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5872. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5873. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5874. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5875. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5876. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5877. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5878. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5879. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5880. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5881. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5882. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5883. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5884. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5885. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5886. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5887. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5888. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5889. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5890. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5891. "ref/portable-net45+win8+wp8+wpa81/_._",
  5892. "ref/win8/_._",
  5893. "ref/wp80/_._",
  5894. "ref/wpa81/_._",
  5895. "ref/xamarinios10/_._",
  5896. "ref/xamarinmac20/_._",
  5897. "ref/xamarintvos10/_._",
  5898. "ref/xamarinwatchos10/_._",
  5899. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5900. "system.diagnostics.tools.nuspec"
  5901. ]
  5902. },
  5903. "System.Diagnostics.TraceSource/4.3.0": {
  5904. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  5905. "type": "package",
  5906. "path": "system.diagnostics.tracesource/4.3.0",
  5907. "files": [
  5908. ".nupkg.metadata",
  5909. ".signature.p7s",
  5910. "ThirdPartyNotices.txt",
  5911. "dotnet_library_license.txt",
  5912. "lib/MonoAndroid10/_._",
  5913. "lib/MonoTouch10/_._",
  5914. "lib/net46/System.Diagnostics.TraceSource.dll",
  5915. "lib/xamarinios10/_._",
  5916. "lib/xamarinmac20/_._",
  5917. "lib/xamarintvos10/_._",
  5918. "lib/xamarinwatchos10/_._",
  5919. "ref/MonoAndroid10/_._",
  5920. "ref/MonoTouch10/_._",
  5921. "ref/net46/System.Diagnostics.TraceSource.dll",
  5922. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5923. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5924. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5925. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5926. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5927. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5928. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5929. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5930. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5931. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5932. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5933. "ref/xamarinios10/_._",
  5934. "ref/xamarinmac20/_._",
  5935. "ref/xamarintvos10/_._",
  5936. "ref/xamarinwatchos10/_._",
  5937. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5938. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5939. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5940. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  5941. "system.diagnostics.tracesource.nuspec"
  5942. ]
  5943. },
  5944. "System.Diagnostics.Tracing/4.3.0": {
  5945. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5946. "type": "package",
  5947. "path": "system.diagnostics.tracing/4.3.0",
  5948. "files": [
  5949. ".nupkg.metadata",
  5950. ".signature.p7s",
  5951. "ThirdPartyNotices.txt",
  5952. "dotnet_library_license.txt",
  5953. "lib/MonoAndroid10/_._",
  5954. "lib/MonoTouch10/_._",
  5955. "lib/net45/_._",
  5956. "lib/net462/System.Diagnostics.Tracing.dll",
  5957. "lib/portable-net45+win8+wpa81/_._",
  5958. "lib/win8/_._",
  5959. "lib/wpa81/_._",
  5960. "lib/xamarinios10/_._",
  5961. "lib/xamarinmac20/_._",
  5962. "lib/xamarintvos10/_._",
  5963. "lib/xamarinwatchos10/_._",
  5964. "ref/MonoAndroid10/_._",
  5965. "ref/MonoTouch10/_._",
  5966. "ref/net45/_._",
  5967. "ref/net462/System.Diagnostics.Tracing.dll",
  5968. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5969. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5970. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5971. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5972. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5973. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5974. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5975. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5976. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5977. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5978. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5979. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5980. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5981. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5982. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5983. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5984. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5985. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5986. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5987. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5988. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5989. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5990. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5991. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5992. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5993. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5994. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5995. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5996. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5997. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5998. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5999. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6000. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6001. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6002. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6003. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6004. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6005. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6006. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6007. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6008. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6009. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6010. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6011. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6012. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6013. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6014. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6015. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6016. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6017. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6018. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6019. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6020. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6021. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6022. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6023. "ref/portable-net45+win8+wpa81/_._",
  6024. "ref/win8/_._",
  6025. "ref/wpa81/_._",
  6026. "ref/xamarinios10/_._",
  6027. "ref/xamarinmac20/_._",
  6028. "ref/xamarintvos10/_._",
  6029. "ref/xamarinwatchos10/_._",
  6030. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6031. "system.diagnostics.tracing.nuspec"
  6032. ]
  6033. },
  6034. "System.Drawing.Common/4.7.0": {
  6035. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  6036. "type": "package",
  6037. "path": "system.drawing.common/4.7.0",
  6038. "files": [
  6039. ".nupkg.metadata",
  6040. ".signature.p7s",
  6041. "LICENSE.TXT",
  6042. "THIRD-PARTY-NOTICES.TXT",
  6043. "lib/MonoAndroid10/_._",
  6044. "lib/MonoTouch10/_._",
  6045. "lib/net461/System.Drawing.Common.dll",
  6046. "lib/netstandard2.0/System.Drawing.Common.dll",
  6047. "lib/xamarinios10/_._",
  6048. "lib/xamarinmac20/_._",
  6049. "lib/xamarintvos10/_._",
  6050. "lib/xamarinwatchos10/_._",
  6051. "ref/MonoAndroid10/_._",
  6052. "ref/MonoTouch10/_._",
  6053. "ref/net461/System.Drawing.Common.dll",
  6054. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6055. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6056. "ref/netstandard2.0/System.Drawing.Common.dll",
  6057. "ref/xamarinios10/_._",
  6058. "ref/xamarinmac20/_._",
  6059. "ref/xamarintvos10/_._",
  6060. "ref/xamarinwatchos10/_._",
  6061. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6062. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6063. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6064. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6065. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6066. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6067. "system.drawing.common.4.7.0.nupkg.sha512",
  6068. "system.drawing.common.nuspec",
  6069. "useSharedDesignerContext.txt",
  6070. "version.txt"
  6071. ]
  6072. },
  6073. "System.Dynamic.Runtime/4.3.0": {
  6074. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6075. "type": "package",
  6076. "path": "system.dynamic.runtime/4.3.0",
  6077. "files": [
  6078. ".nupkg.metadata",
  6079. ".signature.p7s",
  6080. "ThirdPartyNotices.txt",
  6081. "dotnet_library_license.txt",
  6082. "lib/MonoAndroid10/_._",
  6083. "lib/MonoTouch10/_._",
  6084. "lib/net45/_._",
  6085. "lib/netcore50/System.Dynamic.Runtime.dll",
  6086. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6087. "lib/portable-net45+win8+wp8+wpa81/_._",
  6088. "lib/win8/_._",
  6089. "lib/wp80/_._",
  6090. "lib/wpa81/_._",
  6091. "lib/xamarinios10/_._",
  6092. "lib/xamarinmac20/_._",
  6093. "lib/xamarintvos10/_._",
  6094. "lib/xamarinwatchos10/_._",
  6095. "ref/MonoAndroid10/_._",
  6096. "ref/MonoTouch10/_._",
  6097. "ref/net45/_._",
  6098. "ref/netcore50/System.Dynamic.Runtime.dll",
  6099. "ref/netcore50/System.Dynamic.Runtime.xml",
  6100. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6101. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6102. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6103. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6104. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6105. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6106. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6107. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6108. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6109. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6110. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6111. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6112. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6113. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6114. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6115. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6116. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6117. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6118. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6119. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6120. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6121. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6122. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6123. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6124. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6125. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6126. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6127. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6128. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6129. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6130. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6131. "ref/portable-net45+win8+wp8+wpa81/_._",
  6132. "ref/win8/_._",
  6133. "ref/wp80/_._",
  6134. "ref/wpa81/_._",
  6135. "ref/xamarinios10/_._",
  6136. "ref/xamarinmac20/_._",
  6137. "ref/xamarintvos10/_._",
  6138. "ref/xamarinwatchos10/_._",
  6139. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6140. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6141. "system.dynamic.runtime.nuspec"
  6142. ]
  6143. },
  6144. "System.Globalization/4.3.0": {
  6145. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6146. "type": "package",
  6147. "path": "system.globalization/4.3.0",
  6148. "files": [
  6149. ".nupkg.metadata",
  6150. ".signature.p7s",
  6151. "ThirdPartyNotices.txt",
  6152. "dotnet_library_license.txt",
  6153. "lib/MonoAndroid10/_._",
  6154. "lib/MonoTouch10/_._",
  6155. "lib/net45/_._",
  6156. "lib/portable-net45+win8+wp8+wpa81/_._",
  6157. "lib/win8/_._",
  6158. "lib/wp80/_._",
  6159. "lib/wpa81/_._",
  6160. "lib/xamarinios10/_._",
  6161. "lib/xamarinmac20/_._",
  6162. "lib/xamarintvos10/_._",
  6163. "lib/xamarinwatchos10/_._",
  6164. "ref/MonoAndroid10/_._",
  6165. "ref/MonoTouch10/_._",
  6166. "ref/net45/_._",
  6167. "ref/netcore50/System.Globalization.dll",
  6168. "ref/netcore50/System.Globalization.xml",
  6169. "ref/netcore50/de/System.Globalization.xml",
  6170. "ref/netcore50/es/System.Globalization.xml",
  6171. "ref/netcore50/fr/System.Globalization.xml",
  6172. "ref/netcore50/it/System.Globalization.xml",
  6173. "ref/netcore50/ja/System.Globalization.xml",
  6174. "ref/netcore50/ko/System.Globalization.xml",
  6175. "ref/netcore50/ru/System.Globalization.xml",
  6176. "ref/netcore50/zh-hans/System.Globalization.xml",
  6177. "ref/netcore50/zh-hant/System.Globalization.xml",
  6178. "ref/netstandard1.0/System.Globalization.dll",
  6179. "ref/netstandard1.0/System.Globalization.xml",
  6180. "ref/netstandard1.0/de/System.Globalization.xml",
  6181. "ref/netstandard1.0/es/System.Globalization.xml",
  6182. "ref/netstandard1.0/fr/System.Globalization.xml",
  6183. "ref/netstandard1.0/it/System.Globalization.xml",
  6184. "ref/netstandard1.0/ja/System.Globalization.xml",
  6185. "ref/netstandard1.0/ko/System.Globalization.xml",
  6186. "ref/netstandard1.0/ru/System.Globalization.xml",
  6187. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6188. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6189. "ref/netstandard1.3/System.Globalization.dll",
  6190. "ref/netstandard1.3/System.Globalization.xml",
  6191. "ref/netstandard1.3/de/System.Globalization.xml",
  6192. "ref/netstandard1.3/es/System.Globalization.xml",
  6193. "ref/netstandard1.3/fr/System.Globalization.xml",
  6194. "ref/netstandard1.3/it/System.Globalization.xml",
  6195. "ref/netstandard1.3/ja/System.Globalization.xml",
  6196. "ref/netstandard1.3/ko/System.Globalization.xml",
  6197. "ref/netstandard1.3/ru/System.Globalization.xml",
  6198. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6199. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6200. "ref/portable-net45+win8+wp8+wpa81/_._",
  6201. "ref/win8/_._",
  6202. "ref/wp80/_._",
  6203. "ref/wpa81/_._",
  6204. "ref/xamarinios10/_._",
  6205. "ref/xamarinmac20/_._",
  6206. "ref/xamarintvos10/_._",
  6207. "ref/xamarinwatchos10/_._",
  6208. "system.globalization.4.3.0.nupkg.sha512",
  6209. "system.globalization.nuspec"
  6210. ]
  6211. },
  6212. "System.Globalization.Calendars/4.3.0": {
  6213. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6214. "type": "package",
  6215. "path": "system.globalization.calendars/4.3.0",
  6216. "files": [
  6217. ".nupkg.metadata",
  6218. ".signature.p7s",
  6219. "ThirdPartyNotices.txt",
  6220. "dotnet_library_license.txt",
  6221. "lib/MonoAndroid10/_._",
  6222. "lib/MonoTouch10/_._",
  6223. "lib/net46/System.Globalization.Calendars.dll",
  6224. "lib/xamarinios10/_._",
  6225. "lib/xamarinmac20/_._",
  6226. "lib/xamarintvos10/_._",
  6227. "lib/xamarinwatchos10/_._",
  6228. "ref/MonoAndroid10/_._",
  6229. "ref/MonoTouch10/_._",
  6230. "ref/net46/System.Globalization.Calendars.dll",
  6231. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6232. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6233. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6234. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6235. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6236. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6237. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6238. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6239. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6240. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6241. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6242. "ref/xamarinios10/_._",
  6243. "ref/xamarinmac20/_._",
  6244. "ref/xamarintvos10/_._",
  6245. "ref/xamarinwatchos10/_._",
  6246. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6247. "system.globalization.calendars.nuspec"
  6248. ]
  6249. },
  6250. "System.Globalization.Extensions/4.3.0": {
  6251. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6252. "type": "package",
  6253. "path": "system.globalization.extensions/4.3.0",
  6254. "files": [
  6255. ".nupkg.metadata",
  6256. ".signature.p7s",
  6257. "ThirdPartyNotices.txt",
  6258. "dotnet_library_license.txt",
  6259. "lib/MonoAndroid10/_._",
  6260. "lib/MonoTouch10/_._",
  6261. "lib/net46/System.Globalization.Extensions.dll",
  6262. "lib/xamarinios10/_._",
  6263. "lib/xamarinmac20/_._",
  6264. "lib/xamarintvos10/_._",
  6265. "lib/xamarinwatchos10/_._",
  6266. "ref/MonoAndroid10/_._",
  6267. "ref/MonoTouch10/_._",
  6268. "ref/net46/System.Globalization.Extensions.dll",
  6269. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6270. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6271. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6272. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6273. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6274. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6275. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6276. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6277. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6278. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6279. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6280. "ref/xamarinios10/_._",
  6281. "ref/xamarinmac20/_._",
  6282. "ref/xamarintvos10/_._",
  6283. "ref/xamarinwatchos10/_._",
  6284. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6285. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6286. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6287. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6288. "system.globalization.extensions.nuspec"
  6289. ]
  6290. },
  6291. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  6292. "sha512": "KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  6293. "type": "package",
  6294. "path": "system.identitymodel.tokens.jwt/5.6.0",
  6295. "files": [
  6296. ".nupkg.metadata",
  6297. ".signature.p7s",
  6298. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  6299. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  6300. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  6301. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  6302. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  6303. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  6304. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  6305. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  6306. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  6307. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  6308. "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512",
  6309. "system.identitymodel.tokens.jwt.nuspec"
  6310. ]
  6311. },
  6312. "System.IO/4.3.0": {
  6313. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6314. "type": "package",
  6315. "path": "system.io/4.3.0",
  6316. "files": [
  6317. ".nupkg.metadata",
  6318. ".signature.p7s",
  6319. "ThirdPartyNotices.txt",
  6320. "dotnet_library_license.txt",
  6321. "lib/MonoAndroid10/_._",
  6322. "lib/MonoTouch10/_._",
  6323. "lib/net45/_._",
  6324. "lib/net462/System.IO.dll",
  6325. "lib/portable-net45+win8+wp8+wpa81/_._",
  6326. "lib/win8/_._",
  6327. "lib/wp80/_._",
  6328. "lib/wpa81/_._",
  6329. "lib/xamarinios10/_._",
  6330. "lib/xamarinmac20/_._",
  6331. "lib/xamarintvos10/_._",
  6332. "lib/xamarinwatchos10/_._",
  6333. "ref/MonoAndroid10/_._",
  6334. "ref/MonoTouch10/_._",
  6335. "ref/net45/_._",
  6336. "ref/net462/System.IO.dll",
  6337. "ref/netcore50/System.IO.dll",
  6338. "ref/netcore50/System.IO.xml",
  6339. "ref/netcore50/de/System.IO.xml",
  6340. "ref/netcore50/es/System.IO.xml",
  6341. "ref/netcore50/fr/System.IO.xml",
  6342. "ref/netcore50/it/System.IO.xml",
  6343. "ref/netcore50/ja/System.IO.xml",
  6344. "ref/netcore50/ko/System.IO.xml",
  6345. "ref/netcore50/ru/System.IO.xml",
  6346. "ref/netcore50/zh-hans/System.IO.xml",
  6347. "ref/netcore50/zh-hant/System.IO.xml",
  6348. "ref/netstandard1.0/System.IO.dll",
  6349. "ref/netstandard1.0/System.IO.xml",
  6350. "ref/netstandard1.0/de/System.IO.xml",
  6351. "ref/netstandard1.0/es/System.IO.xml",
  6352. "ref/netstandard1.0/fr/System.IO.xml",
  6353. "ref/netstandard1.0/it/System.IO.xml",
  6354. "ref/netstandard1.0/ja/System.IO.xml",
  6355. "ref/netstandard1.0/ko/System.IO.xml",
  6356. "ref/netstandard1.0/ru/System.IO.xml",
  6357. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6358. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6359. "ref/netstandard1.3/System.IO.dll",
  6360. "ref/netstandard1.3/System.IO.xml",
  6361. "ref/netstandard1.3/de/System.IO.xml",
  6362. "ref/netstandard1.3/es/System.IO.xml",
  6363. "ref/netstandard1.3/fr/System.IO.xml",
  6364. "ref/netstandard1.3/it/System.IO.xml",
  6365. "ref/netstandard1.3/ja/System.IO.xml",
  6366. "ref/netstandard1.3/ko/System.IO.xml",
  6367. "ref/netstandard1.3/ru/System.IO.xml",
  6368. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6369. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6370. "ref/netstandard1.5/System.IO.dll",
  6371. "ref/netstandard1.5/System.IO.xml",
  6372. "ref/netstandard1.5/de/System.IO.xml",
  6373. "ref/netstandard1.5/es/System.IO.xml",
  6374. "ref/netstandard1.5/fr/System.IO.xml",
  6375. "ref/netstandard1.5/it/System.IO.xml",
  6376. "ref/netstandard1.5/ja/System.IO.xml",
  6377. "ref/netstandard1.5/ko/System.IO.xml",
  6378. "ref/netstandard1.5/ru/System.IO.xml",
  6379. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6380. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6381. "ref/portable-net45+win8+wp8+wpa81/_._",
  6382. "ref/win8/_._",
  6383. "ref/wp80/_._",
  6384. "ref/wpa81/_._",
  6385. "ref/xamarinios10/_._",
  6386. "ref/xamarinmac20/_._",
  6387. "ref/xamarintvos10/_._",
  6388. "ref/xamarinwatchos10/_._",
  6389. "system.io.4.3.0.nupkg.sha512",
  6390. "system.io.nuspec"
  6391. ]
  6392. },
  6393. "System.IO.Compression/4.3.0": {
  6394. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6395. "type": "package",
  6396. "path": "system.io.compression/4.3.0",
  6397. "files": [
  6398. ".nupkg.metadata",
  6399. ".signature.p7s",
  6400. "ThirdPartyNotices.txt",
  6401. "dotnet_library_license.txt",
  6402. "lib/MonoAndroid10/_._",
  6403. "lib/MonoTouch10/_._",
  6404. "lib/net45/_._",
  6405. "lib/net46/System.IO.Compression.dll",
  6406. "lib/portable-net45+win8+wpa81/_._",
  6407. "lib/win8/_._",
  6408. "lib/wpa81/_._",
  6409. "lib/xamarinios10/_._",
  6410. "lib/xamarinmac20/_._",
  6411. "lib/xamarintvos10/_._",
  6412. "lib/xamarinwatchos10/_._",
  6413. "ref/MonoAndroid10/_._",
  6414. "ref/MonoTouch10/_._",
  6415. "ref/net45/_._",
  6416. "ref/net46/System.IO.Compression.dll",
  6417. "ref/netcore50/System.IO.Compression.dll",
  6418. "ref/netcore50/System.IO.Compression.xml",
  6419. "ref/netcore50/de/System.IO.Compression.xml",
  6420. "ref/netcore50/es/System.IO.Compression.xml",
  6421. "ref/netcore50/fr/System.IO.Compression.xml",
  6422. "ref/netcore50/it/System.IO.Compression.xml",
  6423. "ref/netcore50/ja/System.IO.Compression.xml",
  6424. "ref/netcore50/ko/System.IO.Compression.xml",
  6425. "ref/netcore50/ru/System.IO.Compression.xml",
  6426. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6427. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6428. "ref/netstandard1.1/System.IO.Compression.dll",
  6429. "ref/netstandard1.1/System.IO.Compression.xml",
  6430. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6431. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6432. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6433. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6434. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6435. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6436. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6437. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6438. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6439. "ref/netstandard1.3/System.IO.Compression.dll",
  6440. "ref/netstandard1.3/System.IO.Compression.xml",
  6441. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6442. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6443. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6444. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6445. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6446. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6447. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6448. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6449. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6450. "ref/portable-net45+win8+wpa81/_._",
  6451. "ref/win8/_._",
  6452. "ref/wpa81/_._",
  6453. "ref/xamarinios10/_._",
  6454. "ref/xamarinmac20/_._",
  6455. "ref/xamarintvos10/_._",
  6456. "ref/xamarinwatchos10/_._",
  6457. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6458. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6459. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6460. "system.io.compression.4.3.0.nupkg.sha512",
  6461. "system.io.compression.nuspec"
  6462. ]
  6463. },
  6464. "System.IO.Compression.ZipFile/4.3.0": {
  6465. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6466. "type": "package",
  6467. "path": "system.io.compression.zipfile/4.3.0",
  6468. "files": [
  6469. ".nupkg.metadata",
  6470. ".signature.p7s",
  6471. "ThirdPartyNotices.txt",
  6472. "dotnet_library_license.txt",
  6473. "lib/MonoAndroid10/_._",
  6474. "lib/MonoTouch10/_._",
  6475. "lib/net46/System.IO.Compression.ZipFile.dll",
  6476. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6477. "lib/xamarinios10/_._",
  6478. "lib/xamarinmac20/_._",
  6479. "lib/xamarintvos10/_._",
  6480. "lib/xamarinwatchos10/_._",
  6481. "ref/MonoAndroid10/_._",
  6482. "ref/MonoTouch10/_._",
  6483. "ref/net46/System.IO.Compression.ZipFile.dll",
  6484. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6485. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6486. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6487. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6488. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6489. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6490. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6491. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6492. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6493. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6494. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6495. "ref/xamarinios10/_._",
  6496. "ref/xamarinmac20/_._",
  6497. "ref/xamarintvos10/_._",
  6498. "ref/xamarinwatchos10/_._",
  6499. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6500. "system.io.compression.zipfile.nuspec"
  6501. ]
  6502. },
  6503. "System.IO.FileSystem/4.3.0": {
  6504. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6505. "type": "package",
  6506. "path": "system.io.filesystem/4.3.0",
  6507. "files": [
  6508. ".nupkg.metadata",
  6509. ".signature.p7s",
  6510. "ThirdPartyNotices.txt",
  6511. "dotnet_library_license.txt",
  6512. "lib/MonoAndroid10/_._",
  6513. "lib/MonoTouch10/_._",
  6514. "lib/net46/System.IO.FileSystem.dll",
  6515. "lib/xamarinios10/_._",
  6516. "lib/xamarinmac20/_._",
  6517. "lib/xamarintvos10/_._",
  6518. "lib/xamarinwatchos10/_._",
  6519. "ref/MonoAndroid10/_._",
  6520. "ref/MonoTouch10/_._",
  6521. "ref/net46/System.IO.FileSystem.dll",
  6522. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6523. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6524. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6525. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6526. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6527. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6528. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6529. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6530. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6531. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6532. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6533. "ref/xamarinios10/_._",
  6534. "ref/xamarinmac20/_._",
  6535. "ref/xamarintvos10/_._",
  6536. "ref/xamarinwatchos10/_._",
  6537. "system.io.filesystem.4.3.0.nupkg.sha512",
  6538. "system.io.filesystem.nuspec"
  6539. ]
  6540. },
  6541. "System.IO.FileSystem.Primitives/4.3.0": {
  6542. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6543. "type": "package",
  6544. "path": "system.io.filesystem.primitives/4.3.0",
  6545. "files": [
  6546. ".nupkg.metadata",
  6547. ".signature.p7s",
  6548. "ThirdPartyNotices.txt",
  6549. "dotnet_library_license.txt",
  6550. "lib/MonoAndroid10/_._",
  6551. "lib/MonoTouch10/_._",
  6552. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6553. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6554. "lib/xamarinios10/_._",
  6555. "lib/xamarinmac20/_._",
  6556. "lib/xamarintvos10/_._",
  6557. "lib/xamarinwatchos10/_._",
  6558. "ref/MonoAndroid10/_._",
  6559. "ref/MonoTouch10/_._",
  6560. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6561. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6562. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6563. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6564. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6565. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6566. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6567. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6568. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6569. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6570. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6571. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6572. "ref/xamarinios10/_._",
  6573. "ref/xamarinmac20/_._",
  6574. "ref/xamarintvos10/_._",
  6575. "ref/xamarinwatchos10/_._",
  6576. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6577. "system.io.filesystem.primitives.nuspec"
  6578. ]
  6579. },
  6580. "System.Linq/4.3.0": {
  6581. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6582. "type": "package",
  6583. "path": "system.linq/4.3.0",
  6584. "files": [
  6585. ".nupkg.metadata",
  6586. ".signature.p7s",
  6587. "ThirdPartyNotices.txt",
  6588. "dotnet_library_license.txt",
  6589. "lib/MonoAndroid10/_._",
  6590. "lib/MonoTouch10/_._",
  6591. "lib/net45/_._",
  6592. "lib/net463/System.Linq.dll",
  6593. "lib/netcore50/System.Linq.dll",
  6594. "lib/netstandard1.6/System.Linq.dll",
  6595. "lib/portable-net45+win8+wp8+wpa81/_._",
  6596. "lib/win8/_._",
  6597. "lib/wp80/_._",
  6598. "lib/wpa81/_._",
  6599. "lib/xamarinios10/_._",
  6600. "lib/xamarinmac20/_._",
  6601. "lib/xamarintvos10/_._",
  6602. "lib/xamarinwatchos10/_._",
  6603. "ref/MonoAndroid10/_._",
  6604. "ref/MonoTouch10/_._",
  6605. "ref/net45/_._",
  6606. "ref/net463/System.Linq.dll",
  6607. "ref/netcore50/System.Linq.dll",
  6608. "ref/netcore50/System.Linq.xml",
  6609. "ref/netcore50/de/System.Linq.xml",
  6610. "ref/netcore50/es/System.Linq.xml",
  6611. "ref/netcore50/fr/System.Linq.xml",
  6612. "ref/netcore50/it/System.Linq.xml",
  6613. "ref/netcore50/ja/System.Linq.xml",
  6614. "ref/netcore50/ko/System.Linq.xml",
  6615. "ref/netcore50/ru/System.Linq.xml",
  6616. "ref/netcore50/zh-hans/System.Linq.xml",
  6617. "ref/netcore50/zh-hant/System.Linq.xml",
  6618. "ref/netstandard1.0/System.Linq.dll",
  6619. "ref/netstandard1.0/System.Linq.xml",
  6620. "ref/netstandard1.0/de/System.Linq.xml",
  6621. "ref/netstandard1.0/es/System.Linq.xml",
  6622. "ref/netstandard1.0/fr/System.Linq.xml",
  6623. "ref/netstandard1.0/it/System.Linq.xml",
  6624. "ref/netstandard1.0/ja/System.Linq.xml",
  6625. "ref/netstandard1.0/ko/System.Linq.xml",
  6626. "ref/netstandard1.0/ru/System.Linq.xml",
  6627. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6628. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6629. "ref/netstandard1.6/System.Linq.dll",
  6630. "ref/netstandard1.6/System.Linq.xml",
  6631. "ref/netstandard1.6/de/System.Linq.xml",
  6632. "ref/netstandard1.6/es/System.Linq.xml",
  6633. "ref/netstandard1.6/fr/System.Linq.xml",
  6634. "ref/netstandard1.6/it/System.Linq.xml",
  6635. "ref/netstandard1.6/ja/System.Linq.xml",
  6636. "ref/netstandard1.6/ko/System.Linq.xml",
  6637. "ref/netstandard1.6/ru/System.Linq.xml",
  6638. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6639. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6640. "ref/portable-net45+win8+wp8+wpa81/_._",
  6641. "ref/win8/_._",
  6642. "ref/wp80/_._",
  6643. "ref/wpa81/_._",
  6644. "ref/xamarinios10/_._",
  6645. "ref/xamarinmac20/_._",
  6646. "ref/xamarintvos10/_._",
  6647. "ref/xamarinwatchos10/_._",
  6648. "system.linq.4.3.0.nupkg.sha512",
  6649. "system.linq.nuspec"
  6650. ]
  6651. },
  6652. "System.Linq.Expressions/4.3.0": {
  6653. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6654. "type": "package",
  6655. "path": "system.linq.expressions/4.3.0",
  6656. "files": [
  6657. ".nupkg.metadata",
  6658. ".signature.p7s",
  6659. "ThirdPartyNotices.txt",
  6660. "dotnet_library_license.txt",
  6661. "lib/MonoAndroid10/_._",
  6662. "lib/MonoTouch10/_._",
  6663. "lib/net45/_._",
  6664. "lib/net463/System.Linq.Expressions.dll",
  6665. "lib/netcore50/System.Linq.Expressions.dll",
  6666. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6667. "lib/portable-net45+win8+wp8+wpa81/_._",
  6668. "lib/win8/_._",
  6669. "lib/wp80/_._",
  6670. "lib/wpa81/_._",
  6671. "lib/xamarinios10/_._",
  6672. "lib/xamarinmac20/_._",
  6673. "lib/xamarintvos10/_._",
  6674. "lib/xamarinwatchos10/_._",
  6675. "ref/MonoAndroid10/_._",
  6676. "ref/MonoTouch10/_._",
  6677. "ref/net45/_._",
  6678. "ref/net463/System.Linq.Expressions.dll",
  6679. "ref/netcore50/System.Linq.Expressions.dll",
  6680. "ref/netcore50/System.Linq.Expressions.xml",
  6681. "ref/netcore50/de/System.Linq.Expressions.xml",
  6682. "ref/netcore50/es/System.Linq.Expressions.xml",
  6683. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6684. "ref/netcore50/it/System.Linq.Expressions.xml",
  6685. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6686. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6687. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6688. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6689. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6690. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6691. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6692. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6693. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6694. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6695. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6696. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6697. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6698. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6699. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6700. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6701. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6702. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6703. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6704. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6705. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6706. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6707. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6708. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6709. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6710. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6711. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6712. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6713. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6714. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6715. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6716. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6717. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6718. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6719. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6720. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6721. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6722. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6723. "ref/portable-net45+win8+wp8+wpa81/_._",
  6724. "ref/win8/_._",
  6725. "ref/wp80/_._",
  6726. "ref/wpa81/_._",
  6727. "ref/xamarinios10/_._",
  6728. "ref/xamarinmac20/_._",
  6729. "ref/xamarintvos10/_._",
  6730. "ref/xamarinwatchos10/_._",
  6731. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6732. "system.linq.expressions.4.3.0.nupkg.sha512",
  6733. "system.linq.expressions.nuspec"
  6734. ]
  6735. },
  6736. "System.Net.Http/4.3.0": {
  6737. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6738. "type": "package",
  6739. "path": "system.net.http/4.3.0",
  6740. "files": [
  6741. ".nupkg.metadata",
  6742. ".signature.p7s",
  6743. "ThirdPartyNotices.txt",
  6744. "dotnet_library_license.txt",
  6745. "lib/Xamarinmac20/_._",
  6746. "lib/monoandroid10/_._",
  6747. "lib/monotouch10/_._",
  6748. "lib/net45/_._",
  6749. "lib/net46/System.Net.Http.dll",
  6750. "lib/portable-net45+win8+wpa81/_._",
  6751. "lib/win8/_._",
  6752. "lib/wpa81/_._",
  6753. "lib/xamarinios10/_._",
  6754. "lib/xamarintvos10/_._",
  6755. "lib/xamarinwatchos10/_._",
  6756. "ref/Xamarinmac20/_._",
  6757. "ref/monoandroid10/_._",
  6758. "ref/monotouch10/_._",
  6759. "ref/net45/_._",
  6760. "ref/net46/System.Net.Http.dll",
  6761. "ref/net46/System.Net.Http.xml",
  6762. "ref/net46/de/System.Net.Http.xml",
  6763. "ref/net46/es/System.Net.Http.xml",
  6764. "ref/net46/fr/System.Net.Http.xml",
  6765. "ref/net46/it/System.Net.Http.xml",
  6766. "ref/net46/ja/System.Net.Http.xml",
  6767. "ref/net46/ko/System.Net.Http.xml",
  6768. "ref/net46/ru/System.Net.Http.xml",
  6769. "ref/net46/zh-hans/System.Net.Http.xml",
  6770. "ref/net46/zh-hant/System.Net.Http.xml",
  6771. "ref/netcore50/System.Net.Http.dll",
  6772. "ref/netcore50/System.Net.Http.xml",
  6773. "ref/netcore50/de/System.Net.Http.xml",
  6774. "ref/netcore50/es/System.Net.Http.xml",
  6775. "ref/netcore50/fr/System.Net.Http.xml",
  6776. "ref/netcore50/it/System.Net.Http.xml",
  6777. "ref/netcore50/ja/System.Net.Http.xml",
  6778. "ref/netcore50/ko/System.Net.Http.xml",
  6779. "ref/netcore50/ru/System.Net.Http.xml",
  6780. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6781. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6782. "ref/netstandard1.1/System.Net.Http.dll",
  6783. "ref/netstandard1.1/System.Net.Http.xml",
  6784. "ref/netstandard1.1/de/System.Net.Http.xml",
  6785. "ref/netstandard1.1/es/System.Net.Http.xml",
  6786. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6787. "ref/netstandard1.1/it/System.Net.Http.xml",
  6788. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6789. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6790. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6791. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6792. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6793. "ref/netstandard1.3/System.Net.Http.dll",
  6794. "ref/netstandard1.3/System.Net.Http.xml",
  6795. "ref/netstandard1.3/de/System.Net.Http.xml",
  6796. "ref/netstandard1.3/es/System.Net.Http.xml",
  6797. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6798. "ref/netstandard1.3/it/System.Net.Http.xml",
  6799. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6800. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6801. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6802. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6803. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6804. "ref/portable-net45+win8+wpa81/_._",
  6805. "ref/win8/_._",
  6806. "ref/wpa81/_._",
  6807. "ref/xamarinios10/_._",
  6808. "ref/xamarintvos10/_._",
  6809. "ref/xamarinwatchos10/_._",
  6810. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6811. "runtimes/win/lib/net46/System.Net.Http.dll",
  6812. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6813. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6814. "system.net.http.4.3.0.nupkg.sha512",
  6815. "system.net.http.nuspec"
  6816. ]
  6817. },
  6818. "System.Net.Http.WinHttpHandler/4.4.0": {
  6819. "sha512": "ZmsFZIZ4PL2UfUlfj4KCzzAGGE2SF39ENIqtvfgu0bwMEAe3J3CqZr765E2W6eQQtNK08/8DpHcsA0sAKZdEtA==",
  6820. "type": "package",
  6821. "path": "system.net.http.winhttphandler/4.4.0",
  6822. "files": [
  6823. ".nupkg.metadata",
  6824. ".signature.p7s",
  6825. "LICENSE.TXT",
  6826. "THIRD-PARTY-NOTICES.TXT",
  6827. "lib/net46/System.Net.Http.WinHttpHandler.dll",
  6828. "lib/net461/System.Net.Http.WinHttpHandler.dll",
  6829. "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6830. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6831. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6832. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.xml",
  6833. "ref/netstandard1.3/de/System.Net.Http.WinHttpHandler.xml",
  6834. "ref/netstandard1.3/es/System.Net.Http.WinHttpHandler.xml",
  6835. "ref/netstandard1.3/fr/System.Net.Http.WinHttpHandler.xml",
  6836. "ref/netstandard1.3/it/System.Net.Http.WinHttpHandler.xml",
  6837. "ref/netstandard1.3/ja/System.Net.Http.WinHttpHandler.xml",
  6838. "ref/netstandard1.3/ko/System.Net.Http.WinHttpHandler.xml",
  6839. "ref/netstandard1.3/ru/System.Net.Http.WinHttpHandler.xml",
  6840. "ref/netstandard1.3/zh-hans/System.Net.Http.WinHttpHandler.xml",
  6841. "ref/netstandard1.3/zh-hant/System.Net.Http.WinHttpHandler.xml",
  6842. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6843. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.xml",
  6844. "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll",
  6845. "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll",
  6846. "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6847. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6848. "system.net.http.winhttphandler.4.4.0.nupkg.sha512",
  6849. "system.net.http.winhttphandler.nuspec",
  6850. "useSharedDesignerContext.txt",
  6851. "version.txt"
  6852. ]
  6853. },
  6854. "System.Net.Primitives/4.3.0": {
  6855. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6856. "type": "package",
  6857. "path": "system.net.primitives/4.3.0",
  6858. "files": [
  6859. ".nupkg.metadata",
  6860. ".signature.p7s",
  6861. "ThirdPartyNotices.txt",
  6862. "dotnet_library_license.txt",
  6863. "lib/MonoAndroid10/_._",
  6864. "lib/MonoTouch10/_._",
  6865. "lib/net45/_._",
  6866. "lib/portable-net45+win8+wp8+wpa81/_._",
  6867. "lib/win8/_._",
  6868. "lib/wp80/_._",
  6869. "lib/wpa81/_._",
  6870. "lib/xamarinios10/_._",
  6871. "lib/xamarinmac20/_._",
  6872. "lib/xamarintvos10/_._",
  6873. "lib/xamarinwatchos10/_._",
  6874. "ref/MonoAndroid10/_._",
  6875. "ref/MonoTouch10/_._",
  6876. "ref/net45/_._",
  6877. "ref/netcore50/System.Net.Primitives.dll",
  6878. "ref/netcore50/System.Net.Primitives.xml",
  6879. "ref/netcore50/de/System.Net.Primitives.xml",
  6880. "ref/netcore50/es/System.Net.Primitives.xml",
  6881. "ref/netcore50/fr/System.Net.Primitives.xml",
  6882. "ref/netcore50/it/System.Net.Primitives.xml",
  6883. "ref/netcore50/ja/System.Net.Primitives.xml",
  6884. "ref/netcore50/ko/System.Net.Primitives.xml",
  6885. "ref/netcore50/ru/System.Net.Primitives.xml",
  6886. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6887. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6888. "ref/netstandard1.0/System.Net.Primitives.dll",
  6889. "ref/netstandard1.0/System.Net.Primitives.xml",
  6890. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6891. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6892. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6893. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6894. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6895. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6896. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6897. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6898. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6899. "ref/netstandard1.1/System.Net.Primitives.dll",
  6900. "ref/netstandard1.1/System.Net.Primitives.xml",
  6901. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6902. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6903. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6904. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6905. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6906. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6907. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6908. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6909. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6910. "ref/netstandard1.3/System.Net.Primitives.dll",
  6911. "ref/netstandard1.3/System.Net.Primitives.xml",
  6912. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6913. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6914. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6915. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6916. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6917. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6918. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6919. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6920. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6921. "ref/portable-net45+win8+wp8+wpa81/_._",
  6922. "ref/win8/_._",
  6923. "ref/wp80/_._",
  6924. "ref/wpa81/_._",
  6925. "ref/xamarinios10/_._",
  6926. "ref/xamarinmac20/_._",
  6927. "ref/xamarintvos10/_._",
  6928. "ref/xamarinwatchos10/_._",
  6929. "system.net.primitives.4.3.0.nupkg.sha512",
  6930. "system.net.primitives.nuspec"
  6931. ]
  6932. },
  6933. "System.Net.Requests/4.3.0": {
  6934. "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
  6935. "type": "package",
  6936. "path": "system.net.requests/4.3.0",
  6937. "files": [
  6938. ".nupkg.metadata",
  6939. ".signature.p7s",
  6940. "ThirdPartyNotices.txt",
  6941. "dotnet_library_license.txt",
  6942. "lib/MonoAndroid10/_._",
  6943. "lib/MonoTouch10/_._",
  6944. "lib/net45/_._",
  6945. "lib/portable-net45+win8+wp8+wpa81/_._",
  6946. "lib/win8/_._",
  6947. "lib/wp80/_._",
  6948. "lib/wpa81/_._",
  6949. "lib/xamarinios10/_._",
  6950. "lib/xamarinmac20/_._",
  6951. "lib/xamarintvos10/_._",
  6952. "lib/xamarinwatchos10/_._",
  6953. "ref/MonoAndroid10/_._",
  6954. "ref/MonoTouch10/_._",
  6955. "ref/net45/_._",
  6956. "ref/net46/_._",
  6957. "ref/netcore50/System.Net.Requests.dll",
  6958. "ref/netcore50/System.Net.Requests.xml",
  6959. "ref/netcore50/de/System.Net.Requests.xml",
  6960. "ref/netcore50/es/System.Net.Requests.xml",
  6961. "ref/netcore50/fr/System.Net.Requests.xml",
  6962. "ref/netcore50/it/System.Net.Requests.xml",
  6963. "ref/netcore50/ja/System.Net.Requests.xml",
  6964. "ref/netcore50/ko/System.Net.Requests.xml",
  6965. "ref/netcore50/ru/System.Net.Requests.xml",
  6966. "ref/netcore50/zh-hans/System.Net.Requests.xml",
  6967. "ref/netcore50/zh-hant/System.Net.Requests.xml",
  6968. "ref/netstandard1.0/System.Net.Requests.dll",
  6969. "ref/netstandard1.0/System.Net.Requests.xml",
  6970. "ref/netstandard1.0/de/System.Net.Requests.xml",
  6971. "ref/netstandard1.0/es/System.Net.Requests.xml",
  6972. "ref/netstandard1.0/fr/System.Net.Requests.xml",
  6973. "ref/netstandard1.0/it/System.Net.Requests.xml",
  6974. "ref/netstandard1.0/ja/System.Net.Requests.xml",
  6975. "ref/netstandard1.0/ko/System.Net.Requests.xml",
  6976. "ref/netstandard1.0/ru/System.Net.Requests.xml",
  6977. "ref/netstandard1.0/zh-hans/System.Net.Requests.xml",
  6978. "ref/netstandard1.0/zh-hant/System.Net.Requests.xml",
  6979. "ref/netstandard1.1/System.Net.Requests.dll",
  6980. "ref/netstandard1.1/System.Net.Requests.xml",
  6981. "ref/netstandard1.1/de/System.Net.Requests.xml",
  6982. "ref/netstandard1.1/es/System.Net.Requests.xml",
  6983. "ref/netstandard1.1/fr/System.Net.Requests.xml",
  6984. "ref/netstandard1.1/it/System.Net.Requests.xml",
  6985. "ref/netstandard1.1/ja/System.Net.Requests.xml",
  6986. "ref/netstandard1.1/ko/System.Net.Requests.xml",
  6987. "ref/netstandard1.1/ru/System.Net.Requests.xml",
  6988. "ref/netstandard1.1/zh-hans/System.Net.Requests.xml",
  6989. "ref/netstandard1.1/zh-hant/System.Net.Requests.xml",
  6990. "ref/netstandard1.3/System.Net.Requests.dll",
  6991. "ref/netstandard1.3/System.Net.Requests.xml",
  6992. "ref/netstandard1.3/de/System.Net.Requests.xml",
  6993. "ref/netstandard1.3/es/System.Net.Requests.xml",
  6994. "ref/netstandard1.3/fr/System.Net.Requests.xml",
  6995. "ref/netstandard1.3/it/System.Net.Requests.xml",
  6996. "ref/netstandard1.3/ja/System.Net.Requests.xml",
  6997. "ref/netstandard1.3/ko/System.Net.Requests.xml",
  6998. "ref/netstandard1.3/ru/System.Net.Requests.xml",
  6999. "ref/netstandard1.3/zh-hans/System.Net.Requests.xml",
  7000. "ref/netstandard1.3/zh-hant/System.Net.Requests.xml",
  7001. "ref/portable-net45+win8+wp8+wpa81/_._",
  7002. "ref/win8/_._",
  7003. "ref/wp80/_._",
  7004. "ref/wpa81/_._",
  7005. "ref/xamarinios10/_._",
  7006. "ref/xamarinmac20/_._",
  7007. "ref/xamarintvos10/_._",
  7008. "ref/xamarinwatchos10/_._",
  7009. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll",
  7010. "runtimes/win/lib/net46/_._",
  7011. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll",
  7012. "system.net.requests.4.3.0.nupkg.sha512",
  7013. "system.net.requests.nuspec"
  7014. ]
  7015. },
  7016. "System.Net.Sockets/4.3.0": {
  7017. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7018. "type": "package",
  7019. "path": "system.net.sockets/4.3.0",
  7020. "files": [
  7021. ".nupkg.metadata",
  7022. ".signature.p7s",
  7023. "ThirdPartyNotices.txt",
  7024. "dotnet_library_license.txt",
  7025. "lib/MonoAndroid10/_._",
  7026. "lib/MonoTouch10/_._",
  7027. "lib/net46/System.Net.Sockets.dll",
  7028. "lib/xamarinios10/_._",
  7029. "lib/xamarinmac20/_._",
  7030. "lib/xamarintvos10/_._",
  7031. "lib/xamarinwatchos10/_._",
  7032. "ref/MonoAndroid10/_._",
  7033. "ref/MonoTouch10/_._",
  7034. "ref/net46/System.Net.Sockets.dll",
  7035. "ref/netstandard1.3/System.Net.Sockets.dll",
  7036. "ref/netstandard1.3/System.Net.Sockets.xml",
  7037. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7038. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7039. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7040. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7041. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7042. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7043. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7044. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7045. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7046. "ref/xamarinios10/_._",
  7047. "ref/xamarinmac20/_._",
  7048. "ref/xamarintvos10/_._",
  7049. "ref/xamarinwatchos10/_._",
  7050. "system.net.sockets.4.3.0.nupkg.sha512",
  7051. "system.net.sockets.nuspec"
  7052. ]
  7053. },
  7054. "System.Net.WebHeaderCollection/4.3.0": {
  7055. "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
  7056. "type": "package",
  7057. "path": "system.net.webheadercollection/4.3.0",
  7058. "files": [
  7059. ".nupkg.metadata",
  7060. ".signature.p7s",
  7061. "ThirdPartyNotices.txt",
  7062. "dotnet_library_license.txt",
  7063. "lib/MonoAndroid10/_._",
  7064. "lib/MonoTouch10/_._",
  7065. "lib/net46/_._",
  7066. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7067. "lib/xamarinios10/_._",
  7068. "lib/xamarinmac20/_._",
  7069. "lib/xamarintvos10/_._",
  7070. "lib/xamarinwatchos10/_._",
  7071. "ref/MonoAndroid10/_._",
  7072. "ref/MonoTouch10/_._",
  7073. "ref/net46/_._",
  7074. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7075. "ref/netstandard1.3/System.Net.WebHeaderCollection.xml",
  7076. "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml",
  7077. "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml",
  7078. "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml",
  7079. "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml",
  7080. "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml",
  7081. "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml",
  7082. "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml",
  7083. "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml",
  7084. "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml",
  7085. "ref/xamarinios10/_._",
  7086. "ref/xamarinmac20/_._",
  7087. "ref/xamarintvos10/_._",
  7088. "ref/xamarinwatchos10/_._",
  7089. "system.net.webheadercollection.4.3.0.nupkg.sha512",
  7090. "system.net.webheadercollection.nuspec"
  7091. ]
  7092. },
  7093. "System.ObjectModel/4.3.0": {
  7094. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7095. "type": "package",
  7096. "path": "system.objectmodel/4.3.0",
  7097. "files": [
  7098. ".nupkg.metadata",
  7099. ".signature.p7s",
  7100. "ThirdPartyNotices.txt",
  7101. "dotnet_library_license.txt",
  7102. "lib/MonoAndroid10/_._",
  7103. "lib/MonoTouch10/_._",
  7104. "lib/net45/_._",
  7105. "lib/netcore50/System.ObjectModel.dll",
  7106. "lib/netstandard1.3/System.ObjectModel.dll",
  7107. "lib/portable-net45+win8+wp8+wpa81/_._",
  7108. "lib/win8/_._",
  7109. "lib/wp80/_._",
  7110. "lib/wpa81/_._",
  7111. "lib/xamarinios10/_._",
  7112. "lib/xamarinmac20/_._",
  7113. "lib/xamarintvos10/_._",
  7114. "lib/xamarinwatchos10/_._",
  7115. "ref/MonoAndroid10/_._",
  7116. "ref/MonoTouch10/_._",
  7117. "ref/net45/_._",
  7118. "ref/netcore50/System.ObjectModel.dll",
  7119. "ref/netcore50/System.ObjectModel.xml",
  7120. "ref/netcore50/de/System.ObjectModel.xml",
  7121. "ref/netcore50/es/System.ObjectModel.xml",
  7122. "ref/netcore50/fr/System.ObjectModel.xml",
  7123. "ref/netcore50/it/System.ObjectModel.xml",
  7124. "ref/netcore50/ja/System.ObjectModel.xml",
  7125. "ref/netcore50/ko/System.ObjectModel.xml",
  7126. "ref/netcore50/ru/System.ObjectModel.xml",
  7127. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7128. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7129. "ref/netstandard1.0/System.ObjectModel.dll",
  7130. "ref/netstandard1.0/System.ObjectModel.xml",
  7131. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7132. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7133. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7134. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7135. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7136. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7137. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7138. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7139. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7140. "ref/netstandard1.3/System.ObjectModel.dll",
  7141. "ref/netstandard1.3/System.ObjectModel.xml",
  7142. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7143. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7144. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7145. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7146. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7147. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7148. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7149. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7150. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7151. "ref/portable-net45+win8+wp8+wpa81/_._",
  7152. "ref/win8/_._",
  7153. "ref/wp80/_._",
  7154. "ref/wpa81/_._",
  7155. "ref/xamarinios10/_._",
  7156. "ref/xamarinmac20/_._",
  7157. "ref/xamarintvos10/_._",
  7158. "ref/xamarinwatchos10/_._",
  7159. "system.objectmodel.4.3.0.nupkg.sha512",
  7160. "system.objectmodel.nuspec"
  7161. ]
  7162. },
  7163. "System.Private.ServiceModel/4.4.4": {
  7164. "sha512": "tsDkr5hwYwxV2LaB3H5BvCltCX57wv7JzwU5q8IV9vrFdzq/e/nPJAj4U5Ny/FzR4sMTVRprVSwl4mZqfFkt4Q==",
  7165. "type": "package",
  7166. "path": "system.private.servicemodel/4.4.4",
  7167. "files": [
  7168. ".nupkg.metadata",
  7169. ".signature.p7s",
  7170. "LICENSE.TXT",
  7171. "THIRD-PARTY-NOTICES.TXT",
  7172. "ref/netstandard/_._",
  7173. "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll",
  7174. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll",
  7175. "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll",
  7176. "runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll",
  7177. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll",
  7178. "system.private.servicemodel.4.4.4.nupkg.sha512",
  7179. "system.private.servicemodel.nuspec",
  7180. "version.txt"
  7181. ]
  7182. },
  7183. "System.Reflection/4.3.0": {
  7184. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7185. "type": "package",
  7186. "path": "system.reflection/4.3.0",
  7187. "files": [
  7188. ".nupkg.metadata",
  7189. ".signature.p7s",
  7190. "ThirdPartyNotices.txt",
  7191. "dotnet_library_license.txt",
  7192. "lib/MonoAndroid10/_._",
  7193. "lib/MonoTouch10/_._",
  7194. "lib/net45/_._",
  7195. "lib/net462/System.Reflection.dll",
  7196. "lib/portable-net45+win8+wp8+wpa81/_._",
  7197. "lib/win8/_._",
  7198. "lib/wp80/_._",
  7199. "lib/wpa81/_._",
  7200. "lib/xamarinios10/_._",
  7201. "lib/xamarinmac20/_._",
  7202. "lib/xamarintvos10/_._",
  7203. "lib/xamarinwatchos10/_._",
  7204. "ref/MonoAndroid10/_._",
  7205. "ref/MonoTouch10/_._",
  7206. "ref/net45/_._",
  7207. "ref/net462/System.Reflection.dll",
  7208. "ref/netcore50/System.Reflection.dll",
  7209. "ref/netcore50/System.Reflection.xml",
  7210. "ref/netcore50/de/System.Reflection.xml",
  7211. "ref/netcore50/es/System.Reflection.xml",
  7212. "ref/netcore50/fr/System.Reflection.xml",
  7213. "ref/netcore50/it/System.Reflection.xml",
  7214. "ref/netcore50/ja/System.Reflection.xml",
  7215. "ref/netcore50/ko/System.Reflection.xml",
  7216. "ref/netcore50/ru/System.Reflection.xml",
  7217. "ref/netcore50/zh-hans/System.Reflection.xml",
  7218. "ref/netcore50/zh-hant/System.Reflection.xml",
  7219. "ref/netstandard1.0/System.Reflection.dll",
  7220. "ref/netstandard1.0/System.Reflection.xml",
  7221. "ref/netstandard1.0/de/System.Reflection.xml",
  7222. "ref/netstandard1.0/es/System.Reflection.xml",
  7223. "ref/netstandard1.0/fr/System.Reflection.xml",
  7224. "ref/netstandard1.0/it/System.Reflection.xml",
  7225. "ref/netstandard1.0/ja/System.Reflection.xml",
  7226. "ref/netstandard1.0/ko/System.Reflection.xml",
  7227. "ref/netstandard1.0/ru/System.Reflection.xml",
  7228. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7229. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7230. "ref/netstandard1.3/System.Reflection.dll",
  7231. "ref/netstandard1.3/System.Reflection.xml",
  7232. "ref/netstandard1.3/de/System.Reflection.xml",
  7233. "ref/netstandard1.3/es/System.Reflection.xml",
  7234. "ref/netstandard1.3/fr/System.Reflection.xml",
  7235. "ref/netstandard1.3/it/System.Reflection.xml",
  7236. "ref/netstandard1.3/ja/System.Reflection.xml",
  7237. "ref/netstandard1.3/ko/System.Reflection.xml",
  7238. "ref/netstandard1.3/ru/System.Reflection.xml",
  7239. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7240. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7241. "ref/netstandard1.5/System.Reflection.dll",
  7242. "ref/netstandard1.5/System.Reflection.xml",
  7243. "ref/netstandard1.5/de/System.Reflection.xml",
  7244. "ref/netstandard1.5/es/System.Reflection.xml",
  7245. "ref/netstandard1.5/fr/System.Reflection.xml",
  7246. "ref/netstandard1.5/it/System.Reflection.xml",
  7247. "ref/netstandard1.5/ja/System.Reflection.xml",
  7248. "ref/netstandard1.5/ko/System.Reflection.xml",
  7249. "ref/netstandard1.5/ru/System.Reflection.xml",
  7250. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7251. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7252. "ref/portable-net45+win8+wp8+wpa81/_._",
  7253. "ref/win8/_._",
  7254. "ref/wp80/_._",
  7255. "ref/wpa81/_._",
  7256. "ref/xamarinios10/_._",
  7257. "ref/xamarinmac20/_._",
  7258. "ref/xamarintvos10/_._",
  7259. "ref/xamarinwatchos10/_._",
  7260. "system.reflection.4.3.0.nupkg.sha512",
  7261. "system.reflection.nuspec"
  7262. ]
  7263. },
  7264. "System.Reflection.DispatchProxy/4.4.0": {
  7265. "sha512": "xK6JE0mpsBD+T0qu3V6dmVRa06PxAvIIM/zSjouqP7Sk6X+FQj+9XFRz9GmZk9aJGMU1LX6AgTZIlsYZ64QKsw==",
  7266. "type": "package",
  7267. "path": "system.reflection.dispatchproxy/4.4.0",
  7268. "files": [
  7269. ".nupkg.metadata",
  7270. ".signature.p7s",
  7271. "LICENSE.TXT",
  7272. "THIRD-PARTY-NOTICES.TXT",
  7273. "lib/MonoAndroid10/_._",
  7274. "lib/MonoTouch10/_._",
  7275. "lib/net461/System.Reflection.DispatchProxy.dll",
  7276. "lib/netcoreapp2.0/_._",
  7277. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7278. "lib/netstandard2.0/System.Reflection.DispatchProxy.dll",
  7279. "lib/xamarinios10/_._",
  7280. "lib/xamarinmac20/_._",
  7281. "lib/xamarintvos10/_._",
  7282. "lib/xamarinwatchos10/_._",
  7283. "ref/MonoAndroid10/_._",
  7284. "ref/MonoTouch10/_._",
  7285. "ref/netcoreapp2.0/_._",
  7286. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7287. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  7288. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  7289. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  7290. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  7291. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  7292. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  7293. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  7294. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  7295. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  7296. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  7297. "ref/netstandard2.0/System.Reflection.DispatchProxy.dll",
  7298. "ref/netstandard2.0/System.Reflection.DispatchProxy.xml",
  7299. "ref/xamarinios10/_._",
  7300. "ref/xamarinmac20/_._",
  7301. "ref/xamarintvos10/_._",
  7302. "ref/xamarinwatchos10/_._",
  7303. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
  7304. "system.reflection.dispatchproxy.4.4.0.nupkg.sha512",
  7305. "system.reflection.dispatchproxy.nuspec",
  7306. "useSharedDesignerContext.txt",
  7307. "version.txt"
  7308. ]
  7309. },
  7310. "System.Reflection.Emit/4.3.0": {
  7311. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7312. "type": "package",
  7313. "path": "system.reflection.emit/4.3.0",
  7314. "files": [
  7315. ".nupkg.metadata",
  7316. ".signature.p7s",
  7317. "ThirdPartyNotices.txt",
  7318. "dotnet_library_license.txt",
  7319. "lib/MonoAndroid10/_._",
  7320. "lib/monotouch10/_._",
  7321. "lib/net45/_._",
  7322. "lib/netcore50/System.Reflection.Emit.dll",
  7323. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7324. "lib/xamarinios10/_._",
  7325. "lib/xamarinmac20/_._",
  7326. "lib/xamarintvos10/_._",
  7327. "lib/xamarinwatchos10/_._",
  7328. "ref/MonoAndroid10/_._",
  7329. "ref/net45/_._",
  7330. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7331. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7332. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7333. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7334. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7335. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7336. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7337. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7338. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7339. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7340. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7341. "ref/xamarinmac20/_._",
  7342. "system.reflection.emit.4.3.0.nupkg.sha512",
  7343. "system.reflection.emit.nuspec"
  7344. ]
  7345. },
  7346. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7347. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7348. "type": "package",
  7349. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7350. "files": [
  7351. ".nupkg.metadata",
  7352. ".signature.p7s",
  7353. "ThirdPartyNotices.txt",
  7354. "dotnet_library_license.txt",
  7355. "lib/MonoAndroid10/_._",
  7356. "lib/MonoTouch10/_._",
  7357. "lib/net45/_._",
  7358. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7359. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7360. "lib/portable-net45+wp8/_._",
  7361. "lib/wp80/_._",
  7362. "lib/xamarinios10/_._",
  7363. "lib/xamarinmac20/_._",
  7364. "lib/xamarintvos10/_._",
  7365. "lib/xamarinwatchos10/_._",
  7366. "ref/MonoAndroid10/_._",
  7367. "ref/MonoTouch10/_._",
  7368. "ref/net45/_._",
  7369. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7370. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7371. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7372. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7373. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7374. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7375. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7376. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7377. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7378. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7379. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7380. "ref/portable-net45+wp8/_._",
  7381. "ref/wp80/_._",
  7382. "ref/xamarinios10/_._",
  7383. "ref/xamarinmac20/_._",
  7384. "ref/xamarintvos10/_._",
  7385. "ref/xamarinwatchos10/_._",
  7386. "runtimes/aot/lib/netcore50/_._",
  7387. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7388. "system.reflection.emit.ilgeneration.nuspec"
  7389. ]
  7390. },
  7391. "System.Reflection.Emit.Lightweight/4.3.0": {
  7392. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7393. "type": "package",
  7394. "path": "system.reflection.emit.lightweight/4.3.0",
  7395. "files": [
  7396. ".nupkg.metadata",
  7397. ".signature.p7s",
  7398. "ThirdPartyNotices.txt",
  7399. "dotnet_library_license.txt",
  7400. "lib/MonoAndroid10/_._",
  7401. "lib/MonoTouch10/_._",
  7402. "lib/net45/_._",
  7403. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7404. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7405. "lib/portable-net45+wp8/_._",
  7406. "lib/wp80/_._",
  7407. "lib/xamarinios10/_._",
  7408. "lib/xamarinmac20/_._",
  7409. "lib/xamarintvos10/_._",
  7410. "lib/xamarinwatchos10/_._",
  7411. "ref/MonoAndroid10/_._",
  7412. "ref/MonoTouch10/_._",
  7413. "ref/net45/_._",
  7414. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7415. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7416. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7417. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7418. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7419. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7420. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7421. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7422. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7423. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7424. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7425. "ref/portable-net45+wp8/_._",
  7426. "ref/wp80/_._",
  7427. "ref/xamarinios10/_._",
  7428. "ref/xamarinmac20/_._",
  7429. "ref/xamarintvos10/_._",
  7430. "ref/xamarinwatchos10/_._",
  7431. "runtimes/aot/lib/netcore50/_._",
  7432. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7433. "system.reflection.emit.lightweight.nuspec"
  7434. ]
  7435. },
  7436. "System.Reflection.Extensions/4.3.0": {
  7437. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7438. "type": "package",
  7439. "path": "system.reflection.extensions/4.3.0",
  7440. "files": [
  7441. ".nupkg.metadata",
  7442. ".signature.p7s",
  7443. "ThirdPartyNotices.txt",
  7444. "dotnet_library_license.txt",
  7445. "lib/MonoAndroid10/_._",
  7446. "lib/MonoTouch10/_._",
  7447. "lib/net45/_._",
  7448. "lib/portable-net45+win8+wp8+wpa81/_._",
  7449. "lib/win8/_._",
  7450. "lib/wp80/_._",
  7451. "lib/wpa81/_._",
  7452. "lib/xamarinios10/_._",
  7453. "lib/xamarinmac20/_._",
  7454. "lib/xamarintvos10/_._",
  7455. "lib/xamarinwatchos10/_._",
  7456. "ref/MonoAndroid10/_._",
  7457. "ref/MonoTouch10/_._",
  7458. "ref/net45/_._",
  7459. "ref/netcore50/System.Reflection.Extensions.dll",
  7460. "ref/netcore50/System.Reflection.Extensions.xml",
  7461. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7462. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7463. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7464. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7465. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7466. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7467. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7468. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7469. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7470. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7471. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7472. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7473. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7474. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7475. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7476. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7477. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7478. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7479. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7480. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7481. "ref/portable-net45+win8+wp8+wpa81/_._",
  7482. "ref/win8/_._",
  7483. "ref/wp80/_._",
  7484. "ref/wpa81/_._",
  7485. "ref/xamarinios10/_._",
  7486. "ref/xamarinmac20/_._",
  7487. "ref/xamarintvos10/_._",
  7488. "ref/xamarinwatchos10/_._",
  7489. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7490. "system.reflection.extensions.nuspec"
  7491. ]
  7492. },
  7493. "System.Reflection.Primitives/4.3.0": {
  7494. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7495. "type": "package",
  7496. "path": "system.reflection.primitives/4.3.0",
  7497. "files": [
  7498. ".nupkg.metadata",
  7499. ".signature.p7s",
  7500. "ThirdPartyNotices.txt",
  7501. "dotnet_library_license.txt",
  7502. "lib/MonoAndroid10/_._",
  7503. "lib/MonoTouch10/_._",
  7504. "lib/net45/_._",
  7505. "lib/portable-net45+win8+wp8+wpa81/_._",
  7506. "lib/win8/_._",
  7507. "lib/wp80/_._",
  7508. "lib/wpa81/_._",
  7509. "lib/xamarinios10/_._",
  7510. "lib/xamarinmac20/_._",
  7511. "lib/xamarintvos10/_._",
  7512. "lib/xamarinwatchos10/_._",
  7513. "ref/MonoAndroid10/_._",
  7514. "ref/MonoTouch10/_._",
  7515. "ref/net45/_._",
  7516. "ref/netcore50/System.Reflection.Primitives.dll",
  7517. "ref/netcore50/System.Reflection.Primitives.xml",
  7518. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7519. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7520. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7521. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7522. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7523. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7524. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7525. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7526. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7527. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7528. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7529. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7530. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7531. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7532. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7533. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7534. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7535. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7536. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7537. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7538. "ref/portable-net45+win8+wp8+wpa81/_._",
  7539. "ref/win8/_._",
  7540. "ref/wp80/_._",
  7541. "ref/wpa81/_._",
  7542. "ref/xamarinios10/_._",
  7543. "ref/xamarinmac20/_._",
  7544. "ref/xamarintvos10/_._",
  7545. "ref/xamarinwatchos10/_._",
  7546. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7547. "system.reflection.primitives.nuspec"
  7548. ]
  7549. },
  7550. "System.Reflection.TypeExtensions/4.7.0": {
  7551. "sha512": "VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==",
  7552. "type": "package",
  7553. "path": "system.reflection.typeextensions/4.7.0",
  7554. "files": [
  7555. ".nupkg.metadata",
  7556. ".signature.p7s",
  7557. "LICENSE.TXT",
  7558. "THIRD-PARTY-NOTICES.TXT",
  7559. "lib/MonoAndroid10/_._",
  7560. "lib/MonoTouch10/_._",
  7561. "lib/net46/System.Reflection.TypeExtensions.dll",
  7562. "lib/net461/System.Reflection.TypeExtensions.dll",
  7563. "lib/net461/System.Reflection.TypeExtensions.xml",
  7564. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7565. "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll",
  7566. "lib/netcoreapp2.0/_._",
  7567. "lib/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7568. "lib/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7569. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7570. "lib/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7571. "lib/netstandard2.0/System.Reflection.TypeExtensions.dll",
  7572. "lib/netstandard2.0/System.Reflection.TypeExtensions.xml",
  7573. "lib/uap10.0.16299/_._",
  7574. "lib/xamarinios10/_._",
  7575. "lib/xamarinmac20/_._",
  7576. "lib/xamarintvos10/_._",
  7577. "lib/xamarinwatchos10/_._",
  7578. "ref/MonoAndroid10/_._",
  7579. "ref/MonoTouch10/_._",
  7580. "ref/net46/System.Reflection.TypeExtensions.dll",
  7581. "ref/net461/System.Reflection.TypeExtensions.dll",
  7582. "ref/net461/System.Reflection.TypeExtensions.xml",
  7583. "ref/net472/System.Reflection.TypeExtensions.dll",
  7584. "ref/net472/System.Reflection.TypeExtensions.xml",
  7585. "ref/netcoreapp2.0/_._",
  7586. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7587. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7588. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7589. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7590. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7591. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7592. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7593. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7594. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7595. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7596. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7597. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7598. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7599. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7600. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7601. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7602. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7603. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7604. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7605. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7606. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7607. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7608. "ref/netstandard2.0/System.Reflection.TypeExtensions.dll",
  7609. "ref/netstandard2.0/System.Reflection.TypeExtensions.xml",
  7610. "ref/uap10.0.16299/_._",
  7611. "ref/xamarinios10/_._",
  7612. "ref/xamarinmac20/_._",
  7613. "ref/xamarintvos10/_._",
  7614. "ref/xamarinwatchos10/_._",
  7615. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7616. "runtimes/aot/lib/uap10.0.16299/_._",
  7617. "system.reflection.typeextensions.4.7.0.nupkg.sha512",
  7618. "system.reflection.typeextensions.nuspec",
  7619. "useSharedDesignerContext.txt",
  7620. "version.txt"
  7621. ]
  7622. },
  7623. "System.Resources.ResourceManager/4.3.0": {
  7624. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7625. "type": "package",
  7626. "path": "system.resources.resourcemanager/4.3.0",
  7627. "files": [
  7628. ".nupkg.metadata",
  7629. ".signature.p7s",
  7630. "ThirdPartyNotices.txt",
  7631. "dotnet_library_license.txt",
  7632. "lib/MonoAndroid10/_._",
  7633. "lib/MonoTouch10/_._",
  7634. "lib/net45/_._",
  7635. "lib/portable-net45+win8+wp8+wpa81/_._",
  7636. "lib/win8/_._",
  7637. "lib/wp80/_._",
  7638. "lib/wpa81/_._",
  7639. "lib/xamarinios10/_._",
  7640. "lib/xamarinmac20/_._",
  7641. "lib/xamarintvos10/_._",
  7642. "lib/xamarinwatchos10/_._",
  7643. "ref/MonoAndroid10/_._",
  7644. "ref/MonoTouch10/_._",
  7645. "ref/net45/_._",
  7646. "ref/netcore50/System.Resources.ResourceManager.dll",
  7647. "ref/netcore50/System.Resources.ResourceManager.xml",
  7648. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7649. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7650. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7651. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7652. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7653. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7654. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7655. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7656. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7657. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7658. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7659. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7660. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7661. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7662. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7663. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7664. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7665. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7666. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7667. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7668. "ref/portable-net45+win8+wp8+wpa81/_._",
  7669. "ref/win8/_._",
  7670. "ref/wp80/_._",
  7671. "ref/wpa81/_._",
  7672. "ref/xamarinios10/_._",
  7673. "ref/xamarinmac20/_._",
  7674. "ref/xamarintvos10/_._",
  7675. "ref/xamarinwatchos10/_._",
  7676. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7677. "system.resources.resourcemanager.nuspec"
  7678. ]
  7679. },
  7680. "System.Runtime/4.3.0": {
  7681. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7682. "type": "package",
  7683. "path": "system.runtime/4.3.0",
  7684. "files": [
  7685. ".nupkg.metadata",
  7686. ".signature.p7s",
  7687. "ThirdPartyNotices.txt",
  7688. "dotnet_library_license.txt",
  7689. "lib/MonoAndroid10/_._",
  7690. "lib/MonoTouch10/_._",
  7691. "lib/net45/_._",
  7692. "lib/net462/System.Runtime.dll",
  7693. "lib/portable-net45+win8+wp80+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/net462/System.Runtime.dll",
  7705. "ref/netcore50/System.Runtime.dll",
  7706. "ref/netcore50/System.Runtime.xml",
  7707. "ref/netcore50/de/System.Runtime.xml",
  7708. "ref/netcore50/es/System.Runtime.xml",
  7709. "ref/netcore50/fr/System.Runtime.xml",
  7710. "ref/netcore50/it/System.Runtime.xml",
  7711. "ref/netcore50/ja/System.Runtime.xml",
  7712. "ref/netcore50/ko/System.Runtime.xml",
  7713. "ref/netcore50/ru/System.Runtime.xml",
  7714. "ref/netcore50/zh-hans/System.Runtime.xml",
  7715. "ref/netcore50/zh-hant/System.Runtime.xml",
  7716. "ref/netstandard1.0/System.Runtime.dll",
  7717. "ref/netstandard1.0/System.Runtime.xml",
  7718. "ref/netstandard1.0/de/System.Runtime.xml",
  7719. "ref/netstandard1.0/es/System.Runtime.xml",
  7720. "ref/netstandard1.0/fr/System.Runtime.xml",
  7721. "ref/netstandard1.0/it/System.Runtime.xml",
  7722. "ref/netstandard1.0/ja/System.Runtime.xml",
  7723. "ref/netstandard1.0/ko/System.Runtime.xml",
  7724. "ref/netstandard1.0/ru/System.Runtime.xml",
  7725. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7726. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7727. "ref/netstandard1.2/System.Runtime.dll",
  7728. "ref/netstandard1.2/System.Runtime.xml",
  7729. "ref/netstandard1.2/de/System.Runtime.xml",
  7730. "ref/netstandard1.2/es/System.Runtime.xml",
  7731. "ref/netstandard1.2/fr/System.Runtime.xml",
  7732. "ref/netstandard1.2/it/System.Runtime.xml",
  7733. "ref/netstandard1.2/ja/System.Runtime.xml",
  7734. "ref/netstandard1.2/ko/System.Runtime.xml",
  7735. "ref/netstandard1.2/ru/System.Runtime.xml",
  7736. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7737. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7738. "ref/netstandard1.3/System.Runtime.dll",
  7739. "ref/netstandard1.3/System.Runtime.xml",
  7740. "ref/netstandard1.3/de/System.Runtime.xml",
  7741. "ref/netstandard1.3/es/System.Runtime.xml",
  7742. "ref/netstandard1.3/fr/System.Runtime.xml",
  7743. "ref/netstandard1.3/it/System.Runtime.xml",
  7744. "ref/netstandard1.3/ja/System.Runtime.xml",
  7745. "ref/netstandard1.3/ko/System.Runtime.xml",
  7746. "ref/netstandard1.3/ru/System.Runtime.xml",
  7747. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7748. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7749. "ref/netstandard1.5/System.Runtime.dll",
  7750. "ref/netstandard1.5/System.Runtime.xml",
  7751. "ref/netstandard1.5/de/System.Runtime.xml",
  7752. "ref/netstandard1.5/es/System.Runtime.xml",
  7753. "ref/netstandard1.5/fr/System.Runtime.xml",
  7754. "ref/netstandard1.5/it/System.Runtime.xml",
  7755. "ref/netstandard1.5/ja/System.Runtime.xml",
  7756. "ref/netstandard1.5/ko/System.Runtime.xml",
  7757. "ref/netstandard1.5/ru/System.Runtime.xml",
  7758. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7759. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7760. "ref/portable-net45+win8+wp80+wpa81/_._",
  7761. "ref/win8/_._",
  7762. "ref/wp80/_._",
  7763. "ref/wpa81/_._",
  7764. "ref/xamarinios10/_._",
  7765. "ref/xamarinmac20/_._",
  7766. "ref/xamarintvos10/_._",
  7767. "ref/xamarinwatchos10/_._",
  7768. "system.runtime.4.3.0.nupkg.sha512",
  7769. "system.runtime.nuspec"
  7770. ]
  7771. },
  7772. "System.Runtime.Extensions/4.3.0": {
  7773. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7774. "type": "package",
  7775. "path": "system.runtime.extensions/4.3.0",
  7776. "files": [
  7777. ".nupkg.metadata",
  7778. ".signature.p7s",
  7779. "ThirdPartyNotices.txt",
  7780. "dotnet_library_license.txt",
  7781. "lib/MonoAndroid10/_._",
  7782. "lib/MonoTouch10/_._",
  7783. "lib/net45/_._",
  7784. "lib/net462/System.Runtime.Extensions.dll",
  7785. "lib/portable-net45+win8+wp8+wpa81/_._",
  7786. "lib/win8/_._",
  7787. "lib/wp80/_._",
  7788. "lib/wpa81/_._",
  7789. "lib/xamarinios10/_._",
  7790. "lib/xamarinmac20/_._",
  7791. "lib/xamarintvos10/_._",
  7792. "lib/xamarinwatchos10/_._",
  7793. "ref/MonoAndroid10/_._",
  7794. "ref/MonoTouch10/_._",
  7795. "ref/net45/_._",
  7796. "ref/net462/System.Runtime.Extensions.dll",
  7797. "ref/netcore50/System.Runtime.Extensions.dll",
  7798. "ref/netcore50/System.Runtime.Extensions.xml",
  7799. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7800. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7801. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7802. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7803. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7804. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7805. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7806. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7807. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7808. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7809. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7810. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7811. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7812. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7813. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7814. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7815. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7816. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7817. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7818. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7819. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7820. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7821. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7822. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7823. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7824. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7825. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7826. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7827. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7828. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7829. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7830. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7831. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7832. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7833. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7834. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7835. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7836. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7837. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7838. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7839. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7840. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7841. "ref/portable-net45+win8+wp8+wpa81/_._",
  7842. "ref/win8/_._",
  7843. "ref/wp80/_._",
  7844. "ref/wpa81/_._",
  7845. "ref/xamarinios10/_._",
  7846. "ref/xamarinmac20/_._",
  7847. "ref/xamarintvos10/_._",
  7848. "ref/xamarinwatchos10/_._",
  7849. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7850. "system.runtime.extensions.nuspec"
  7851. ]
  7852. },
  7853. "System.Runtime.Handles/4.3.0": {
  7854. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7855. "type": "package",
  7856. "path": "system.runtime.handles/4.3.0",
  7857. "files": [
  7858. ".nupkg.metadata",
  7859. ".signature.p7s",
  7860. "ThirdPartyNotices.txt",
  7861. "dotnet_library_license.txt",
  7862. "lib/MonoAndroid10/_._",
  7863. "lib/MonoTouch10/_._",
  7864. "lib/net46/_._",
  7865. "lib/xamarinios10/_._",
  7866. "lib/xamarinmac20/_._",
  7867. "lib/xamarintvos10/_._",
  7868. "lib/xamarinwatchos10/_._",
  7869. "ref/MonoAndroid10/_._",
  7870. "ref/MonoTouch10/_._",
  7871. "ref/net46/_._",
  7872. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7873. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7874. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7875. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7876. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7877. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7878. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7879. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7880. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7881. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7882. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7883. "ref/xamarinios10/_._",
  7884. "ref/xamarinmac20/_._",
  7885. "ref/xamarintvos10/_._",
  7886. "ref/xamarinwatchos10/_._",
  7887. "system.runtime.handles.4.3.0.nupkg.sha512",
  7888. "system.runtime.handles.nuspec"
  7889. ]
  7890. },
  7891. "System.Runtime.InteropServices/4.3.0": {
  7892. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7893. "type": "package",
  7894. "path": "system.runtime.interopservices/4.3.0",
  7895. "files": [
  7896. ".nupkg.metadata",
  7897. ".signature.p7s",
  7898. "ThirdPartyNotices.txt",
  7899. "dotnet_library_license.txt",
  7900. "lib/MonoAndroid10/_._",
  7901. "lib/MonoTouch10/_._",
  7902. "lib/net45/_._",
  7903. "lib/net462/System.Runtime.InteropServices.dll",
  7904. "lib/net463/System.Runtime.InteropServices.dll",
  7905. "lib/portable-net45+win8+wpa81/_._",
  7906. "lib/win8/_._",
  7907. "lib/wpa81/_._",
  7908. "lib/xamarinios10/_._",
  7909. "lib/xamarinmac20/_._",
  7910. "lib/xamarintvos10/_._",
  7911. "lib/xamarinwatchos10/_._",
  7912. "ref/MonoAndroid10/_._",
  7913. "ref/MonoTouch10/_._",
  7914. "ref/net45/_._",
  7915. "ref/net462/System.Runtime.InteropServices.dll",
  7916. "ref/net463/System.Runtime.InteropServices.dll",
  7917. "ref/netcore50/System.Runtime.InteropServices.dll",
  7918. "ref/netcore50/System.Runtime.InteropServices.xml",
  7919. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7920. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7921. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7922. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7923. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7924. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7925. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7926. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7927. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7928. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7929. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7930. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7931. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7932. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7933. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7934. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7935. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7936. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7937. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7938. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7939. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7940. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7941. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7942. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7943. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7944. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7945. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7946. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7947. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7948. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7949. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7950. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7951. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7952. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7953. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7954. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7955. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7956. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7957. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7958. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7959. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7960. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7961. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7962. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7963. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7964. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7965. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7966. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7967. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7968. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7969. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7970. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7971. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7972. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7973. "ref/portable-net45+win8+wpa81/_._",
  7974. "ref/win8/_._",
  7975. "ref/wpa81/_._",
  7976. "ref/xamarinios10/_._",
  7977. "ref/xamarinmac20/_._",
  7978. "ref/xamarintvos10/_._",
  7979. "ref/xamarinwatchos10/_._",
  7980. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7981. "system.runtime.interopservices.nuspec"
  7982. ]
  7983. },
  7984. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7985. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7986. "type": "package",
  7987. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7988. "files": [
  7989. ".nupkg.metadata",
  7990. ".signature.p7s",
  7991. "ThirdPartyNotices.txt",
  7992. "dotnet_library_license.txt",
  7993. "lib/MonoAndroid10/_._",
  7994. "lib/MonoTouch10/_._",
  7995. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7996. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7997. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7998. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7999. "lib/xamarinios10/_._",
  8000. "lib/xamarinmac20/_._",
  8001. "lib/xamarintvos10/_._",
  8002. "lib/xamarinwatchos10/_._",
  8003. "ref/MonoAndroid10/_._",
  8004. "ref/MonoTouch10/_._",
  8005. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8006. "ref/xamarinios10/_._",
  8007. "ref/xamarinmac20/_._",
  8008. "ref/xamarintvos10/_._",
  8009. "ref/xamarinwatchos10/_._",
  8010. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8011. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8012. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8013. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8014. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8015. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8016. "system.runtime.interopservices.runtimeinformation.nuspec"
  8017. ]
  8018. },
  8019. "System.Runtime.Loader/4.3.0": {
  8020. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  8021. "type": "package",
  8022. "path": "system.runtime.loader/4.3.0",
  8023. "files": [
  8024. ".nupkg.metadata",
  8025. ".signature.p7s",
  8026. "ThirdPartyNotices.txt",
  8027. "dotnet_library_license.txt",
  8028. "lib/MonoAndroid10/_._",
  8029. "lib/MonoTouch10/_._",
  8030. "lib/net462/_._",
  8031. "lib/netstandard1.5/System.Runtime.Loader.dll",
  8032. "lib/xamarinios10/_._",
  8033. "lib/xamarinmac20/_._",
  8034. "lib/xamarintvos10/_._",
  8035. "lib/xamarinwatchos10/_._",
  8036. "ref/netstandard1.5/System.Runtime.Loader.dll",
  8037. "ref/netstandard1.5/System.Runtime.Loader.xml",
  8038. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  8039. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  8040. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  8041. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  8042. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  8043. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  8044. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  8045. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8046. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  8047. "system.runtime.loader.4.3.0.nupkg.sha512",
  8048. "system.runtime.loader.nuspec"
  8049. ]
  8050. },
  8051. "System.Runtime.Numerics/4.3.0": {
  8052. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8053. "type": "package",
  8054. "path": "system.runtime.numerics/4.3.0",
  8055. "files": [
  8056. ".nupkg.metadata",
  8057. ".signature.p7s",
  8058. "ThirdPartyNotices.txt",
  8059. "dotnet_library_license.txt",
  8060. "lib/MonoAndroid10/_._",
  8061. "lib/MonoTouch10/_._",
  8062. "lib/net45/_._",
  8063. "lib/netcore50/System.Runtime.Numerics.dll",
  8064. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8065. "lib/portable-net45+win8+wpa81/_._",
  8066. "lib/win8/_._",
  8067. "lib/wpa81/_._",
  8068. "lib/xamarinios10/_._",
  8069. "lib/xamarinmac20/_._",
  8070. "lib/xamarintvos10/_._",
  8071. "lib/xamarinwatchos10/_._",
  8072. "ref/MonoAndroid10/_._",
  8073. "ref/MonoTouch10/_._",
  8074. "ref/net45/_._",
  8075. "ref/netcore50/System.Runtime.Numerics.dll",
  8076. "ref/netcore50/System.Runtime.Numerics.xml",
  8077. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8078. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8079. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8080. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8081. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8082. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8083. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8084. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8085. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8086. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8087. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8088. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8089. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8090. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8091. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8092. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8093. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8094. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8095. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8096. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8097. "ref/portable-net45+win8+wpa81/_._",
  8098. "ref/win8/_._",
  8099. "ref/wpa81/_._",
  8100. "ref/xamarinios10/_._",
  8101. "ref/xamarinmac20/_._",
  8102. "ref/xamarintvos10/_._",
  8103. "ref/xamarinwatchos10/_._",
  8104. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8105. "system.runtime.numerics.nuspec"
  8106. ]
  8107. },
  8108. "System.Runtime.Serialization.Formatters/4.3.0": {
  8109. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  8110. "type": "package",
  8111. "path": "system.runtime.serialization.formatters/4.3.0",
  8112. "files": [
  8113. ".nupkg.metadata",
  8114. ".signature.p7s",
  8115. "ThirdPartyNotices.txt",
  8116. "dotnet_library_license.txt",
  8117. "lib/MonoAndroid10/_._",
  8118. "lib/MonoTouch10/_._",
  8119. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  8120. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  8121. "lib/xamarinios10/_._",
  8122. "lib/xamarinmac20/_._",
  8123. "lib/xamarintvos10/_._",
  8124. "lib/xamarinwatchos10/_._",
  8125. "ref/MonoAndroid10/_._",
  8126. "ref/MonoTouch10/_._",
  8127. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  8128. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  8129. "ref/xamarinios10/_._",
  8130. "ref/xamarinmac20/_._",
  8131. "ref/xamarintvos10/_._",
  8132. "ref/xamarinwatchos10/_._",
  8133. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  8134. "system.runtime.serialization.formatters.nuspec"
  8135. ]
  8136. },
  8137. "System.Runtime.Serialization.Primitives/4.3.0": {
  8138. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  8139. "type": "package",
  8140. "path": "system.runtime.serialization.primitives/4.3.0",
  8141. "files": [
  8142. ".nupkg.metadata",
  8143. ".signature.p7s",
  8144. "ThirdPartyNotices.txt",
  8145. "dotnet_library_license.txt",
  8146. "lib/MonoAndroid10/_._",
  8147. "lib/MonoTouch10/_._",
  8148. "lib/net45/_._",
  8149. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8150. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8151. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8152. "lib/portable-net45+win8+wp8+wpa81/_._",
  8153. "lib/win8/_._",
  8154. "lib/wp80/_._",
  8155. "lib/wpa81/_._",
  8156. "lib/xamarinios10/_._",
  8157. "lib/xamarinmac20/_._",
  8158. "lib/xamarintvos10/_._",
  8159. "lib/xamarinwatchos10/_._",
  8160. "ref/MonoAndroid10/_._",
  8161. "ref/MonoTouch10/_._",
  8162. "ref/net45/_._",
  8163. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8164. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8165. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8166. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8167. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8168. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8169. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8170. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8171. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8172. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8173. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8174. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8175. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8176. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8177. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8178. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8179. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8180. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8181. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8182. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8183. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8184. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8185. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8186. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8187. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8188. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8189. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8190. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8191. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8192. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8193. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8194. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8195. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8196. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8197. "ref/portable-net45+win8+wp8+wpa81/_._",
  8198. "ref/win8/_._",
  8199. "ref/wp80/_._",
  8200. "ref/wpa81/_._",
  8201. "ref/xamarinios10/_._",
  8202. "ref/xamarinmac20/_._",
  8203. "ref/xamarintvos10/_._",
  8204. "ref/xamarinwatchos10/_._",
  8205. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8206. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  8207. "system.runtime.serialization.primitives.nuspec"
  8208. ]
  8209. },
  8210. "System.Security.AccessControl/4.7.0": {
  8211. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  8212. "type": "package",
  8213. "path": "system.security.accesscontrol/4.7.0",
  8214. "files": [
  8215. ".nupkg.metadata",
  8216. ".signature.p7s",
  8217. "LICENSE.TXT",
  8218. "THIRD-PARTY-NOTICES.TXT",
  8219. "lib/net46/System.Security.AccessControl.dll",
  8220. "lib/net461/System.Security.AccessControl.dll",
  8221. "lib/net461/System.Security.AccessControl.xml",
  8222. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8223. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8224. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8225. "lib/uap10.0.16299/_._",
  8226. "ref/net46/System.Security.AccessControl.dll",
  8227. "ref/net461/System.Security.AccessControl.dll",
  8228. "ref/net461/System.Security.AccessControl.xml",
  8229. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8230. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8231. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8232. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8233. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8234. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8235. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8236. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8237. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8238. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8239. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8240. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8241. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8242. "ref/uap10.0.16299/_._",
  8243. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8244. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8245. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8246. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8247. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8248. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8249. "runtimes/win/lib/uap10.0.16299/_._",
  8250. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  8251. "system.security.accesscontrol.nuspec",
  8252. "useSharedDesignerContext.txt",
  8253. "version.txt"
  8254. ]
  8255. },
  8256. "System.Security.Cryptography.Algorithms/4.3.1": {
  8257. "sha512": "DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==",
  8258. "type": "package",
  8259. "path": "system.security.cryptography.algorithms/4.3.1",
  8260. "files": [
  8261. ".nupkg.metadata",
  8262. ".signature.p7s",
  8263. "ThirdPartyNotices.txt",
  8264. "dotnet_library_license.txt",
  8265. "lib/MonoAndroid10/_._",
  8266. "lib/MonoTouch10/_._",
  8267. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8268. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8269. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8270. "lib/xamarinios10/_._",
  8271. "lib/xamarinmac20/_._",
  8272. "lib/xamarintvos10/_._",
  8273. "lib/xamarinwatchos10/_._",
  8274. "ref/MonoAndroid10/_._",
  8275. "ref/MonoTouch10/_._",
  8276. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8277. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8278. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8279. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8280. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8281. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8282. "ref/xamarinios10/_._",
  8283. "ref/xamarinmac20/_._",
  8284. "ref/xamarintvos10/_._",
  8285. "ref/xamarinwatchos10/_._",
  8286. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8287. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8288. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8289. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8290. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8291. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8292. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8293. "system.security.cryptography.algorithms.4.3.1.nupkg.sha512",
  8294. "system.security.cryptography.algorithms.nuspec"
  8295. ]
  8296. },
  8297. "System.Security.Cryptography.Cng/4.5.0": {
  8298. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8299. "type": "package",
  8300. "path": "system.security.cryptography.cng/4.5.0",
  8301. "files": [
  8302. ".nupkg.metadata",
  8303. ".signature.p7s",
  8304. "LICENSE.TXT",
  8305. "THIRD-PARTY-NOTICES.TXT",
  8306. "lib/MonoAndroid10/_._",
  8307. "lib/MonoTouch10/_._",
  8308. "lib/net46/System.Security.Cryptography.Cng.dll",
  8309. "lib/net461/System.Security.Cryptography.Cng.dll",
  8310. "lib/net462/System.Security.Cryptography.Cng.dll",
  8311. "lib/net47/System.Security.Cryptography.Cng.dll",
  8312. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8313. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8314. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8315. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8316. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8317. "lib/uap10.0.16299/_._",
  8318. "lib/xamarinios10/_._",
  8319. "lib/xamarinmac20/_._",
  8320. "lib/xamarintvos10/_._",
  8321. "lib/xamarinwatchos10/_._",
  8322. "ref/MonoAndroid10/_._",
  8323. "ref/MonoTouch10/_._",
  8324. "ref/net46/System.Security.Cryptography.Cng.dll",
  8325. "ref/net461/System.Security.Cryptography.Cng.dll",
  8326. "ref/net461/System.Security.Cryptography.Cng.xml",
  8327. "ref/net462/System.Security.Cryptography.Cng.dll",
  8328. "ref/net462/System.Security.Cryptography.Cng.xml",
  8329. "ref/net47/System.Security.Cryptography.Cng.dll",
  8330. "ref/net47/System.Security.Cryptography.Cng.xml",
  8331. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8332. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8333. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8334. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8335. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8336. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8337. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8338. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8339. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8340. "ref/uap10.0.16299/_._",
  8341. "ref/xamarinios10/_._",
  8342. "ref/xamarinmac20/_._",
  8343. "ref/xamarintvos10/_._",
  8344. "ref/xamarinwatchos10/_._",
  8345. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8346. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8347. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8348. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8349. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8350. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8351. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8352. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8353. "runtimes/win/lib/uap10.0.16299/_._",
  8354. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8355. "system.security.cryptography.cng.nuspec",
  8356. "useSharedDesignerContext.txt",
  8357. "version.txt"
  8358. ]
  8359. },
  8360. "System.Security.Cryptography.Csp/4.3.0": {
  8361. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8362. "type": "package",
  8363. "path": "system.security.cryptography.csp/4.3.0",
  8364. "files": [
  8365. ".nupkg.metadata",
  8366. ".signature.p7s",
  8367. "ThirdPartyNotices.txt",
  8368. "dotnet_library_license.txt",
  8369. "lib/MonoAndroid10/_._",
  8370. "lib/MonoTouch10/_._",
  8371. "lib/net46/System.Security.Cryptography.Csp.dll",
  8372. "lib/xamarinios10/_._",
  8373. "lib/xamarinmac20/_._",
  8374. "lib/xamarintvos10/_._",
  8375. "lib/xamarinwatchos10/_._",
  8376. "ref/MonoAndroid10/_._",
  8377. "ref/MonoTouch10/_._",
  8378. "ref/net46/System.Security.Cryptography.Csp.dll",
  8379. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8380. "ref/xamarinios10/_._",
  8381. "ref/xamarinmac20/_._",
  8382. "ref/xamarintvos10/_._",
  8383. "ref/xamarinwatchos10/_._",
  8384. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8385. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8386. "runtimes/win/lib/netcore50/_._",
  8387. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8388. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8389. "system.security.cryptography.csp.nuspec"
  8390. ]
  8391. },
  8392. "System.Security.Cryptography.Encoding/4.3.0": {
  8393. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8394. "type": "package",
  8395. "path": "system.security.cryptography.encoding/4.3.0",
  8396. "files": [
  8397. ".nupkg.metadata",
  8398. ".signature.p7s",
  8399. "ThirdPartyNotices.txt",
  8400. "dotnet_library_license.txt",
  8401. "lib/MonoAndroid10/_._",
  8402. "lib/MonoTouch10/_._",
  8403. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8404. "lib/xamarinios10/_._",
  8405. "lib/xamarinmac20/_._",
  8406. "lib/xamarintvos10/_._",
  8407. "lib/xamarinwatchos10/_._",
  8408. "ref/MonoAndroid10/_._",
  8409. "ref/MonoTouch10/_._",
  8410. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8411. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8412. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8413. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8414. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8415. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8416. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8417. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8418. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8419. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8420. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8421. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8422. "ref/xamarinios10/_._",
  8423. "ref/xamarinmac20/_._",
  8424. "ref/xamarintvos10/_._",
  8425. "ref/xamarinwatchos10/_._",
  8426. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8427. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8428. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8429. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8430. "system.security.cryptography.encoding.nuspec"
  8431. ]
  8432. },
  8433. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8434. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8435. "type": "package",
  8436. "path": "system.security.cryptography.openssl/4.3.0",
  8437. "files": [
  8438. ".nupkg.metadata",
  8439. ".signature.p7s",
  8440. "ThirdPartyNotices.txt",
  8441. "dotnet_library_license.txt",
  8442. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8443. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8444. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8445. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8446. "system.security.cryptography.openssl.nuspec"
  8447. ]
  8448. },
  8449. "System.Security.Cryptography.Primitives/4.3.0": {
  8450. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8451. "type": "package",
  8452. "path": "system.security.cryptography.primitives/4.3.0",
  8453. "files": [
  8454. ".nupkg.metadata",
  8455. ".signature.p7s",
  8456. "ThirdPartyNotices.txt",
  8457. "dotnet_library_license.txt",
  8458. "lib/MonoAndroid10/_._",
  8459. "lib/MonoTouch10/_._",
  8460. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8461. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8462. "lib/xamarinios10/_._",
  8463. "lib/xamarinmac20/_._",
  8464. "lib/xamarintvos10/_._",
  8465. "lib/xamarinwatchos10/_._",
  8466. "ref/MonoAndroid10/_._",
  8467. "ref/MonoTouch10/_._",
  8468. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8469. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8470. "ref/xamarinios10/_._",
  8471. "ref/xamarinmac20/_._",
  8472. "ref/xamarintvos10/_._",
  8473. "ref/xamarinwatchos10/_._",
  8474. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8475. "system.security.cryptography.primitives.nuspec"
  8476. ]
  8477. },
  8478. "System.Security.Cryptography.ProtectedData/4.7.0": {
  8479. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  8480. "type": "package",
  8481. "path": "system.security.cryptography.protecteddata/4.7.0",
  8482. "files": [
  8483. ".nupkg.metadata",
  8484. ".signature.p7s",
  8485. "LICENSE.TXT",
  8486. "THIRD-PARTY-NOTICES.TXT",
  8487. "lib/MonoAndroid10/_._",
  8488. "lib/MonoTouch10/_._",
  8489. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8490. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8491. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8492. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8493. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8494. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8495. "lib/xamarinios10/_._",
  8496. "lib/xamarinmac20/_._",
  8497. "lib/xamarintvos10/_._",
  8498. "lib/xamarinwatchos10/_._",
  8499. "ref/MonoAndroid10/_._",
  8500. "ref/MonoTouch10/_._",
  8501. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8502. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8503. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8504. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8505. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8506. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8507. "ref/xamarinios10/_._",
  8508. "ref/xamarinmac20/_._",
  8509. "ref/xamarintvos10/_._",
  8510. "ref/xamarinwatchos10/_._",
  8511. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8512. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8513. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8514. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8515. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8516. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8517. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  8518. "system.security.cryptography.protecteddata.nuspec",
  8519. "useSharedDesignerContext.txt",
  8520. "version.txt"
  8521. ]
  8522. },
  8523. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8524. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8525. "type": "package",
  8526. "path": "system.security.cryptography.x509certificates/4.3.0",
  8527. "files": [
  8528. ".nupkg.metadata",
  8529. ".signature.p7s",
  8530. "ThirdPartyNotices.txt",
  8531. "dotnet_library_license.txt",
  8532. "lib/MonoAndroid10/_._",
  8533. "lib/MonoTouch10/_._",
  8534. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8535. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8536. "lib/xamarinios10/_._",
  8537. "lib/xamarinmac20/_._",
  8538. "lib/xamarintvos10/_._",
  8539. "lib/xamarinwatchos10/_._",
  8540. "ref/MonoAndroid10/_._",
  8541. "ref/MonoTouch10/_._",
  8542. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8543. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8544. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8545. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8546. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8547. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8548. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8549. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8550. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8551. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8552. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8553. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8554. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8555. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8556. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8557. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8558. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8559. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8560. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8561. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8562. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8563. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8564. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8565. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8566. "ref/xamarinios10/_._",
  8567. "ref/xamarinmac20/_._",
  8568. "ref/xamarintvos10/_._",
  8569. "ref/xamarinwatchos10/_._",
  8570. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8571. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8572. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8573. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8574. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8575. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8576. "system.security.cryptography.x509certificates.nuspec"
  8577. ]
  8578. },
  8579. "System.Security.Permissions/4.7.0": {
  8580. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8581. "type": "package",
  8582. "path": "system.security.permissions/4.7.0",
  8583. "files": [
  8584. ".nupkg.metadata",
  8585. ".signature.p7s",
  8586. "LICENSE.TXT",
  8587. "THIRD-PARTY-NOTICES.TXT",
  8588. "lib/net461/System.Security.Permissions.dll",
  8589. "lib/net461/System.Security.Permissions.xml",
  8590. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8591. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8592. "lib/netstandard2.0/System.Security.Permissions.dll",
  8593. "lib/netstandard2.0/System.Security.Permissions.xml",
  8594. "ref/net461/System.Security.Permissions.dll",
  8595. "ref/net461/System.Security.Permissions.xml",
  8596. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8597. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8598. "ref/netstandard2.0/System.Security.Permissions.dll",
  8599. "ref/netstandard2.0/System.Security.Permissions.xml",
  8600. "system.security.permissions.4.7.0.nupkg.sha512",
  8601. "system.security.permissions.nuspec",
  8602. "useSharedDesignerContext.txt",
  8603. "version.txt"
  8604. ]
  8605. },
  8606. "System.Security.Principal.Windows/4.7.0": {
  8607. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8608. "type": "package",
  8609. "path": "system.security.principal.windows/4.7.0",
  8610. "files": [
  8611. ".nupkg.metadata",
  8612. ".signature.p7s",
  8613. "LICENSE.TXT",
  8614. "THIRD-PARTY-NOTICES.TXT",
  8615. "lib/net46/System.Security.Principal.Windows.dll",
  8616. "lib/net461/System.Security.Principal.Windows.dll",
  8617. "lib/net461/System.Security.Principal.Windows.xml",
  8618. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8619. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8620. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8621. "lib/uap10.0.16299/_._",
  8622. "ref/net46/System.Security.Principal.Windows.dll",
  8623. "ref/net461/System.Security.Principal.Windows.dll",
  8624. "ref/net461/System.Security.Principal.Windows.xml",
  8625. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8626. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8627. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8628. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8629. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8630. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8631. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8632. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8633. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8634. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8635. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8636. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8637. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8638. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8639. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8640. "ref/uap10.0.16299/_._",
  8641. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8642. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8643. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8644. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8645. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8646. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8647. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8648. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8649. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8650. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8651. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8652. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8653. "runtimes/win/lib/uap10.0.16299/_._",
  8654. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8655. "system.security.principal.windows.nuspec",
  8656. "useSharedDesignerContext.txt",
  8657. "version.txt"
  8658. ]
  8659. },
  8660. "System.ServiceModel.Duplex/4.4.4": {
  8661. "sha512": "y/XLnKJ+xnuEUjrgJkXeLKCH4A+EwkX2TdOcTdgsEtxWmWq1+RbCjMd0zIlyNrbGD+nM9BxNg9rLVWVAPq81RA==",
  8662. "type": "package",
  8663. "path": "system.servicemodel.duplex/4.4.4",
  8664. "files": [
  8665. ".nupkg.metadata",
  8666. ".signature.p7s",
  8667. "LICENSE.TXT",
  8668. "THIRD-PARTY-NOTICES.TXT",
  8669. "lib/MonoAndroid10/_._",
  8670. "lib/MonoTouch10/_._",
  8671. "lib/net45/_._",
  8672. "lib/net461/System.ServiceModel.Duplex.dll",
  8673. "lib/netcore50/System.ServiceModel.Duplex.dll",
  8674. "lib/netstandard1.3/System.ServiceModel.Duplex.dll",
  8675. "lib/netstandard2.0/System.ServiceModel.Duplex.dll",
  8676. "lib/portable-net45+win8/_._",
  8677. "lib/win8/_._",
  8678. "lib/xamarinios10/_._",
  8679. "lib/xamarinmac20/_._",
  8680. "lib/xamarintvos10/_._",
  8681. "lib/xamarinwatchos10/_._",
  8682. "ref/MonoAndroid10/_._",
  8683. "ref/MonoTouch10/_._",
  8684. "ref/net45/_._",
  8685. "ref/net461/System.ServiceModel.Duplex.dll",
  8686. "ref/netcore50/System.ServiceModel.Duplex.dll",
  8687. "ref/netstandard1.1/System.ServiceModel.Duplex.dll",
  8688. "ref/netstandard2.0/System.ServiceModel.Duplex.dll",
  8689. "ref/portable-net45+win8/_._",
  8690. "ref/win8/_._",
  8691. "ref/xamarinios10/_._",
  8692. "ref/xamarinmac20/_._",
  8693. "ref/xamarintvos10/_._",
  8694. "ref/xamarinwatchos10/_._",
  8695. "system.servicemodel.duplex.4.4.4.nupkg.sha512",
  8696. "system.servicemodel.duplex.nuspec",
  8697. "version.txt"
  8698. ]
  8699. },
  8700. "System.ServiceModel.Http/4.4.4": {
  8701. "sha512": "f7OWPKqfTaCzjpc6n+/xqNwv7YAHKMiBCPIgwxIXVnf0Vu9+yzfX6tXV9pSSCEFuqJ5tXGLz9MRRExrQEqVUkA==",
  8702. "type": "package",
  8703. "path": "system.servicemodel.http/4.4.4",
  8704. "files": [
  8705. ".nupkg.metadata",
  8706. ".signature.p7s",
  8707. "LICENSE.TXT",
  8708. "THIRD-PARTY-NOTICES.TXT",
  8709. "lib/MonoAndroid10/_._",
  8710. "lib/MonoTouch10/_._",
  8711. "lib/net45/_._",
  8712. "lib/net46/System.ServiceModel.Http.dll",
  8713. "lib/net461/System.ServiceModel.Http.dll",
  8714. "lib/netcore50/System.ServiceModel.Http.dll",
  8715. "lib/netstandard1.3/System.ServiceModel.Http.dll",
  8716. "lib/netstandard2.0/System.ServiceModel.Http.dll",
  8717. "lib/portable-net45+win8+wp8/_._",
  8718. "lib/win8/_._",
  8719. "lib/wp8/_._",
  8720. "lib/xamarinios10/_._",
  8721. "lib/xamarinmac20/_._",
  8722. "lib/xamarintvos10/_._",
  8723. "lib/xamarinwatchos10/_._",
  8724. "ref/MonoAndroid10/_._",
  8725. "ref/MonoTouch10/_._",
  8726. "ref/net45/_._",
  8727. "ref/net46/System.ServiceModel.Http.dll",
  8728. "ref/net461/System.ServiceModel.Http.dll",
  8729. "ref/netcore50/System.ServiceModel.Http.dll",
  8730. "ref/netstandard1.0/System.ServiceModel.Http.dll",
  8731. "ref/netstandard1.1/System.ServiceModel.Http.dll",
  8732. "ref/netstandard1.3/System.ServiceModel.Http.dll",
  8733. "ref/netstandard2.0/System.ServiceModel.Http.dll",
  8734. "ref/portable-net45+win8+wp8/_._",
  8735. "ref/win8/_._",
  8736. "ref/wp8/_._",
  8737. "ref/xamarinios10/_._",
  8738. "ref/xamarinmac20/_._",
  8739. "ref/xamarintvos10/_._",
  8740. "ref/xamarinwatchos10/_._",
  8741. "system.servicemodel.http.4.4.4.nupkg.sha512",
  8742. "system.servicemodel.http.nuspec",
  8743. "version.txt"
  8744. ]
  8745. },
  8746. "System.ServiceModel.NetTcp/4.4.4": {
  8747. "sha512": "TZUwkBUHK+HgPVpypcnCEzenn+Hly3mQ+QDqDtHKyqVBP2Yt+DAMp3NwuW35mTSMRqna5p9hd0U0vVq5azovOQ==",
  8748. "type": "package",
  8749. "path": "system.servicemodel.nettcp/4.4.4",
  8750. "files": [
  8751. ".nupkg.metadata",
  8752. ".signature.p7s",
  8753. "LICENSE.TXT",
  8754. "THIRD-PARTY-NOTICES.TXT",
  8755. "lib/MonoAndroid10/_._",
  8756. "lib/MonoTouch10/_._",
  8757. "lib/net45/_._",
  8758. "lib/net46/System.ServiceModel.NetTcp.dll",
  8759. "lib/net461/System.ServiceModel.NetTcp.dll",
  8760. "lib/netcore50/System.ServiceModel.NetTcp.dll",
  8761. "lib/netstandard1.3/System.ServiceModel.NetTcp.dll",
  8762. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll",
  8763. "lib/portable-net45+win8/_._",
  8764. "lib/win8/_._",
  8765. "lib/xamarinios10/_._",
  8766. "lib/xamarinmac20/_._",
  8767. "lib/xamarintvos10/_._",
  8768. "lib/xamarinwatchos10/_._",
  8769. "ref/MonoAndroid10/_._",
  8770. "ref/MonoTouch10/_._",
  8771. "ref/net45/_._",
  8772. "ref/net46/System.ServiceModel.NetTcp.dll",
  8773. "ref/net461/System.ServiceModel.NetTcp.dll",
  8774. "ref/netcore50/System.ServiceModel.NetTcp.dll",
  8775. "ref/netstandard1.1/System.ServiceModel.NetTcp.dll",
  8776. "ref/netstandard1.3/System.ServiceModel.NetTcp.dll",
  8777. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll",
  8778. "ref/portable-net45+win8/_._",
  8779. "ref/win8/_._",
  8780. "ref/xamarinios10/_._",
  8781. "ref/xamarinmac20/_._",
  8782. "ref/xamarintvos10/_._",
  8783. "ref/xamarinwatchos10/_._",
  8784. "system.servicemodel.nettcp.4.4.4.nupkg.sha512",
  8785. "system.servicemodel.nettcp.nuspec",
  8786. "version.txt"
  8787. ]
  8788. },
  8789. "System.ServiceModel.Primitives/4.4.4": {
  8790. "sha512": "Jv882Qt+tSJ2KnLGGMSGPwBvOxfXRncXW0YV/beBKRQ2c6bDbXVXwqaS2U9h+/cK1uL7C4zc66lnC7qvSBqPHw==",
  8791. "type": "package",
  8792. "path": "system.servicemodel.primitives/4.4.4",
  8793. "files": [
  8794. ".nupkg.metadata",
  8795. ".signature.p7s",
  8796. "LICENSE.TXT",
  8797. "THIRD-PARTY-NOTICES.TXT",
  8798. "lib/MonoAndroid10/_._",
  8799. "lib/MonoTouch10/_._",
  8800. "lib/net45/_._",
  8801. "lib/net46/System.ServiceModel.Primitives.dll",
  8802. "lib/net461/System.ServiceModel.Primitives.dll",
  8803. "lib/netcore50/System.ServiceModel.Primitives.dll",
  8804. "lib/netstandard1.3/System.ServiceModel.Primitives.dll",
  8805. "lib/netstandard2.0/System.ServiceModel.Primitives.dll",
  8806. "lib/netstandard2.0/System.ServiceModel.dll",
  8807. "lib/portable-net45+win8+wp8/_._",
  8808. "lib/win8/_._",
  8809. "lib/wp8/_._",
  8810. "lib/xamarinios10/_._",
  8811. "lib/xamarinmac20/_._",
  8812. "lib/xamarintvos10/_._",
  8813. "lib/xamarinwatchos10/_._",
  8814. "ref/MonoAndroid10/_._",
  8815. "ref/MonoTouch10/_._",
  8816. "ref/net45/_._",
  8817. "ref/net46/System.ServiceModel.Primitives.dll",
  8818. "ref/net461/System.ServiceModel.Primitives.dll",
  8819. "ref/netcore50/System.ServiceModel.Primitives.dll",
  8820. "ref/netstandard1.0/System.ServiceModel.Primitives.dll",
  8821. "ref/netstandard1.1/System.ServiceModel.Primitives.dll",
  8822. "ref/netstandard1.3/System.ServiceModel.Primitives.dll",
  8823. "ref/netstandard2.0/System.ServiceModel.Primitives.dll",
  8824. "ref/netstandard2.0/System.ServiceModel.dll",
  8825. "ref/portable-net45+win8+wp8/_._",
  8826. "ref/win8/_._",
  8827. "ref/wp8/_._",
  8828. "ref/xamarinios10/_._",
  8829. "ref/xamarinmac20/_._",
  8830. "ref/xamarintvos10/_._",
  8831. "ref/xamarinwatchos10/_._",
  8832. "system.servicemodel.primitives.4.4.4.nupkg.sha512",
  8833. "system.servicemodel.primitives.nuspec",
  8834. "version.txt"
  8835. ]
  8836. },
  8837. "System.ServiceModel.Security/4.4.4": {
  8838. "sha512": "8mJj3lUNbBkntouQ3Eg3IF04GxiDrDK2X79+kcfq8V+W7NoYBREgWczaD60ZmW4KKRKnL0q3OnUNJlkzJJfe5w==",
  8839. "type": "package",
  8840. "path": "system.servicemodel.security/4.4.4",
  8841. "files": [
  8842. ".nupkg.metadata",
  8843. ".signature.p7s",
  8844. "LICENSE.TXT",
  8845. "THIRD-PARTY-NOTICES.TXT",
  8846. "lib/MonoAndroid10/_._",
  8847. "lib/MonoTouch10/_._",
  8848. "lib/net45/_._",
  8849. "lib/netcore50/System.ServiceModel.Security.dll",
  8850. "lib/netstandard1.3/System.ServiceModel.Security.dll",
  8851. "lib/netstandard2.0/System.ServiceModel.Security.dll",
  8852. "lib/portable-net45+win8+wp8/_._",
  8853. "lib/win8/_._",
  8854. "lib/wp8/_._",
  8855. "lib/xamarinios10/_._",
  8856. "lib/xamarinmac20/_._",
  8857. "lib/xamarintvos10/_._",
  8858. "lib/xamarinwatchos10/_._",
  8859. "ref/MonoAndroid10/_._",
  8860. "ref/MonoTouch10/_._",
  8861. "ref/net45/_._",
  8862. "ref/netcore50/System.ServiceModel.Security.dll",
  8863. "ref/netstandard1.0/System.ServiceModel.Security.dll",
  8864. "ref/netstandard1.1/System.ServiceModel.Security.dll",
  8865. "ref/netstandard2.0/System.ServiceModel.Security.dll",
  8866. "ref/portable-net45+win8+wp8/_._",
  8867. "ref/win8/_._",
  8868. "ref/wp8/_._",
  8869. "ref/xamarinios10/_._",
  8870. "ref/xamarinmac20/_._",
  8871. "ref/xamarintvos10/_._",
  8872. "ref/xamarinwatchos10/_._",
  8873. "system.servicemodel.security.4.4.4.nupkg.sha512",
  8874. "system.servicemodel.security.nuspec",
  8875. "version.txt"
  8876. ]
  8877. },
  8878. "System.Text.Encoding/4.3.0": {
  8879. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8880. "type": "package",
  8881. "path": "system.text.encoding/4.3.0",
  8882. "files": [
  8883. ".nupkg.metadata",
  8884. ".signature.p7s",
  8885. "ThirdPartyNotices.txt",
  8886. "dotnet_library_license.txt",
  8887. "lib/MonoAndroid10/_._",
  8888. "lib/MonoTouch10/_._",
  8889. "lib/net45/_._",
  8890. "lib/portable-net45+win8+wp8+wpa81/_._",
  8891. "lib/win8/_._",
  8892. "lib/wp80/_._",
  8893. "lib/wpa81/_._",
  8894. "lib/xamarinios10/_._",
  8895. "lib/xamarinmac20/_._",
  8896. "lib/xamarintvos10/_._",
  8897. "lib/xamarinwatchos10/_._",
  8898. "ref/MonoAndroid10/_._",
  8899. "ref/MonoTouch10/_._",
  8900. "ref/net45/_._",
  8901. "ref/netcore50/System.Text.Encoding.dll",
  8902. "ref/netcore50/System.Text.Encoding.xml",
  8903. "ref/netcore50/de/System.Text.Encoding.xml",
  8904. "ref/netcore50/es/System.Text.Encoding.xml",
  8905. "ref/netcore50/fr/System.Text.Encoding.xml",
  8906. "ref/netcore50/it/System.Text.Encoding.xml",
  8907. "ref/netcore50/ja/System.Text.Encoding.xml",
  8908. "ref/netcore50/ko/System.Text.Encoding.xml",
  8909. "ref/netcore50/ru/System.Text.Encoding.xml",
  8910. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8911. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8912. "ref/netstandard1.0/System.Text.Encoding.dll",
  8913. "ref/netstandard1.0/System.Text.Encoding.xml",
  8914. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8915. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8916. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8917. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8918. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8919. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8920. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8921. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8922. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8923. "ref/netstandard1.3/System.Text.Encoding.dll",
  8924. "ref/netstandard1.3/System.Text.Encoding.xml",
  8925. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8926. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8927. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8928. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8929. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8930. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8931. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8932. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8933. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8934. "ref/portable-net45+win8+wp8+wpa81/_._",
  8935. "ref/win8/_._",
  8936. "ref/wp80/_._",
  8937. "ref/wpa81/_._",
  8938. "ref/xamarinios10/_._",
  8939. "ref/xamarinmac20/_._",
  8940. "ref/xamarintvos10/_._",
  8941. "ref/xamarinwatchos10/_._",
  8942. "system.text.encoding.4.3.0.nupkg.sha512",
  8943. "system.text.encoding.nuspec"
  8944. ]
  8945. },
  8946. "System.Text.Encoding.CodePages/4.7.1": {
  8947. "sha512": "i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
  8948. "type": "package",
  8949. "path": "system.text.encoding.codepages/4.7.1",
  8950. "files": [
  8951. ".nupkg.metadata",
  8952. ".signature.p7s",
  8953. "Icon.png",
  8954. "LICENSE.TXT",
  8955. "THIRD-PARTY-NOTICES.TXT",
  8956. "lib/MonoAndroid10/_._",
  8957. "lib/MonoTouch10/_._",
  8958. "lib/net46/System.Text.Encoding.CodePages.dll",
  8959. "lib/net461/System.Text.Encoding.CodePages.dll",
  8960. "lib/net461/System.Text.Encoding.CodePages.xml",
  8961. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8962. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8963. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8964. "lib/xamarinios10/_._",
  8965. "lib/xamarinmac20/_._",
  8966. "lib/xamarintvos10/_._",
  8967. "lib/xamarinwatchos10/_._",
  8968. "ref/MonoAndroid10/_._",
  8969. "ref/MonoTouch10/_._",
  8970. "ref/xamarinios10/_._",
  8971. "ref/xamarinmac20/_._",
  8972. "ref/xamarintvos10/_._",
  8973. "ref/xamarinwatchos10/_._",
  8974. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8975. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8976. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8977. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8978. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8979. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8980. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8981. "system.text.encoding.codepages.4.7.1.nupkg.sha512",
  8982. "system.text.encoding.codepages.nuspec",
  8983. "useSharedDesignerContext.txt",
  8984. "version.txt"
  8985. ]
  8986. },
  8987. "System.Text.Encoding.Extensions/4.3.0": {
  8988. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8989. "type": "package",
  8990. "path": "system.text.encoding.extensions/4.3.0",
  8991. "files": [
  8992. ".nupkg.metadata",
  8993. ".signature.p7s",
  8994. "ThirdPartyNotices.txt",
  8995. "dotnet_library_license.txt",
  8996. "lib/MonoAndroid10/_._",
  8997. "lib/MonoTouch10/_._",
  8998. "lib/net45/_._",
  8999. "lib/portable-net45+win8+wp8+wpa81/_._",
  9000. "lib/win8/_._",
  9001. "lib/wp80/_._",
  9002. "lib/wpa81/_._",
  9003. "lib/xamarinios10/_._",
  9004. "lib/xamarinmac20/_._",
  9005. "lib/xamarintvos10/_._",
  9006. "lib/xamarinwatchos10/_._",
  9007. "ref/MonoAndroid10/_._",
  9008. "ref/MonoTouch10/_._",
  9009. "ref/net45/_._",
  9010. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9011. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9012. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9013. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9014. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9015. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9016. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9017. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9018. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9019. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9020. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9021. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9022. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9023. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9024. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9025. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9026. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9027. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9028. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9029. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9030. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9031. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9032. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9033. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9034. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9035. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9036. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9037. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9038. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9039. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9040. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9041. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9042. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9043. "ref/portable-net45+win8+wp8+wpa81/_._",
  9044. "ref/win8/_._",
  9045. "ref/wp80/_._",
  9046. "ref/wpa81/_._",
  9047. "ref/xamarinios10/_._",
  9048. "ref/xamarinmac20/_._",
  9049. "ref/xamarintvos10/_._",
  9050. "ref/xamarinwatchos10/_._",
  9051. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9052. "system.text.encoding.extensions.nuspec"
  9053. ]
  9054. },
  9055. "System.Text.Encodings.Web/4.5.0": {
  9056. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  9057. "type": "package",
  9058. "path": "system.text.encodings.web/4.5.0",
  9059. "files": [
  9060. ".nupkg.metadata",
  9061. ".signature.p7s",
  9062. "LICENSE.TXT",
  9063. "THIRD-PARTY-NOTICES.TXT",
  9064. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9065. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  9066. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9067. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9068. "system.text.encodings.web.4.5.0.nupkg.sha512",
  9069. "system.text.encodings.web.nuspec",
  9070. "useSharedDesignerContext.txt",
  9071. "version.txt"
  9072. ]
  9073. },
  9074. "System.Text.RegularExpressions/4.3.0": {
  9075. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9076. "type": "package",
  9077. "path": "system.text.regularexpressions/4.3.0",
  9078. "files": [
  9079. ".nupkg.metadata",
  9080. ".signature.p7s",
  9081. "ThirdPartyNotices.txt",
  9082. "dotnet_library_license.txt",
  9083. "lib/MonoAndroid10/_._",
  9084. "lib/MonoTouch10/_._",
  9085. "lib/net45/_._",
  9086. "lib/net463/System.Text.RegularExpressions.dll",
  9087. "lib/netcore50/System.Text.RegularExpressions.dll",
  9088. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9089. "lib/portable-net45+win8+wp8+wpa81/_._",
  9090. "lib/win8/_._",
  9091. "lib/wp80/_._",
  9092. "lib/wpa81/_._",
  9093. "lib/xamarinios10/_._",
  9094. "lib/xamarinmac20/_._",
  9095. "lib/xamarintvos10/_._",
  9096. "lib/xamarinwatchos10/_._",
  9097. "ref/MonoAndroid10/_._",
  9098. "ref/MonoTouch10/_._",
  9099. "ref/net45/_._",
  9100. "ref/net463/System.Text.RegularExpressions.dll",
  9101. "ref/netcore50/System.Text.RegularExpressions.dll",
  9102. "ref/netcore50/System.Text.RegularExpressions.xml",
  9103. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9104. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9105. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9106. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9107. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9108. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9109. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9110. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9111. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9112. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9113. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9114. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9115. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9116. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9117. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9118. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9119. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9120. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9121. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9122. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9123. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9124. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9125. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9126. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9127. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9128. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9129. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9130. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9131. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9132. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9133. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9134. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9135. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9136. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9137. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9138. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9139. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9140. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9141. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9142. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9143. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9144. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9145. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9146. "ref/portable-net45+win8+wp8+wpa81/_._",
  9147. "ref/win8/_._",
  9148. "ref/wp80/_._",
  9149. "ref/wpa81/_._",
  9150. "ref/xamarinios10/_._",
  9151. "ref/xamarinmac20/_._",
  9152. "ref/xamarintvos10/_._",
  9153. "ref/xamarinwatchos10/_._",
  9154. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9155. "system.text.regularexpressions.nuspec"
  9156. ]
  9157. },
  9158. "System.Threading/4.3.0": {
  9159. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9160. "type": "package",
  9161. "path": "system.threading/4.3.0",
  9162. "files": [
  9163. ".nupkg.metadata",
  9164. ".signature.p7s",
  9165. "ThirdPartyNotices.txt",
  9166. "dotnet_library_license.txt",
  9167. "lib/MonoAndroid10/_._",
  9168. "lib/MonoTouch10/_._",
  9169. "lib/net45/_._",
  9170. "lib/netcore50/System.Threading.dll",
  9171. "lib/netstandard1.3/System.Threading.dll",
  9172. "lib/portable-net45+win8+wp8+wpa81/_._",
  9173. "lib/win8/_._",
  9174. "lib/wp80/_._",
  9175. "lib/wpa81/_._",
  9176. "lib/xamarinios10/_._",
  9177. "lib/xamarinmac20/_._",
  9178. "lib/xamarintvos10/_._",
  9179. "lib/xamarinwatchos10/_._",
  9180. "ref/MonoAndroid10/_._",
  9181. "ref/MonoTouch10/_._",
  9182. "ref/net45/_._",
  9183. "ref/netcore50/System.Threading.dll",
  9184. "ref/netcore50/System.Threading.xml",
  9185. "ref/netcore50/de/System.Threading.xml",
  9186. "ref/netcore50/es/System.Threading.xml",
  9187. "ref/netcore50/fr/System.Threading.xml",
  9188. "ref/netcore50/it/System.Threading.xml",
  9189. "ref/netcore50/ja/System.Threading.xml",
  9190. "ref/netcore50/ko/System.Threading.xml",
  9191. "ref/netcore50/ru/System.Threading.xml",
  9192. "ref/netcore50/zh-hans/System.Threading.xml",
  9193. "ref/netcore50/zh-hant/System.Threading.xml",
  9194. "ref/netstandard1.0/System.Threading.dll",
  9195. "ref/netstandard1.0/System.Threading.xml",
  9196. "ref/netstandard1.0/de/System.Threading.xml",
  9197. "ref/netstandard1.0/es/System.Threading.xml",
  9198. "ref/netstandard1.0/fr/System.Threading.xml",
  9199. "ref/netstandard1.0/it/System.Threading.xml",
  9200. "ref/netstandard1.0/ja/System.Threading.xml",
  9201. "ref/netstandard1.0/ko/System.Threading.xml",
  9202. "ref/netstandard1.0/ru/System.Threading.xml",
  9203. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9204. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9205. "ref/netstandard1.3/System.Threading.dll",
  9206. "ref/netstandard1.3/System.Threading.xml",
  9207. "ref/netstandard1.3/de/System.Threading.xml",
  9208. "ref/netstandard1.3/es/System.Threading.xml",
  9209. "ref/netstandard1.3/fr/System.Threading.xml",
  9210. "ref/netstandard1.3/it/System.Threading.xml",
  9211. "ref/netstandard1.3/ja/System.Threading.xml",
  9212. "ref/netstandard1.3/ko/System.Threading.xml",
  9213. "ref/netstandard1.3/ru/System.Threading.xml",
  9214. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9215. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9216. "ref/portable-net45+win8+wp8+wpa81/_._",
  9217. "ref/win8/_._",
  9218. "ref/wp80/_._",
  9219. "ref/wpa81/_._",
  9220. "ref/xamarinios10/_._",
  9221. "ref/xamarinmac20/_._",
  9222. "ref/xamarintvos10/_._",
  9223. "ref/xamarinwatchos10/_._",
  9224. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9225. "system.threading.4.3.0.nupkg.sha512",
  9226. "system.threading.nuspec"
  9227. ]
  9228. },
  9229. "System.Threading.Tasks/4.3.0": {
  9230. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9231. "type": "package",
  9232. "path": "system.threading.tasks/4.3.0",
  9233. "files": [
  9234. ".nupkg.metadata",
  9235. ".signature.p7s",
  9236. "ThirdPartyNotices.txt",
  9237. "dotnet_library_license.txt",
  9238. "lib/MonoAndroid10/_._",
  9239. "lib/MonoTouch10/_._",
  9240. "lib/net45/_._",
  9241. "lib/portable-net45+win8+wp8+wpa81/_._",
  9242. "lib/win8/_._",
  9243. "lib/wp80/_._",
  9244. "lib/wpa81/_._",
  9245. "lib/xamarinios10/_._",
  9246. "lib/xamarinmac20/_._",
  9247. "lib/xamarintvos10/_._",
  9248. "lib/xamarinwatchos10/_._",
  9249. "ref/MonoAndroid10/_._",
  9250. "ref/MonoTouch10/_._",
  9251. "ref/net45/_._",
  9252. "ref/netcore50/System.Threading.Tasks.dll",
  9253. "ref/netcore50/System.Threading.Tasks.xml",
  9254. "ref/netcore50/de/System.Threading.Tasks.xml",
  9255. "ref/netcore50/es/System.Threading.Tasks.xml",
  9256. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9257. "ref/netcore50/it/System.Threading.Tasks.xml",
  9258. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9259. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9260. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9261. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9262. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9263. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9264. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9265. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9266. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9267. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9268. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9269. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9270. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9271. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9272. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9273. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9274. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9275. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9276. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9277. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9278. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9279. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9280. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9281. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9282. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9283. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9284. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9285. "ref/portable-net45+win8+wp8+wpa81/_._",
  9286. "ref/win8/_._",
  9287. "ref/wp80/_._",
  9288. "ref/wpa81/_._",
  9289. "ref/xamarinios10/_._",
  9290. "ref/xamarinmac20/_._",
  9291. "ref/xamarintvos10/_._",
  9292. "ref/xamarinwatchos10/_._",
  9293. "system.threading.tasks.4.3.0.nupkg.sha512",
  9294. "system.threading.tasks.nuspec"
  9295. ]
  9296. },
  9297. "System.Threading.Tasks.Extensions/4.3.0": {
  9298. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  9299. "type": "package",
  9300. "path": "system.threading.tasks.extensions/4.3.0",
  9301. "files": [
  9302. ".nupkg.metadata",
  9303. ".signature.p7s",
  9304. "ThirdPartyNotices.txt",
  9305. "dotnet_library_license.txt",
  9306. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9307. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9308. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9309. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9310. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  9311. "system.threading.tasks.extensions.nuspec"
  9312. ]
  9313. },
  9314. "System.Threading.Timer/4.3.0": {
  9315. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9316. "type": "package",
  9317. "path": "system.threading.timer/4.3.0",
  9318. "files": [
  9319. ".nupkg.metadata",
  9320. ".signature.p7s",
  9321. "ThirdPartyNotices.txt",
  9322. "dotnet_library_license.txt",
  9323. "lib/MonoAndroid10/_._",
  9324. "lib/MonoTouch10/_._",
  9325. "lib/net451/_._",
  9326. "lib/portable-net451+win81+wpa81/_._",
  9327. "lib/win81/_._",
  9328. "lib/wpa81/_._",
  9329. "lib/xamarinios10/_._",
  9330. "lib/xamarinmac20/_._",
  9331. "lib/xamarintvos10/_._",
  9332. "lib/xamarinwatchos10/_._",
  9333. "ref/MonoAndroid10/_._",
  9334. "ref/MonoTouch10/_._",
  9335. "ref/net451/_._",
  9336. "ref/netcore50/System.Threading.Timer.dll",
  9337. "ref/netcore50/System.Threading.Timer.xml",
  9338. "ref/netcore50/de/System.Threading.Timer.xml",
  9339. "ref/netcore50/es/System.Threading.Timer.xml",
  9340. "ref/netcore50/fr/System.Threading.Timer.xml",
  9341. "ref/netcore50/it/System.Threading.Timer.xml",
  9342. "ref/netcore50/ja/System.Threading.Timer.xml",
  9343. "ref/netcore50/ko/System.Threading.Timer.xml",
  9344. "ref/netcore50/ru/System.Threading.Timer.xml",
  9345. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9346. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9347. "ref/netstandard1.2/System.Threading.Timer.dll",
  9348. "ref/netstandard1.2/System.Threading.Timer.xml",
  9349. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9350. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9351. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9352. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9353. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9354. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9355. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9356. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9357. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9358. "ref/portable-net451+win81+wpa81/_._",
  9359. "ref/win81/_._",
  9360. "ref/wpa81/_._",
  9361. "ref/xamarinios10/_._",
  9362. "ref/xamarinmac20/_._",
  9363. "ref/xamarintvos10/_._",
  9364. "ref/xamarinwatchos10/_._",
  9365. "system.threading.timer.4.3.0.nupkg.sha512",
  9366. "system.threading.timer.nuspec"
  9367. ]
  9368. },
  9369. "System.Windows.Extensions/4.7.0": {
  9370. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9371. "type": "package",
  9372. "path": "system.windows.extensions/4.7.0",
  9373. "files": [
  9374. ".nupkg.metadata",
  9375. ".signature.p7s",
  9376. "LICENSE.TXT",
  9377. "THIRD-PARTY-NOTICES.TXT",
  9378. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9379. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9380. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9381. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9382. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9383. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9384. "system.windows.extensions.4.7.0.nupkg.sha512",
  9385. "system.windows.extensions.nuspec",
  9386. "useSharedDesignerContext.txt",
  9387. "version.txt"
  9388. ]
  9389. },
  9390. "System.Xml.ReaderWriter/4.3.1": {
  9391. "sha512": "fVU1Xp9TEOHv1neQDtcJ4hNfYJ1pjfXzKY3VFeiRZK6HTV4Af2Ihyvq1FkPLrL1hzZhXv7NTmowQnL5DgTzIKA==",
  9392. "type": "package",
  9393. "path": "system.xml.readerwriter/4.3.1",
  9394. "files": [
  9395. ".nupkg.metadata",
  9396. ".signature.p7s",
  9397. "ThirdPartyNotices.txt",
  9398. "dotnet_library_license.txt",
  9399. "lib/MonoAndroid10/_._",
  9400. "lib/MonoTouch10/_._",
  9401. "lib/net45/_._",
  9402. "lib/net46/System.Xml.ReaderWriter.dll",
  9403. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9404. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9405. "lib/portable-net45+win8+wp8+wpa81/_._",
  9406. "lib/win8/_._",
  9407. "lib/wp80/_._",
  9408. "lib/wpa81/_._",
  9409. "lib/xamarinios10/_._",
  9410. "lib/xamarinmac20/_._",
  9411. "lib/xamarintvos10/_._",
  9412. "lib/xamarinwatchos10/_._",
  9413. "ref/MonoAndroid10/_._",
  9414. "ref/MonoTouch10/_._",
  9415. "ref/net45/_._",
  9416. "ref/net46/System.Xml.ReaderWriter.dll",
  9417. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9418. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9419. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9420. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9421. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9422. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9423. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9424. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9425. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9426. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9427. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9428. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9429. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9430. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9431. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9432. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9433. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9434. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9435. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9436. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9437. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9438. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9439. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9440. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9441. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9442. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9443. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9444. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9445. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9446. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9447. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9448. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9449. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9450. "ref/portable-net45+win8+wp8+wpa81/_._",
  9451. "ref/win8/_._",
  9452. "ref/wp80/_._",
  9453. "ref/wpa81/_._",
  9454. "ref/xamarinios10/_._",
  9455. "ref/xamarinmac20/_._",
  9456. "ref/xamarintvos10/_._",
  9457. "ref/xamarinwatchos10/_._",
  9458. "system.xml.readerwriter.4.3.1.nupkg.sha512",
  9459. "system.xml.readerwriter.nuspec"
  9460. ]
  9461. },
  9462. "System.Xml.XDocument/4.3.0": {
  9463. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9464. "type": "package",
  9465. "path": "system.xml.xdocument/4.3.0",
  9466. "files": [
  9467. ".nupkg.metadata",
  9468. ".signature.p7s",
  9469. "ThirdPartyNotices.txt",
  9470. "dotnet_library_license.txt",
  9471. "lib/MonoAndroid10/_._",
  9472. "lib/MonoTouch10/_._",
  9473. "lib/net45/_._",
  9474. "lib/netcore50/System.Xml.XDocument.dll",
  9475. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9476. "lib/portable-net45+win8+wp8+wpa81/_._",
  9477. "lib/win8/_._",
  9478. "lib/wp80/_._",
  9479. "lib/wpa81/_._",
  9480. "lib/xamarinios10/_._",
  9481. "lib/xamarinmac20/_._",
  9482. "lib/xamarintvos10/_._",
  9483. "lib/xamarinwatchos10/_._",
  9484. "ref/MonoAndroid10/_._",
  9485. "ref/MonoTouch10/_._",
  9486. "ref/net45/_._",
  9487. "ref/netcore50/System.Xml.XDocument.dll",
  9488. "ref/netcore50/System.Xml.XDocument.xml",
  9489. "ref/netcore50/de/System.Xml.XDocument.xml",
  9490. "ref/netcore50/es/System.Xml.XDocument.xml",
  9491. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9492. "ref/netcore50/it/System.Xml.XDocument.xml",
  9493. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9494. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9495. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9496. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9497. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9498. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9499. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9500. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9501. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9502. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9503. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9504. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9505. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9506. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9507. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9508. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9509. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9510. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9511. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9512. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9513. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9514. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9515. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9516. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9517. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9518. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9519. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9520. "ref/portable-net45+win8+wp8+wpa81/_._",
  9521. "ref/win8/_._",
  9522. "ref/wp80/_._",
  9523. "ref/wpa81/_._",
  9524. "ref/xamarinios10/_._",
  9525. "ref/xamarinmac20/_._",
  9526. "ref/xamarintvos10/_._",
  9527. "ref/xamarinwatchos10/_._",
  9528. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9529. "system.xml.xdocument.nuspec"
  9530. ]
  9531. },
  9532. "System.Xml.XmlDocument/4.3.0": {
  9533. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  9534. "type": "package",
  9535. "path": "system.xml.xmldocument/4.3.0",
  9536. "files": [
  9537. ".nupkg.metadata",
  9538. ".signature.p7s",
  9539. "ThirdPartyNotices.txt",
  9540. "dotnet_library_license.txt",
  9541. "lib/MonoAndroid10/_._",
  9542. "lib/MonoTouch10/_._",
  9543. "lib/net46/System.Xml.XmlDocument.dll",
  9544. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9545. "lib/xamarinios10/_._",
  9546. "lib/xamarinmac20/_._",
  9547. "lib/xamarintvos10/_._",
  9548. "lib/xamarinwatchos10/_._",
  9549. "ref/MonoAndroid10/_._",
  9550. "ref/MonoTouch10/_._",
  9551. "ref/net46/System.Xml.XmlDocument.dll",
  9552. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9553. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9554. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9555. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9556. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9557. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9558. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9559. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9560. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9561. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9562. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9563. "ref/xamarinios10/_._",
  9564. "ref/xamarinmac20/_._",
  9565. "ref/xamarintvos10/_._",
  9566. "ref/xamarinwatchos10/_._",
  9567. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  9568. "system.xml.xmldocument.nuspec"
  9569. ]
  9570. },
  9571. "WebAPIBase.NetCore.BusinessCore/1.0.0": {
  9572. "type": "project",
  9573. "path": "../WebAPIBase.NetCore.BusinessCore/WebAPIBase.NetCore.BusinessCore.csproj",
  9574. "msbuildProject": "../WebAPIBase.NetCore.BusinessCore/WebAPIBase.NetCore.BusinessCore.csproj"
  9575. },
  9576. "WebAPIBase.NetCore.Enties/1.0.0": {
  9577. "type": "project",
  9578. "path": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj",
  9579. "msbuildProject": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj"
  9580. },
  9581. "WebAPIBase.Utils/1.0.0": {
  9582. "type": "project",
  9583. "path": "../Utils/WebAPIBase.Utils.csproj",
  9584. "msbuildProject": "../Utils/WebAPIBase.Utils.csproj"
  9585. }
  9586. },
  9587. "projectFileDependencyGroups": {
  9588. ".NETCoreApp,Version=v3.1": [
  9589. "MSTest.TestAdapter >= 2.1.0",
  9590. "MSTest.TestFramework >= 2.1.0",
  9591. "Microsoft.NET.Test.Sdk >= 16.5.0",
  9592. "WebAPIBase.NetCore.BusinessCore >= 1.0.0",
  9593. "coverlet.collector >= 1.2.0"
  9594. ]
  9595. },
  9596. "packageFolders": {
  9597. "C:\\Users\\Administrator\\.nuget\\packages\\": {},
  9598. "D:\\Microsoft\\Xamarin\\NuGet\\": {},
  9599. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
  9600. },
  9601. "project": {
  9602. "version": "1.0.0",
  9603. "restore": {
  9604. "projectUniqueName": "F:\\北京宏信\\源代码\\浩德地产\\dccloud\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\WebAPIBase.NetCore.BusinessCoreTests.csproj",
  9605. "projectName": "WebAPIBase.NetCore.BusinessCoreTests",
  9606. "projectPath": "F:\\北京宏信\\源代码\\浩德地产\\dccloud\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\WebAPIBase.NetCore.BusinessCoreTests.csproj",
  9607. "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
  9608. "outputPath": "F:\\北京宏信\\源代码\\浩德地产\\dccloud\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\obj\\",
  9609. "projectStyle": "PackageReference",
  9610. "fallbackFolders": [
  9611. "D:\\Microsoft\\Xamarin\\NuGet\\",
  9612. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
  9613. ],
  9614. "configFilePaths": [
  9615. "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9616. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
  9617. "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
  9618. ],
  9619. "originalTargetFrameworks": [
  9620. "netcoreapp3.1"
  9621. ],
  9622. "sources": {
  9623. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9624. "https://api.nuget.org/v3/index.json": {}
  9625. },
  9626. "frameworks": {
  9627. "netcoreapp3.1": {
  9628. "targetAlias": "netcoreapp3.1",
  9629. "projectReferences": {
  9630. "F:\\北京宏信\\源代码\\浩德地产\\dccloud\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj": {
  9631. "projectPath": "F:\\北京宏信\\源代码\\浩德地产\\dccloud\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj"
  9632. }
  9633. }
  9634. }
  9635. },
  9636. "warningProperties": {
  9637. "warnAsError": [
  9638. "NU1605"
  9639. ]
  9640. }
  9641. },
  9642. "frameworks": {
  9643. "netcoreapp3.1": {
  9644. "targetAlias": "netcoreapp3.1",
  9645. "dependencies": {
  9646. "MSTest.TestAdapter": {
  9647. "target": "Package",
  9648. "version": "[2.1.0, )"
  9649. },
  9650. "MSTest.TestFramework": {
  9651. "target": "Package",
  9652. "version": "[2.1.0, )"
  9653. },
  9654. "Microsoft.NET.Test.Sdk": {
  9655. "target": "Package",
  9656. "version": "[16.5.0, )"
  9657. },
  9658. "coverlet.collector": {
  9659. "target": "Package",
  9660. "version": "[1.2.0, )"
  9661. }
  9662. },
  9663. "imports": [
  9664. "net461",
  9665. "net462",
  9666. "net47",
  9667. "net471",
  9668. "net472",
  9669. "net48"
  9670. ],
  9671. "assetTargetFallback": true,
  9672. "warn": true,
  9673. "frameworkReferences": {
  9674. "Microsoft.AspNetCore.App": {
  9675. "privateAssets": "none"
  9676. },
  9677. "Microsoft.NETCore.App": {
  9678. "privateAssets": "all"
  9679. }
  9680. },
  9681. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.102\\RuntimeIdentifierGraph.json"
  9682. }
  9683. }
  9684. }
  9685. }