project.assets.json 415 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583
  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. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1048. "type": "package",
  1049. "runtimeTargets": {
  1050. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1051. "assetType": "native",
  1052. "rid": "debian.8-x64"
  1053. }
  1054. }
  1055. },
  1056. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1057. "type": "package",
  1058. "runtimeTargets": {
  1059. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1060. "assetType": "native",
  1061. "rid": "fedora.23-x64"
  1062. }
  1063. }
  1064. },
  1065. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1066. "type": "package",
  1067. "runtimeTargets": {
  1068. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1069. "assetType": "native",
  1070. "rid": "fedora.24-x64"
  1071. }
  1072. }
  1073. },
  1074. "runtime.native.System/4.3.0": {
  1075. "type": "package",
  1076. "dependencies": {
  1077. "Microsoft.NETCore.Platforms": "1.1.0",
  1078. "Microsoft.NETCore.Targets": "1.1.0"
  1079. },
  1080. "compile": {
  1081. "lib/netstandard1.0/_._": {}
  1082. },
  1083. "runtime": {
  1084. "lib/netstandard1.0/_._": {}
  1085. }
  1086. },
  1087. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1088. "type": "package",
  1089. "dependencies": {
  1090. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1091. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1092. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1093. }
  1094. },
  1095. "runtime.native.System.IO.Compression/4.3.0": {
  1096. "type": "package",
  1097. "dependencies": {
  1098. "Microsoft.NETCore.Platforms": "1.1.0",
  1099. "Microsoft.NETCore.Targets": "1.1.0"
  1100. },
  1101. "compile": {
  1102. "lib/netstandard1.0/_._": {}
  1103. },
  1104. "runtime": {
  1105. "lib/netstandard1.0/_._": {}
  1106. }
  1107. },
  1108. "runtime.native.System.Net.Http/4.3.0": {
  1109. "type": "package",
  1110. "dependencies": {
  1111. "Microsoft.NETCore.Platforms": "1.1.0",
  1112. "Microsoft.NETCore.Targets": "1.1.0"
  1113. },
  1114. "compile": {
  1115. "lib/netstandard1.0/_._": {}
  1116. },
  1117. "runtime": {
  1118. "lib/netstandard1.0/_._": {}
  1119. }
  1120. },
  1121. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1122. "type": "package",
  1123. "dependencies": {
  1124. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
  1125. },
  1126. "compile": {
  1127. "lib/netstandard1.0/_._": {}
  1128. },
  1129. "runtime": {
  1130. "lib/netstandard1.0/_._": {}
  1131. }
  1132. },
  1133. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1134. "type": "package",
  1135. "dependencies": {
  1136. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1137. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1138. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1139. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1140. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1141. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1142. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1143. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1144. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1145. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1146. },
  1147. "compile": {
  1148. "lib/netstandard1.0/_._": {}
  1149. },
  1150. "runtime": {
  1151. "lib/netstandard1.0/_._": {}
  1152. }
  1153. },
  1154. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1155. "type": "package",
  1156. "runtimeTargets": {
  1157. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1158. "assetType": "native",
  1159. "rid": "opensuse.13.2-x64"
  1160. }
  1161. }
  1162. },
  1163. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1164. "type": "package",
  1165. "runtimeTargets": {
  1166. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1167. "assetType": "native",
  1168. "rid": "opensuse.42.1-x64"
  1169. }
  1170. }
  1171. },
  1172. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1173. "type": "package",
  1174. "runtimeTargets": {
  1175. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1176. "assetType": "native",
  1177. "rid": "osx.10.10-x64"
  1178. }
  1179. }
  1180. },
  1181. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1182. "type": "package",
  1183. "runtimeTargets": {
  1184. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1185. "assetType": "native",
  1186. "rid": "osx.10.10-x64"
  1187. }
  1188. }
  1189. },
  1190. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1191. "type": "package",
  1192. "runtimeTargets": {
  1193. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1194. "assetType": "native",
  1195. "rid": "rhel.7-x64"
  1196. }
  1197. }
  1198. },
  1199. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1200. "type": "package",
  1201. "runtimeTargets": {
  1202. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1203. "assetType": "native",
  1204. "rid": "ubuntu.14.04-x64"
  1205. }
  1206. }
  1207. },
  1208. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1209. "type": "package",
  1210. "runtimeTargets": {
  1211. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1212. "assetType": "native",
  1213. "rid": "ubuntu.16.04-x64"
  1214. }
  1215. }
  1216. },
  1217. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1218. "type": "package",
  1219. "runtimeTargets": {
  1220. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1221. "assetType": "native",
  1222. "rid": "ubuntu.16.10-x64"
  1223. }
  1224. }
  1225. },
  1226. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1227. "type": "package",
  1228. "runtimeTargets": {
  1229. "runtimes/win-arm64/native/sni.dll": {
  1230. "assetType": "native",
  1231. "rid": "win-arm64"
  1232. }
  1233. }
  1234. },
  1235. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1236. "type": "package",
  1237. "runtimeTargets": {
  1238. "runtimes/win-x64/native/sni.dll": {
  1239. "assetType": "native",
  1240. "rid": "win-x64"
  1241. }
  1242. }
  1243. },
  1244. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1245. "type": "package",
  1246. "runtimeTargets": {
  1247. "runtimes/win-x86/native/sni.dll": {
  1248. "assetType": "native",
  1249. "rid": "win-x86"
  1250. }
  1251. }
  1252. },
  1253. "SQLitePCLRaw.bundle_green/1.1.12": {
  1254. "type": "package",
  1255. "dependencies": {
  1256. "SQLitePCLRaw.core": "1.1.12",
  1257. "SQLitePCLRaw.lib.e_sqlite3.linux": "1.1.12",
  1258. "SQLitePCLRaw.lib.e_sqlite3.osx": "1.1.12",
  1259. "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.12",
  1260. "SQLitePCLRaw.provider.e_sqlite3.netstandard11": "1.1.12"
  1261. },
  1262. "compile": {
  1263. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
  1264. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
  1265. },
  1266. "runtime": {
  1267. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
  1268. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
  1269. }
  1270. },
  1271. "SQLitePCLRaw.core/1.1.12": {
  1272. "type": "package",
  1273. "dependencies": {
  1274. "NETStandard.Library": "1.6.0"
  1275. },
  1276. "compile": {
  1277. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  1278. },
  1279. "runtime": {
  1280. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  1281. }
  1282. },
  1283. "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": {
  1284. "type": "package",
  1285. "compile": {
  1286. "lib/netstandard2.0/_._": {}
  1287. },
  1288. "runtime": {
  1289. "lib/netstandard2.0/_._": {}
  1290. },
  1291. "runtimeTargets": {
  1292. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  1293. "assetType": "native",
  1294. "rid": "alpine-x64"
  1295. },
  1296. "runtimes/linux-arm/native/libe_sqlite3.so": {
  1297. "assetType": "native",
  1298. "rid": "linux-arm"
  1299. },
  1300. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  1301. "assetType": "native",
  1302. "rid": "linux-arm64"
  1303. },
  1304. "runtimes/linux-armel/native/libe_sqlite3.so": {
  1305. "assetType": "native",
  1306. "rid": "linux-armel"
  1307. },
  1308. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  1309. "assetType": "native",
  1310. "rid": "linux-musl-x64"
  1311. },
  1312. "runtimes/linux-x64/native/libe_sqlite3.so": {
  1313. "assetType": "native",
  1314. "rid": "linux-x64"
  1315. },
  1316. "runtimes/linux-x86/native/libe_sqlite3.so": {
  1317. "assetType": "native",
  1318. "rid": "linux-x86"
  1319. }
  1320. }
  1321. },
  1322. "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": {
  1323. "type": "package",
  1324. "compile": {
  1325. "lib/netstandard2.0/_._": {}
  1326. },
  1327. "runtime": {
  1328. "lib/netstandard2.0/_._": {}
  1329. },
  1330. "runtimeTargets": {
  1331. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  1332. "assetType": "native",
  1333. "rid": "osx-x64"
  1334. }
  1335. }
  1336. },
  1337. "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": {
  1338. "type": "package",
  1339. "compile": {
  1340. "lib/netstandard2.0/_._": {}
  1341. },
  1342. "runtime": {
  1343. "lib/netstandard2.0/_._": {}
  1344. },
  1345. "runtimeTargets": {
  1346. "runtimes/win-x64/native/e_sqlite3.dll": {
  1347. "assetType": "native",
  1348. "rid": "win-x64"
  1349. },
  1350. "runtimes/win-x86/native/e_sqlite3.dll": {
  1351. "assetType": "native",
  1352. "rid": "win-x86"
  1353. },
  1354. "runtimes/win8-arm/native/e_sqlite3.dll": {
  1355. "assetType": "native",
  1356. "rid": "win8-arm"
  1357. }
  1358. }
  1359. },
  1360. "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": {
  1361. "type": "package",
  1362. "dependencies": {
  1363. "NETStandard.Library": "1.6.0",
  1364. "SQLitePCLRaw.core": "1.1.12"
  1365. },
  1366. "compile": {
  1367. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1368. },
  1369. "runtime": {
  1370. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1371. }
  1372. },
  1373. "sqlSugarCore/5.0.0.18": {
  1374. "type": "package",
  1375. "dependencies": {
  1376. "Microsoft.Data.Sqlite": "2.2.4",
  1377. "MySql.Data": "8.0.15",
  1378. "Newtonsoft.Json": "10.0.3",
  1379. "Npgsql": "3.2.7",
  1380. "Oracle.ManagedDataAccess.Core": "2.18.3",
  1381. "System.Data.Common": "4.3.0",
  1382. "System.Data.SqlClient": "4.4.0",
  1383. "System.Reflection.Emit.Lightweight": "4.3.0"
  1384. },
  1385. "compile": {
  1386. "lib/netstandard2.0/SqlSugar.dll": {}
  1387. },
  1388. "runtime": {
  1389. "lib/netstandard2.0/SqlSugar.dll": {}
  1390. }
  1391. },
  1392. "System.AppContext/4.3.0": {
  1393. "type": "package",
  1394. "dependencies": {
  1395. "System.Runtime": "4.3.0"
  1396. },
  1397. "compile": {
  1398. "ref/netstandard1.6/System.AppContext.dll": {}
  1399. },
  1400. "runtime": {
  1401. "lib/netstandard1.6/System.AppContext.dll": {}
  1402. }
  1403. },
  1404. "System.Buffers/4.3.0": {
  1405. "type": "package",
  1406. "dependencies": {
  1407. "System.Diagnostics.Debug": "4.3.0",
  1408. "System.Diagnostics.Tracing": "4.3.0",
  1409. "System.Resources.ResourceManager": "4.3.0",
  1410. "System.Runtime": "4.3.0",
  1411. "System.Threading": "4.3.0"
  1412. },
  1413. "compile": {
  1414. "lib/netstandard1.1/_._": {}
  1415. },
  1416. "runtime": {
  1417. "lib/netstandard1.1/System.Buffers.dll": {}
  1418. }
  1419. },
  1420. "System.Collections/4.3.0": {
  1421. "type": "package",
  1422. "dependencies": {
  1423. "Microsoft.NETCore.Platforms": "1.1.0",
  1424. "Microsoft.NETCore.Targets": "1.1.0",
  1425. "System.Runtime": "4.3.0"
  1426. },
  1427. "compile": {
  1428. "ref/netstandard1.3/System.Collections.dll": {}
  1429. }
  1430. },
  1431. "System.Collections.Concurrent/4.3.0": {
  1432. "type": "package",
  1433. "dependencies": {
  1434. "System.Collections": "4.3.0",
  1435. "System.Diagnostics.Debug": "4.3.0",
  1436. "System.Diagnostics.Tracing": "4.3.0",
  1437. "System.Globalization": "4.3.0",
  1438. "System.Reflection": "4.3.0",
  1439. "System.Resources.ResourceManager": "4.3.0",
  1440. "System.Runtime": "4.3.0",
  1441. "System.Runtime.Extensions": "4.3.0",
  1442. "System.Threading": "4.3.0",
  1443. "System.Threading.Tasks": "4.3.0"
  1444. },
  1445. "compile": {
  1446. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1447. },
  1448. "runtime": {
  1449. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1450. }
  1451. },
  1452. "System.Collections.Immutable/1.7.1": {
  1453. "type": "package",
  1454. "compile": {
  1455. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1456. },
  1457. "runtime": {
  1458. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1459. }
  1460. },
  1461. "System.Collections.NonGeneric/4.3.0": {
  1462. "type": "package",
  1463. "dependencies": {
  1464. "System.Diagnostics.Debug": "4.3.0",
  1465. "System.Globalization": "4.3.0",
  1466. "System.Resources.ResourceManager": "4.3.0",
  1467. "System.Runtime": "4.3.0",
  1468. "System.Runtime.Extensions": "4.3.0",
  1469. "System.Threading": "4.3.0"
  1470. },
  1471. "compile": {
  1472. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1473. },
  1474. "runtime": {
  1475. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1476. }
  1477. },
  1478. "System.Collections.Specialized/4.3.0": {
  1479. "type": "package",
  1480. "dependencies": {
  1481. "System.Collections.NonGeneric": "4.3.0",
  1482. "System.Globalization": "4.3.0",
  1483. "System.Globalization.Extensions": "4.3.0",
  1484. "System.Resources.ResourceManager": "4.3.0",
  1485. "System.Runtime": "4.3.0",
  1486. "System.Runtime.Extensions": "4.3.0",
  1487. "System.Threading": "4.3.0"
  1488. },
  1489. "compile": {
  1490. "ref/netstandard1.3/_._": {}
  1491. },
  1492. "runtime": {
  1493. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1494. }
  1495. },
  1496. "System.ComponentModel/4.3.0": {
  1497. "type": "package",
  1498. "dependencies": {
  1499. "System.Runtime": "4.3.0"
  1500. },
  1501. "compile": {
  1502. "ref/netstandard1.0/System.ComponentModel.dll": {}
  1503. },
  1504. "runtime": {
  1505. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1506. }
  1507. },
  1508. "System.ComponentModel.Annotations/4.7.0": {
  1509. "type": "package",
  1510. "compile": {
  1511. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1512. },
  1513. "runtime": {
  1514. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1515. }
  1516. },
  1517. "System.ComponentModel.Primitives/4.3.0": {
  1518. "type": "package",
  1519. "dependencies": {
  1520. "System.ComponentModel": "4.3.0",
  1521. "System.Resources.ResourceManager": "4.3.0",
  1522. "System.Runtime": "4.3.0"
  1523. },
  1524. "compile": {
  1525. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1526. },
  1527. "runtime": {
  1528. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1529. }
  1530. },
  1531. "System.ComponentModel.TypeConverter/4.3.0": {
  1532. "type": "package",
  1533. "dependencies": {
  1534. "System.Collections": "4.3.0",
  1535. "System.Collections.NonGeneric": "4.3.0",
  1536. "System.Collections.Specialized": "4.3.0",
  1537. "System.ComponentModel": "4.3.0",
  1538. "System.ComponentModel.Primitives": "4.3.0",
  1539. "System.Globalization": "4.3.0",
  1540. "System.Linq": "4.3.0",
  1541. "System.Reflection": "4.3.0",
  1542. "System.Reflection.Extensions": "4.3.0",
  1543. "System.Reflection.Primitives": "4.3.0",
  1544. "System.Reflection.TypeExtensions": "4.3.0",
  1545. "System.Resources.ResourceManager": "4.3.0",
  1546. "System.Runtime": "4.3.0",
  1547. "System.Runtime.Extensions": "4.3.0",
  1548. "System.Threading": "4.3.0"
  1549. },
  1550. "compile": {
  1551. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1552. },
  1553. "runtime": {
  1554. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1555. }
  1556. },
  1557. "System.Configuration.ConfigurationManager/4.4.1": {
  1558. "type": "package",
  1559. "dependencies": {
  1560. "System.Security.Cryptography.ProtectedData": "4.4.0"
  1561. },
  1562. "compile": {
  1563. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1564. },
  1565. "runtime": {
  1566. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1567. }
  1568. },
  1569. "System.Console/4.3.0": {
  1570. "type": "package",
  1571. "dependencies": {
  1572. "Microsoft.NETCore.Platforms": "1.1.0",
  1573. "Microsoft.NETCore.Targets": "1.1.0",
  1574. "System.IO": "4.3.0",
  1575. "System.Runtime": "4.3.0",
  1576. "System.Text.Encoding": "4.3.0"
  1577. },
  1578. "compile": {
  1579. "ref/netstandard1.3/System.Console.dll": {}
  1580. }
  1581. },
  1582. "System.Data.Common/4.3.0": {
  1583. "type": "package",
  1584. "dependencies": {
  1585. "System.Collections": "4.3.0",
  1586. "System.Globalization": "4.3.0",
  1587. "System.IO": "4.3.0",
  1588. "System.Resources.ResourceManager": "4.3.0",
  1589. "System.Runtime": "4.3.0",
  1590. "System.Runtime.Extensions": "4.3.0",
  1591. "System.Text.RegularExpressions": "4.3.0",
  1592. "System.Threading.Tasks": "4.3.0"
  1593. },
  1594. "compile": {
  1595. "ref/netstandard1.2/System.Data.Common.dll": {}
  1596. },
  1597. "runtime": {
  1598. "lib/netstandard1.2/System.Data.Common.dll": {}
  1599. }
  1600. },
  1601. "System.Data.SqlClient/4.4.0": {
  1602. "type": "package",
  1603. "dependencies": {
  1604. "Microsoft.Win32.Registry": "4.4.0",
  1605. "System.Security.Principal.Windows": "4.4.0",
  1606. "System.Text.Encoding.CodePages": "4.4.0",
  1607. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1608. },
  1609. "compile": {
  1610. "ref/netstandard2.0/System.Data.SqlClient.dll": {}
  1611. },
  1612. "runtime": {
  1613. "lib/netstandard2.0/System.Data.SqlClient.dll": {}
  1614. },
  1615. "runtimeTargets": {
  1616. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1617. "assetType": "runtime",
  1618. "rid": "unix"
  1619. },
  1620. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1621. "assetType": "runtime",
  1622. "rid": "win"
  1623. }
  1624. }
  1625. },
  1626. "System.Diagnostics.Debug/4.3.0": {
  1627. "type": "package",
  1628. "dependencies": {
  1629. "Microsoft.NETCore.Platforms": "1.1.0",
  1630. "Microsoft.NETCore.Targets": "1.1.0",
  1631. "System.Runtime": "4.3.0"
  1632. },
  1633. "compile": {
  1634. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1635. }
  1636. },
  1637. "System.Diagnostics.DiagnosticSource/4.7.1": {
  1638. "type": "package",
  1639. "compile": {
  1640. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1641. },
  1642. "runtime": {
  1643. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1644. }
  1645. },
  1646. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  1647. "type": "package",
  1648. "dependencies": {
  1649. "System.Diagnostics.TraceSource": "4.3.0",
  1650. "System.Globalization": "4.3.0",
  1651. "System.IO": "4.3.0",
  1652. "System.Resources.ResourceManager": "4.3.0",
  1653. "System.Runtime": "4.3.0",
  1654. "System.Threading": "4.3.0"
  1655. },
  1656. "compile": {
  1657. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1658. },
  1659. "runtime": {
  1660. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1661. }
  1662. },
  1663. "System.Diagnostics.Tools/4.3.0": {
  1664. "type": "package",
  1665. "dependencies": {
  1666. "Microsoft.NETCore.Platforms": "1.1.0",
  1667. "Microsoft.NETCore.Targets": "1.1.0",
  1668. "System.Runtime": "4.3.0"
  1669. },
  1670. "compile": {
  1671. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1672. }
  1673. },
  1674. "System.Diagnostics.TraceSource/4.3.0": {
  1675. "type": "package",
  1676. "dependencies": {
  1677. "Microsoft.NETCore.Platforms": "1.1.0",
  1678. "System.Collections": "4.3.0",
  1679. "System.Diagnostics.Debug": "4.3.0",
  1680. "System.Globalization": "4.3.0",
  1681. "System.Resources.ResourceManager": "4.3.0",
  1682. "System.Runtime": "4.3.0",
  1683. "System.Runtime.Extensions": "4.3.0",
  1684. "System.Threading": "4.3.0",
  1685. "runtime.native.System": "4.3.0"
  1686. },
  1687. "compile": {
  1688. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1689. },
  1690. "runtimeTargets": {
  1691. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1692. "assetType": "runtime",
  1693. "rid": "unix"
  1694. },
  1695. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1696. "assetType": "runtime",
  1697. "rid": "win"
  1698. }
  1699. }
  1700. },
  1701. "System.Diagnostics.Tracing/4.3.0": {
  1702. "type": "package",
  1703. "dependencies": {
  1704. "Microsoft.NETCore.Platforms": "1.1.0",
  1705. "Microsoft.NETCore.Targets": "1.1.0",
  1706. "System.Runtime": "4.3.0"
  1707. },
  1708. "compile": {
  1709. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1710. }
  1711. },
  1712. "System.Drawing.Common/4.7.0": {
  1713. "type": "package",
  1714. "dependencies": {
  1715. "Microsoft.NETCore.Platforms": "3.1.0",
  1716. "Microsoft.Win32.SystemEvents": "4.7.0"
  1717. },
  1718. "compile": {
  1719. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  1720. },
  1721. "runtime": {
  1722. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1723. },
  1724. "runtimeTargets": {
  1725. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1726. "assetType": "runtime",
  1727. "rid": "unix"
  1728. },
  1729. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1730. "assetType": "runtime",
  1731. "rid": "win"
  1732. }
  1733. }
  1734. },
  1735. "System.Dynamic.Runtime/4.3.0": {
  1736. "type": "package",
  1737. "dependencies": {
  1738. "System.Collections": "4.3.0",
  1739. "System.Diagnostics.Debug": "4.3.0",
  1740. "System.Linq": "4.3.0",
  1741. "System.Linq.Expressions": "4.3.0",
  1742. "System.ObjectModel": "4.3.0",
  1743. "System.Reflection": "4.3.0",
  1744. "System.Reflection.Emit": "4.3.0",
  1745. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1746. "System.Reflection.Primitives": "4.3.0",
  1747. "System.Reflection.TypeExtensions": "4.3.0",
  1748. "System.Resources.ResourceManager": "4.3.0",
  1749. "System.Runtime": "4.3.0",
  1750. "System.Runtime.Extensions": "4.3.0",
  1751. "System.Threading": "4.3.0"
  1752. },
  1753. "compile": {
  1754. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1755. },
  1756. "runtime": {
  1757. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1758. }
  1759. },
  1760. "System.Globalization/4.3.0": {
  1761. "type": "package",
  1762. "dependencies": {
  1763. "Microsoft.NETCore.Platforms": "1.1.0",
  1764. "Microsoft.NETCore.Targets": "1.1.0",
  1765. "System.Runtime": "4.3.0"
  1766. },
  1767. "compile": {
  1768. "ref/netstandard1.3/System.Globalization.dll": {}
  1769. }
  1770. },
  1771. "System.Globalization.Calendars/4.3.0": {
  1772. "type": "package",
  1773. "dependencies": {
  1774. "Microsoft.NETCore.Platforms": "1.1.0",
  1775. "Microsoft.NETCore.Targets": "1.1.0",
  1776. "System.Globalization": "4.3.0",
  1777. "System.Runtime": "4.3.0"
  1778. },
  1779. "compile": {
  1780. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1781. }
  1782. },
  1783. "System.Globalization.Extensions/4.3.0": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "Microsoft.NETCore.Platforms": "1.1.0",
  1787. "System.Globalization": "4.3.0",
  1788. "System.Resources.ResourceManager": "4.3.0",
  1789. "System.Runtime": "4.3.0",
  1790. "System.Runtime.Extensions": "4.3.0",
  1791. "System.Runtime.InteropServices": "4.3.0"
  1792. },
  1793. "compile": {
  1794. "ref/netstandard1.3/_._": {}
  1795. },
  1796. "runtimeTargets": {
  1797. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1798. "assetType": "runtime",
  1799. "rid": "unix"
  1800. },
  1801. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1802. "assetType": "runtime",
  1803. "rid": "win"
  1804. }
  1805. }
  1806. },
  1807. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  1808. "type": "package",
  1809. "dependencies": {
  1810. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  1811. "Microsoft.IdentityModel.Tokens": "5.6.0",
  1812. "Newtonsoft.Json": "10.0.1"
  1813. },
  1814. "compile": {
  1815. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1816. },
  1817. "runtime": {
  1818. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1819. }
  1820. },
  1821. "System.IO/4.3.0": {
  1822. "type": "package",
  1823. "dependencies": {
  1824. "Microsoft.NETCore.Platforms": "1.1.0",
  1825. "Microsoft.NETCore.Targets": "1.1.0",
  1826. "System.Runtime": "4.3.0",
  1827. "System.Text.Encoding": "4.3.0",
  1828. "System.Threading.Tasks": "4.3.0"
  1829. },
  1830. "compile": {
  1831. "ref/netstandard1.5/System.IO.dll": {}
  1832. }
  1833. },
  1834. "System.IO.Compression/4.3.0": {
  1835. "type": "package",
  1836. "dependencies": {
  1837. "Microsoft.NETCore.Platforms": "1.1.0",
  1838. "System.Buffers": "4.3.0",
  1839. "System.Collections": "4.3.0",
  1840. "System.Diagnostics.Debug": "4.3.0",
  1841. "System.IO": "4.3.0",
  1842. "System.Resources.ResourceManager": "4.3.0",
  1843. "System.Runtime": "4.3.0",
  1844. "System.Runtime.Extensions": "4.3.0",
  1845. "System.Runtime.Handles": "4.3.0",
  1846. "System.Runtime.InteropServices": "4.3.0",
  1847. "System.Text.Encoding": "4.3.0",
  1848. "System.Threading": "4.3.0",
  1849. "System.Threading.Tasks": "4.3.0",
  1850. "runtime.native.System": "4.3.0",
  1851. "runtime.native.System.IO.Compression": "4.3.0"
  1852. },
  1853. "compile": {
  1854. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1855. },
  1856. "runtimeTargets": {
  1857. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1858. "assetType": "runtime",
  1859. "rid": "unix"
  1860. },
  1861. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1862. "assetType": "runtime",
  1863. "rid": "win"
  1864. }
  1865. }
  1866. },
  1867. "System.IO.Compression.ZipFile/4.3.0": {
  1868. "type": "package",
  1869. "dependencies": {
  1870. "System.Buffers": "4.3.0",
  1871. "System.IO": "4.3.0",
  1872. "System.IO.Compression": "4.3.0",
  1873. "System.IO.FileSystem": "4.3.0",
  1874. "System.IO.FileSystem.Primitives": "4.3.0",
  1875. "System.Resources.ResourceManager": "4.3.0",
  1876. "System.Runtime": "4.3.0",
  1877. "System.Runtime.Extensions": "4.3.0",
  1878. "System.Text.Encoding": "4.3.0"
  1879. },
  1880. "compile": {
  1881. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1882. },
  1883. "runtime": {
  1884. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1885. }
  1886. },
  1887. "System.IO.FileSystem/4.3.0": {
  1888. "type": "package",
  1889. "dependencies": {
  1890. "Microsoft.NETCore.Platforms": "1.1.0",
  1891. "Microsoft.NETCore.Targets": "1.1.0",
  1892. "System.IO": "4.3.0",
  1893. "System.IO.FileSystem.Primitives": "4.3.0",
  1894. "System.Runtime": "4.3.0",
  1895. "System.Runtime.Handles": "4.3.0",
  1896. "System.Text.Encoding": "4.3.0",
  1897. "System.Threading.Tasks": "4.3.0"
  1898. },
  1899. "compile": {
  1900. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1901. }
  1902. },
  1903. "System.IO.FileSystem.Primitives/4.3.0": {
  1904. "type": "package",
  1905. "dependencies": {
  1906. "System.Runtime": "4.3.0"
  1907. },
  1908. "compile": {
  1909. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1910. },
  1911. "runtime": {
  1912. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1913. }
  1914. },
  1915. "System.Linq/4.3.0": {
  1916. "type": "package",
  1917. "dependencies": {
  1918. "System.Collections": "4.3.0",
  1919. "System.Diagnostics.Debug": "4.3.0",
  1920. "System.Resources.ResourceManager": "4.3.0",
  1921. "System.Runtime": "4.3.0",
  1922. "System.Runtime.Extensions": "4.3.0"
  1923. },
  1924. "compile": {
  1925. "ref/netstandard1.6/System.Linq.dll": {}
  1926. },
  1927. "runtime": {
  1928. "lib/netstandard1.6/System.Linq.dll": {}
  1929. }
  1930. },
  1931. "System.Linq.Expressions/4.3.0": {
  1932. "type": "package",
  1933. "dependencies": {
  1934. "System.Collections": "4.3.0",
  1935. "System.Diagnostics.Debug": "4.3.0",
  1936. "System.Globalization": "4.3.0",
  1937. "System.IO": "4.3.0",
  1938. "System.Linq": "4.3.0",
  1939. "System.ObjectModel": "4.3.0",
  1940. "System.Reflection": "4.3.0",
  1941. "System.Reflection.Emit": "4.3.0",
  1942. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1943. "System.Reflection.Emit.Lightweight": "4.3.0",
  1944. "System.Reflection.Extensions": "4.3.0",
  1945. "System.Reflection.Primitives": "4.3.0",
  1946. "System.Reflection.TypeExtensions": "4.3.0",
  1947. "System.Resources.ResourceManager": "4.3.0",
  1948. "System.Runtime": "4.3.0",
  1949. "System.Runtime.Extensions": "4.3.0",
  1950. "System.Threading": "4.3.0"
  1951. },
  1952. "compile": {
  1953. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1954. },
  1955. "runtime": {
  1956. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1957. }
  1958. },
  1959. "System.Net.Http/4.3.0": {
  1960. "type": "package",
  1961. "dependencies": {
  1962. "Microsoft.NETCore.Platforms": "1.1.0",
  1963. "System.Collections": "4.3.0",
  1964. "System.Diagnostics.Debug": "4.3.0",
  1965. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1966. "System.Diagnostics.Tracing": "4.3.0",
  1967. "System.Globalization": "4.3.0",
  1968. "System.Globalization.Extensions": "4.3.0",
  1969. "System.IO": "4.3.0",
  1970. "System.IO.FileSystem": "4.3.0",
  1971. "System.Net.Primitives": "4.3.0",
  1972. "System.Resources.ResourceManager": "4.3.0",
  1973. "System.Runtime": "4.3.0",
  1974. "System.Runtime.Extensions": "4.3.0",
  1975. "System.Runtime.Handles": "4.3.0",
  1976. "System.Runtime.InteropServices": "4.3.0",
  1977. "System.Security.Cryptography.Algorithms": "4.3.0",
  1978. "System.Security.Cryptography.Encoding": "4.3.0",
  1979. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1980. "System.Security.Cryptography.Primitives": "4.3.0",
  1981. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1982. "System.Text.Encoding": "4.3.0",
  1983. "System.Threading": "4.3.0",
  1984. "System.Threading.Tasks": "4.3.0",
  1985. "runtime.native.System": "4.3.0",
  1986. "runtime.native.System.Net.Http": "4.3.0",
  1987. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1988. },
  1989. "compile": {
  1990. "ref/netstandard1.3/System.Net.Http.dll": {}
  1991. },
  1992. "runtimeTargets": {
  1993. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1994. "assetType": "runtime",
  1995. "rid": "unix"
  1996. },
  1997. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1998. "assetType": "runtime",
  1999. "rid": "win"
  2000. }
  2001. }
  2002. },
  2003. "System.Net.Http.WinHttpHandler/4.4.0": {
  2004. "type": "package",
  2005. "compile": {
  2006. "ref/netstandard2.0/_._": {}
  2007. },
  2008. "runtime": {
  2009. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {}
  2010. },
  2011. "runtimeTargets": {
  2012. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
  2013. "assetType": "runtime",
  2014. "rid": "win"
  2015. }
  2016. }
  2017. },
  2018. "System.Net.Primitives/4.3.0": {
  2019. "type": "package",
  2020. "dependencies": {
  2021. "Microsoft.NETCore.Platforms": "1.1.0",
  2022. "Microsoft.NETCore.Targets": "1.1.0",
  2023. "System.Runtime": "4.3.0",
  2024. "System.Runtime.Handles": "4.3.0"
  2025. },
  2026. "compile": {
  2027. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  2028. }
  2029. },
  2030. "System.Net.Requests/4.3.0": {
  2031. "type": "package",
  2032. "dependencies": {
  2033. "Microsoft.NETCore.Platforms": "1.1.0",
  2034. "System.Collections": "4.3.0",
  2035. "System.Diagnostics.Debug": "4.3.0",
  2036. "System.Diagnostics.Tracing": "4.3.0",
  2037. "System.Globalization": "4.3.0",
  2038. "System.IO": "4.3.0",
  2039. "System.Net.Http": "4.3.0",
  2040. "System.Net.Primitives": "4.3.0",
  2041. "System.Net.WebHeaderCollection": "4.3.0",
  2042. "System.Resources.ResourceManager": "4.3.0",
  2043. "System.Runtime": "4.3.0",
  2044. "System.Threading": "4.3.0",
  2045. "System.Threading.Tasks": "4.3.0"
  2046. },
  2047. "compile": {
  2048. "ref/netstandard1.3/System.Net.Requests.dll": {}
  2049. },
  2050. "runtimeTargets": {
  2051. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": {
  2052. "assetType": "runtime",
  2053. "rid": "unix"
  2054. },
  2055. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {
  2056. "assetType": "runtime",
  2057. "rid": "win"
  2058. }
  2059. }
  2060. },
  2061. "System.Net.Sockets/4.3.0": {
  2062. "type": "package",
  2063. "dependencies": {
  2064. "Microsoft.NETCore.Platforms": "1.1.0",
  2065. "Microsoft.NETCore.Targets": "1.1.0",
  2066. "System.IO": "4.3.0",
  2067. "System.Net.Primitives": "4.3.0",
  2068. "System.Runtime": "4.3.0",
  2069. "System.Threading.Tasks": "4.3.0"
  2070. },
  2071. "compile": {
  2072. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  2073. }
  2074. },
  2075. "System.Net.WebHeaderCollection/4.3.0": {
  2076. "type": "package",
  2077. "dependencies": {
  2078. "System.Collections": "4.3.0",
  2079. "System.Resources.ResourceManager": "4.3.0",
  2080. "System.Runtime": "4.3.0",
  2081. "System.Runtime.Extensions": "4.3.0"
  2082. },
  2083. "compile": {
  2084. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2085. },
  2086. "runtime": {
  2087. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2088. }
  2089. },
  2090. "System.ObjectModel/4.3.0": {
  2091. "type": "package",
  2092. "dependencies": {
  2093. "System.Collections": "4.3.0",
  2094. "System.Diagnostics.Debug": "4.3.0",
  2095. "System.Resources.ResourceManager": "4.3.0",
  2096. "System.Runtime": "4.3.0",
  2097. "System.Threading": "4.3.0"
  2098. },
  2099. "compile": {
  2100. "ref/netstandard1.3/System.ObjectModel.dll": {}
  2101. },
  2102. "runtime": {
  2103. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2104. }
  2105. },
  2106. "System.Private.ServiceModel/4.4.4": {
  2107. "type": "package",
  2108. "dependencies": {
  2109. "Microsoft.NETCore.Platforms": "2.0.0",
  2110. "System.Net.Http.WinHttpHandler": "4.4.0",
  2111. "System.Reflection.DispatchProxy": "4.4.0",
  2112. "System.Security.Principal.Windows": "4.4.0"
  2113. },
  2114. "compile": {
  2115. "ref/netstandard/_._": {}
  2116. },
  2117. "runtimeTargets": {
  2118. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  2119. "assetType": "runtime",
  2120. "rid": "unix"
  2121. },
  2122. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  2123. "assetType": "runtime",
  2124. "rid": "win7"
  2125. }
  2126. }
  2127. },
  2128. "System.Reflection/4.3.0": {
  2129. "type": "package",
  2130. "dependencies": {
  2131. "Microsoft.NETCore.Platforms": "1.1.0",
  2132. "Microsoft.NETCore.Targets": "1.1.0",
  2133. "System.IO": "4.3.0",
  2134. "System.Reflection.Primitives": "4.3.0",
  2135. "System.Runtime": "4.3.0"
  2136. },
  2137. "compile": {
  2138. "ref/netstandard1.5/System.Reflection.dll": {}
  2139. }
  2140. },
  2141. "System.Reflection.DispatchProxy/4.4.0": {
  2142. "type": "package",
  2143. "compile": {
  2144. "ref/netcoreapp2.0/_._": {}
  2145. },
  2146. "runtime": {
  2147. "lib/netcoreapp2.0/_._": {}
  2148. }
  2149. },
  2150. "System.Reflection.Emit/4.3.0": {
  2151. "type": "package",
  2152. "dependencies": {
  2153. "System.IO": "4.3.0",
  2154. "System.Reflection": "4.3.0",
  2155. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2156. "System.Reflection.Primitives": "4.3.0",
  2157. "System.Runtime": "4.3.0"
  2158. },
  2159. "compile": {
  2160. "ref/netstandard1.1/_._": {}
  2161. },
  2162. "runtime": {
  2163. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2164. }
  2165. },
  2166. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2167. "type": "package",
  2168. "dependencies": {
  2169. "System.Reflection": "4.3.0",
  2170. "System.Reflection.Primitives": "4.3.0",
  2171. "System.Runtime": "4.3.0"
  2172. },
  2173. "compile": {
  2174. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
  2175. },
  2176. "runtime": {
  2177. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2178. }
  2179. },
  2180. "System.Reflection.Emit.Lightweight/4.3.0": {
  2181. "type": "package",
  2182. "dependencies": {
  2183. "System.Reflection": "4.3.0",
  2184. "System.Reflection.Emit.ILGeneration": "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.Lightweight.dll": {}
  2190. },
  2191. "runtime": {
  2192. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2193. }
  2194. },
  2195. "System.Reflection.Extensions/4.3.0": {
  2196. "type": "package",
  2197. "dependencies": {
  2198. "Microsoft.NETCore.Platforms": "1.1.0",
  2199. "Microsoft.NETCore.Targets": "1.1.0",
  2200. "System.Reflection": "4.3.0",
  2201. "System.Runtime": "4.3.0"
  2202. },
  2203. "compile": {
  2204. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  2205. }
  2206. },
  2207. "System.Reflection.Primitives/4.3.0": {
  2208. "type": "package",
  2209. "dependencies": {
  2210. "Microsoft.NETCore.Platforms": "1.1.0",
  2211. "Microsoft.NETCore.Targets": "1.1.0",
  2212. "System.Runtime": "4.3.0"
  2213. },
  2214. "compile": {
  2215. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  2216. }
  2217. },
  2218. "System.Reflection.TypeExtensions/4.7.0": {
  2219. "type": "package",
  2220. "compile": {
  2221. "ref/netcoreapp2.0/_._": {}
  2222. },
  2223. "runtime": {
  2224. "lib/netcoreapp2.0/_._": {}
  2225. }
  2226. },
  2227. "System.Resources.ResourceManager/4.3.0": {
  2228. "type": "package",
  2229. "dependencies": {
  2230. "Microsoft.NETCore.Platforms": "1.1.0",
  2231. "Microsoft.NETCore.Targets": "1.1.0",
  2232. "System.Globalization": "4.3.0",
  2233. "System.Reflection": "4.3.0",
  2234. "System.Runtime": "4.3.0"
  2235. },
  2236. "compile": {
  2237. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  2238. }
  2239. },
  2240. "System.Runtime/4.3.0": {
  2241. "type": "package",
  2242. "dependencies": {
  2243. "Microsoft.NETCore.Platforms": "1.1.0",
  2244. "Microsoft.NETCore.Targets": "1.1.0"
  2245. },
  2246. "compile": {
  2247. "ref/netstandard1.5/System.Runtime.dll": {}
  2248. }
  2249. },
  2250. "System.Runtime.Extensions/4.3.0": {
  2251. "type": "package",
  2252. "dependencies": {
  2253. "Microsoft.NETCore.Platforms": "1.1.0",
  2254. "Microsoft.NETCore.Targets": "1.1.0",
  2255. "System.Runtime": "4.3.0"
  2256. },
  2257. "compile": {
  2258. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  2259. }
  2260. },
  2261. "System.Runtime.Handles/4.3.0": {
  2262. "type": "package",
  2263. "dependencies": {
  2264. "Microsoft.NETCore.Platforms": "1.1.0",
  2265. "Microsoft.NETCore.Targets": "1.1.0",
  2266. "System.Runtime": "4.3.0"
  2267. },
  2268. "compile": {
  2269. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  2270. }
  2271. },
  2272. "System.Runtime.InteropServices/4.3.0": {
  2273. "type": "package",
  2274. "dependencies": {
  2275. "Microsoft.NETCore.Platforms": "1.1.0",
  2276. "Microsoft.NETCore.Targets": "1.1.0",
  2277. "System.Reflection": "4.3.0",
  2278. "System.Reflection.Primitives": "4.3.0",
  2279. "System.Runtime": "4.3.0",
  2280. "System.Runtime.Handles": "4.3.0"
  2281. },
  2282. "compile": {
  2283. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2284. }
  2285. },
  2286. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2287. "type": "package",
  2288. "dependencies": {
  2289. "System.Reflection": "4.3.0",
  2290. "System.Reflection.Extensions": "4.3.0",
  2291. "System.Resources.ResourceManager": "4.3.0",
  2292. "System.Runtime": "4.3.0",
  2293. "System.Runtime.InteropServices": "4.3.0",
  2294. "System.Threading": "4.3.0",
  2295. "runtime.native.System": "4.3.0"
  2296. },
  2297. "compile": {
  2298. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2299. },
  2300. "runtime": {
  2301. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2302. },
  2303. "runtimeTargets": {
  2304. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2305. "assetType": "runtime",
  2306. "rid": "unix"
  2307. },
  2308. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2309. "assetType": "runtime",
  2310. "rid": "win"
  2311. }
  2312. }
  2313. },
  2314. "System.Runtime.Loader/4.3.0": {
  2315. "type": "package",
  2316. "dependencies": {
  2317. "System.IO": "4.3.0",
  2318. "System.Reflection": "4.3.0",
  2319. "System.Runtime": "4.3.0"
  2320. },
  2321. "compile": {
  2322. "ref/netstandard1.5/System.Runtime.Loader.dll": {}
  2323. },
  2324. "runtime": {
  2325. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  2326. }
  2327. },
  2328. "System.Runtime.Numerics/4.3.0": {
  2329. "type": "package",
  2330. "dependencies": {
  2331. "System.Globalization": "4.3.0",
  2332. "System.Resources.ResourceManager": "4.3.0",
  2333. "System.Runtime": "4.3.0",
  2334. "System.Runtime.Extensions": "4.3.0"
  2335. },
  2336. "compile": {
  2337. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  2338. },
  2339. "runtime": {
  2340. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2341. }
  2342. },
  2343. "System.Runtime.Serialization.Formatters/4.3.0": {
  2344. "type": "package",
  2345. "dependencies": {
  2346. "System.Collections": "4.3.0",
  2347. "System.Reflection": "4.3.0",
  2348. "System.Resources.ResourceManager": "4.3.0",
  2349. "System.Runtime": "4.3.0",
  2350. "System.Runtime.Serialization.Primitives": "4.3.0"
  2351. },
  2352. "compile": {
  2353. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {}
  2354. },
  2355. "runtime": {
  2356. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  2357. }
  2358. },
  2359. "System.Runtime.Serialization.Primitives/4.3.0": {
  2360. "type": "package",
  2361. "dependencies": {
  2362. "System.Resources.ResourceManager": "4.3.0",
  2363. "System.Runtime": "4.3.0"
  2364. },
  2365. "compile": {
  2366. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2367. },
  2368. "runtime": {
  2369. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2370. }
  2371. },
  2372. "System.Security.AccessControl/4.4.0": {
  2373. "type": "package",
  2374. "dependencies": {
  2375. "Microsoft.NETCore.Platforms": "2.0.0",
  2376. "System.Security.Principal.Windows": "4.4.0"
  2377. },
  2378. "compile": {
  2379. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  2380. },
  2381. "runtime": {
  2382. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2383. },
  2384. "runtimeTargets": {
  2385. "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2386. "assetType": "runtime",
  2387. "rid": "unix"
  2388. },
  2389. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2390. "assetType": "runtime",
  2391. "rid": "win"
  2392. }
  2393. }
  2394. },
  2395. "System.Security.Cryptography.Algorithms/4.3.1": {
  2396. "type": "package",
  2397. "dependencies": {
  2398. "Microsoft.NETCore.Platforms": "1.1.0",
  2399. "System.Collections": "4.3.0",
  2400. "System.IO": "4.3.0",
  2401. "System.Resources.ResourceManager": "4.3.0",
  2402. "System.Runtime": "4.3.0",
  2403. "System.Runtime.Extensions": "4.3.0",
  2404. "System.Runtime.Handles": "4.3.0",
  2405. "System.Runtime.InteropServices": "4.3.0",
  2406. "System.Runtime.Numerics": "4.3.0",
  2407. "System.Security.Cryptography.Encoding": "4.3.0",
  2408. "System.Security.Cryptography.Primitives": "4.3.0",
  2409. "System.Text.Encoding": "4.3.0",
  2410. "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
  2411. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  2412. },
  2413. "compile": {
  2414. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2415. },
  2416. "runtimeTargets": {
  2417. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2418. "assetType": "runtime",
  2419. "rid": "osx"
  2420. },
  2421. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2422. "assetType": "runtime",
  2423. "rid": "unix"
  2424. },
  2425. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2426. "assetType": "runtime",
  2427. "rid": "win"
  2428. }
  2429. }
  2430. },
  2431. "System.Security.Cryptography.Cng/4.5.0": {
  2432. "type": "package",
  2433. "compile": {
  2434. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2435. },
  2436. "runtime": {
  2437. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2438. },
  2439. "runtimeTargets": {
  2440. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2441. "assetType": "runtime",
  2442. "rid": "win"
  2443. }
  2444. }
  2445. },
  2446. "System.Security.Cryptography.Csp/4.3.0": {
  2447. "type": "package",
  2448. "dependencies": {
  2449. "Microsoft.NETCore.Platforms": "1.1.0",
  2450. "System.IO": "4.3.0",
  2451. "System.Reflection": "4.3.0",
  2452. "System.Resources.ResourceManager": "4.3.0",
  2453. "System.Runtime": "4.3.0",
  2454. "System.Runtime.Extensions": "4.3.0",
  2455. "System.Runtime.Handles": "4.3.0",
  2456. "System.Runtime.InteropServices": "4.3.0",
  2457. "System.Security.Cryptography.Algorithms": "4.3.0",
  2458. "System.Security.Cryptography.Encoding": "4.3.0",
  2459. "System.Security.Cryptography.Primitives": "4.3.0",
  2460. "System.Text.Encoding": "4.3.0",
  2461. "System.Threading": "4.3.0"
  2462. },
  2463. "compile": {
  2464. "ref/netstandard1.3/_._": {}
  2465. },
  2466. "runtimeTargets": {
  2467. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2468. "assetType": "runtime",
  2469. "rid": "unix"
  2470. },
  2471. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2472. "assetType": "runtime",
  2473. "rid": "win"
  2474. }
  2475. }
  2476. },
  2477. "System.Security.Cryptography.Encoding/4.3.0": {
  2478. "type": "package",
  2479. "dependencies": {
  2480. "Microsoft.NETCore.Platforms": "1.1.0",
  2481. "System.Collections": "4.3.0",
  2482. "System.Collections.Concurrent": "4.3.0",
  2483. "System.Linq": "4.3.0",
  2484. "System.Resources.ResourceManager": "4.3.0",
  2485. "System.Runtime": "4.3.0",
  2486. "System.Runtime.Extensions": "4.3.0",
  2487. "System.Runtime.Handles": "4.3.0",
  2488. "System.Runtime.InteropServices": "4.3.0",
  2489. "System.Security.Cryptography.Primitives": "4.3.0",
  2490. "System.Text.Encoding": "4.3.0",
  2491. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2492. },
  2493. "compile": {
  2494. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2495. },
  2496. "runtimeTargets": {
  2497. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2498. "assetType": "runtime",
  2499. "rid": "unix"
  2500. },
  2501. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2502. "assetType": "runtime",
  2503. "rid": "win"
  2504. }
  2505. }
  2506. },
  2507. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2508. "type": "package",
  2509. "dependencies": {
  2510. "System.Collections": "4.3.0",
  2511. "System.IO": "4.3.0",
  2512. "System.Resources.ResourceManager": "4.3.0",
  2513. "System.Runtime": "4.3.0",
  2514. "System.Runtime.Extensions": "4.3.0",
  2515. "System.Runtime.Handles": "4.3.0",
  2516. "System.Runtime.InteropServices": "4.3.0",
  2517. "System.Runtime.Numerics": "4.3.0",
  2518. "System.Security.Cryptography.Algorithms": "4.3.0",
  2519. "System.Security.Cryptography.Encoding": "4.3.0",
  2520. "System.Security.Cryptography.Primitives": "4.3.0",
  2521. "System.Text.Encoding": "4.3.0",
  2522. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2523. },
  2524. "compile": {
  2525. "ref/netstandard1.6/_._": {}
  2526. },
  2527. "runtime": {
  2528. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2529. },
  2530. "runtimeTargets": {
  2531. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2532. "assetType": "runtime",
  2533. "rid": "unix"
  2534. }
  2535. }
  2536. },
  2537. "System.Security.Cryptography.Primitives/4.3.0": {
  2538. "type": "package",
  2539. "dependencies": {
  2540. "System.Diagnostics.Debug": "4.3.0",
  2541. "System.Globalization": "4.3.0",
  2542. "System.IO": "4.3.0",
  2543. "System.Resources.ResourceManager": "4.3.0",
  2544. "System.Runtime": "4.3.0",
  2545. "System.Threading": "4.3.0",
  2546. "System.Threading.Tasks": "4.3.0"
  2547. },
  2548. "compile": {
  2549. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2550. },
  2551. "runtime": {
  2552. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2553. }
  2554. },
  2555. "System.Security.Cryptography.ProtectedData/4.4.0": {
  2556. "type": "package",
  2557. "compile": {
  2558. "ref/netstandard2.0/_._": {}
  2559. },
  2560. "runtime": {
  2561. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2562. },
  2563. "runtimeTargets": {
  2564. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2565. "assetType": "runtime",
  2566. "rid": "win"
  2567. }
  2568. }
  2569. },
  2570. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2571. "type": "package",
  2572. "dependencies": {
  2573. "Microsoft.NETCore.Platforms": "1.1.0",
  2574. "System.Collections": "4.3.0",
  2575. "System.Diagnostics.Debug": "4.3.0",
  2576. "System.Globalization": "4.3.0",
  2577. "System.Globalization.Calendars": "4.3.0",
  2578. "System.IO": "4.3.0",
  2579. "System.IO.FileSystem": "4.3.0",
  2580. "System.IO.FileSystem.Primitives": "4.3.0",
  2581. "System.Resources.ResourceManager": "4.3.0",
  2582. "System.Runtime": "4.3.0",
  2583. "System.Runtime.Extensions": "4.3.0",
  2584. "System.Runtime.Handles": "4.3.0",
  2585. "System.Runtime.InteropServices": "4.3.0",
  2586. "System.Runtime.Numerics": "4.3.0",
  2587. "System.Security.Cryptography.Algorithms": "4.3.0",
  2588. "System.Security.Cryptography.Cng": "4.3.0",
  2589. "System.Security.Cryptography.Csp": "4.3.0",
  2590. "System.Security.Cryptography.Encoding": "4.3.0",
  2591. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2592. "System.Security.Cryptography.Primitives": "4.3.0",
  2593. "System.Text.Encoding": "4.3.0",
  2594. "System.Threading": "4.3.0",
  2595. "runtime.native.System": "4.3.0",
  2596. "runtime.native.System.Net.Http": "4.3.0",
  2597. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2598. },
  2599. "compile": {
  2600. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2601. },
  2602. "runtimeTargets": {
  2603. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2604. "assetType": "runtime",
  2605. "rid": "unix"
  2606. },
  2607. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2608. "assetType": "runtime",
  2609. "rid": "win"
  2610. }
  2611. }
  2612. },
  2613. "System.Security.Permissions/4.4.1": {
  2614. "type": "package",
  2615. "dependencies": {
  2616. "System.Security.AccessControl": "4.4.0"
  2617. },
  2618. "compile": {
  2619. "ref/netstandard2.0/System.Security.Permissions.dll": {}
  2620. },
  2621. "runtime": {
  2622. "lib/netstandard2.0/System.Security.Permissions.dll": {}
  2623. }
  2624. },
  2625. "System.Security.Principal.Windows/4.4.0": {
  2626. "type": "package",
  2627. "dependencies": {
  2628. "Microsoft.NETCore.Platforms": "2.0.0"
  2629. },
  2630. "compile": {
  2631. "ref/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2632. },
  2633. "runtime": {
  2634. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2635. },
  2636. "runtimeTargets": {
  2637. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  2638. "assetType": "runtime",
  2639. "rid": "unix"
  2640. },
  2641. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  2642. "assetType": "runtime",
  2643. "rid": "win"
  2644. }
  2645. }
  2646. },
  2647. "System.ServiceModel.Duplex/4.4.4": {
  2648. "type": "package",
  2649. "dependencies": {
  2650. "System.Private.ServiceModel": "4.4.4",
  2651. "System.ServiceModel.Primitives": "4.4.4"
  2652. },
  2653. "compile": {
  2654. "ref/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2655. },
  2656. "runtime": {
  2657. "lib/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2658. }
  2659. },
  2660. "System.ServiceModel.Http/4.4.4": {
  2661. "type": "package",
  2662. "dependencies": {
  2663. "System.Private.ServiceModel": "4.4.4",
  2664. "System.ServiceModel.Primitives": "4.4.4"
  2665. },
  2666. "compile": {
  2667. "ref/netstandard2.0/System.ServiceModel.Http.dll": {}
  2668. },
  2669. "runtime": {
  2670. "lib/netstandard2.0/System.ServiceModel.Http.dll": {}
  2671. }
  2672. },
  2673. "System.ServiceModel.NetTcp/4.4.4": {
  2674. "type": "package",
  2675. "dependencies": {
  2676. "System.Private.ServiceModel": "4.4.4",
  2677. "System.ServiceModel.Primitives": "4.4.4"
  2678. },
  2679. "compile": {
  2680. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2681. },
  2682. "runtime": {
  2683. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2684. }
  2685. },
  2686. "System.ServiceModel.Primitives/4.4.4": {
  2687. "type": "package",
  2688. "dependencies": {
  2689. "System.Private.ServiceModel": "4.4.4"
  2690. },
  2691. "compile": {
  2692. "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2693. "ref/netstandard2.0/System.ServiceModel.dll": {}
  2694. },
  2695. "runtime": {
  2696. "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2697. "lib/netstandard2.0/System.ServiceModel.dll": {}
  2698. }
  2699. },
  2700. "System.ServiceModel.Security/4.4.4": {
  2701. "type": "package",
  2702. "dependencies": {
  2703. "System.Private.ServiceModel": "4.4.4",
  2704. "System.ServiceModel.Primitives": "4.4.4"
  2705. },
  2706. "compile": {
  2707. "ref/netstandard2.0/System.ServiceModel.Security.dll": {}
  2708. },
  2709. "runtime": {
  2710. "lib/netstandard2.0/System.ServiceModel.Security.dll": {}
  2711. }
  2712. },
  2713. "System.Text.Encoding/4.3.0": {
  2714. "type": "package",
  2715. "dependencies": {
  2716. "Microsoft.NETCore.Platforms": "1.1.0",
  2717. "Microsoft.NETCore.Targets": "1.1.0",
  2718. "System.Runtime": "4.3.0"
  2719. },
  2720. "compile": {
  2721. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2722. }
  2723. },
  2724. "System.Text.Encoding.CodePages/4.7.1": {
  2725. "type": "package",
  2726. "dependencies": {
  2727. "Microsoft.NETCore.Platforms": "3.1.1"
  2728. },
  2729. "compile": {
  2730. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2731. },
  2732. "runtime": {
  2733. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2734. },
  2735. "runtimeTargets": {
  2736. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2737. "assetType": "runtime",
  2738. "rid": "win"
  2739. }
  2740. }
  2741. },
  2742. "System.Text.Encoding.Extensions/4.3.0": {
  2743. "type": "package",
  2744. "dependencies": {
  2745. "Microsoft.NETCore.Platforms": "1.1.0",
  2746. "Microsoft.NETCore.Targets": "1.1.0",
  2747. "System.Runtime": "4.3.0",
  2748. "System.Text.Encoding": "4.3.0"
  2749. },
  2750. "compile": {
  2751. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2752. }
  2753. },
  2754. "System.Text.Encodings.Web/4.5.0": {
  2755. "type": "package",
  2756. "compile": {
  2757. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2758. },
  2759. "runtime": {
  2760. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2761. }
  2762. },
  2763. "System.Text.RegularExpressions/4.3.0": {
  2764. "type": "package",
  2765. "dependencies": {
  2766. "System.Runtime": "4.3.0"
  2767. },
  2768. "compile": {
  2769. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2770. },
  2771. "runtime": {
  2772. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2773. }
  2774. },
  2775. "System.Threading/4.3.0": {
  2776. "type": "package",
  2777. "dependencies": {
  2778. "System.Runtime": "4.3.0",
  2779. "System.Threading.Tasks": "4.3.0"
  2780. },
  2781. "compile": {
  2782. "ref/netstandard1.3/System.Threading.dll": {}
  2783. },
  2784. "runtime": {
  2785. "lib/netstandard1.3/System.Threading.dll": {}
  2786. }
  2787. },
  2788. "System.Threading.Tasks/4.3.0": {
  2789. "type": "package",
  2790. "dependencies": {
  2791. "Microsoft.NETCore.Platforms": "1.1.0",
  2792. "Microsoft.NETCore.Targets": "1.1.0",
  2793. "System.Runtime": "4.3.0"
  2794. },
  2795. "compile": {
  2796. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2797. }
  2798. },
  2799. "System.Threading.Tasks.Extensions/4.3.0": {
  2800. "type": "package",
  2801. "dependencies": {
  2802. "System.Collections": "4.3.0",
  2803. "System.Runtime": "4.3.0",
  2804. "System.Threading.Tasks": "4.3.0"
  2805. },
  2806. "compile": {
  2807. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2808. },
  2809. "runtime": {
  2810. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2811. }
  2812. },
  2813. "System.Threading.Timer/4.3.0": {
  2814. "type": "package",
  2815. "dependencies": {
  2816. "Microsoft.NETCore.Platforms": "1.1.0",
  2817. "Microsoft.NETCore.Targets": "1.1.0",
  2818. "System.Runtime": "4.3.0"
  2819. },
  2820. "compile": {
  2821. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2822. }
  2823. },
  2824. "System.Xml.ReaderWriter/4.3.1": {
  2825. "type": "package",
  2826. "dependencies": {
  2827. "System.Collections": "4.3.0",
  2828. "System.Diagnostics.Debug": "4.3.0",
  2829. "System.Globalization": "4.3.0",
  2830. "System.IO": "4.3.0",
  2831. "System.IO.FileSystem": "4.3.0",
  2832. "System.IO.FileSystem.Primitives": "4.3.0",
  2833. "System.Resources.ResourceManager": "4.3.0",
  2834. "System.Runtime": "4.3.0",
  2835. "System.Runtime.Extensions": "4.3.0",
  2836. "System.Runtime.InteropServices": "4.3.0",
  2837. "System.Text.Encoding": "4.3.0",
  2838. "System.Text.Encoding.Extensions": "4.3.0",
  2839. "System.Text.RegularExpressions": "4.3.0",
  2840. "System.Threading.Tasks": "4.3.0",
  2841. "System.Threading.Tasks.Extensions": "4.3.0"
  2842. },
  2843. "compile": {
  2844. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2845. },
  2846. "runtime": {
  2847. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2848. }
  2849. },
  2850. "System.Xml.XDocument/4.3.0": {
  2851. "type": "package",
  2852. "dependencies": {
  2853. "System.Collections": "4.3.0",
  2854. "System.Diagnostics.Debug": "4.3.0",
  2855. "System.Diagnostics.Tools": "4.3.0",
  2856. "System.Globalization": "4.3.0",
  2857. "System.IO": "4.3.0",
  2858. "System.Reflection": "4.3.0",
  2859. "System.Resources.ResourceManager": "4.3.0",
  2860. "System.Runtime": "4.3.0",
  2861. "System.Runtime.Extensions": "4.3.0",
  2862. "System.Text.Encoding": "4.3.0",
  2863. "System.Threading": "4.3.0",
  2864. "System.Xml.ReaderWriter": "4.3.0"
  2865. },
  2866. "compile": {
  2867. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2868. },
  2869. "runtime": {
  2870. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2871. }
  2872. },
  2873. "System.Xml.XmlDocument/4.3.0": {
  2874. "type": "package",
  2875. "dependencies": {
  2876. "System.Collections": "4.3.0",
  2877. "System.Diagnostics.Debug": "4.3.0",
  2878. "System.Globalization": "4.3.0",
  2879. "System.IO": "4.3.0",
  2880. "System.Resources.ResourceManager": "4.3.0",
  2881. "System.Runtime": "4.3.0",
  2882. "System.Runtime.Extensions": "4.3.0",
  2883. "System.Text.Encoding": "4.3.0",
  2884. "System.Threading": "4.3.0",
  2885. "System.Xml.ReaderWriter": "4.3.0"
  2886. },
  2887. "compile": {
  2888. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2889. },
  2890. "runtime": {
  2891. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2892. }
  2893. },
  2894. "WebAPIBase.NetCore.BusinessCore/1.0.0": {
  2895. "type": "project",
  2896. "framework": ".NETStandard,Version=v2.1",
  2897. "dependencies": {
  2898. "Microsoft.Extensions.Configuration.Abstractions": "3.1.10",
  2899. "NLog": "4.7.5",
  2900. "System.ServiceModel.Duplex": "4.4.0",
  2901. "System.ServiceModel.Http": "4.4.0",
  2902. "System.ServiceModel.NetTcp": "4.4.0",
  2903. "System.ServiceModel.Security": "4.4.0",
  2904. "WebAPIBase.NetCore.Enties": "1.0.0",
  2905. "WebAPIBase.Utils": "1.0.0",
  2906. "iTextSharp.LGPLv2.Core": "1.7.0",
  2907. "sqlSugarCore": "5.0.0.18"
  2908. },
  2909. "compile": {
  2910. "bin/placeholder/WebAPIBase.NetCore.BusinessCore.dll": {}
  2911. },
  2912. "runtime": {
  2913. "bin/placeholder/WebAPIBase.NetCore.BusinessCore.dll": {}
  2914. }
  2915. },
  2916. "WebAPIBase.NetCore.Enties/1.0.0": {
  2917. "type": "project",
  2918. "framework": ".NETStandard,Version=v2.1",
  2919. "dependencies": {
  2920. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "3.1.10",
  2921. "Microsoft.Extensions.Identity.Stores": "3.1.10",
  2922. "WebAPIBase.Utils": "1.0.0",
  2923. "sqlSugarCore": "5.0.0.18"
  2924. },
  2925. "compile": {
  2926. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  2927. },
  2928. "runtime": {
  2929. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  2930. }
  2931. },
  2932. "WebAPIBase.Utils/1.0.0": {
  2933. "type": "project",
  2934. "framework": ".NETStandard,Version=v2.0",
  2935. "dependencies": {
  2936. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  2937. "Microsoft.Extensions.Caching.Memory": "3.1.2",
  2938. "Microsoft.Extensions.Configuration": "3.1.10",
  2939. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  2940. "Microsoft.Extensions.Configuration.Json": "3.1.2",
  2941. "Microsoft.NETCore.Runtime.CoreCLR": "2.0.8",
  2942. "NLog": "4.7.5",
  2943. "NLog.Web.AspNetCore": "4.9.3",
  2944. "System.Drawing.Common": "4.7.0",
  2945. "System.IdentityModel.Tokens.Jwt": "5.6.0"
  2946. },
  2947. "compile": {
  2948. "bin/placeholder/WebAPIBase.Utils.dll": {}
  2949. },
  2950. "runtime": {
  2951. "bin/placeholder/WebAPIBase.Utils.dll": {}
  2952. }
  2953. }
  2954. }
  2955. },
  2956. "libraries": {
  2957. "coverlet.collector/1.2.0": {
  2958. "sha512": "ZB+EGXsVBIn8cew7D3S2c+rgIlokKv1dSwsXEoiFQaNXF/BSxp9Rlfz/jV1ehSWH5XpLitfRxFNW3ok7uPDOXA==",
  2959. "type": "package",
  2960. "path": "coverlet.collector/1.2.0",
  2961. "files": [
  2962. ".nupkg.metadata",
  2963. ".signature.p7s",
  2964. "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll",
  2965. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2966. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll",
  2967. "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll",
  2968. "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  2969. "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  2970. "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2971. "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2972. "build/netstandard1.0/Mono.Cecil.Mdb.dll",
  2973. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  2974. "build/netstandard1.0/Mono.Cecil.Rocks.dll",
  2975. "build/netstandard1.0/Mono.Cecil.dll",
  2976. "build/netstandard1.0/Newtonsoft.Json.dll",
  2977. "build/netstandard1.0/System.Xml.XPath.XmlDocument.dll",
  2978. "build/netstandard1.0/coverlet.collector.deps.json",
  2979. "build/netstandard1.0/coverlet.collector.dll",
  2980. "build/netstandard1.0/coverlet.collector.pdb",
  2981. "build/netstandard1.0/coverlet.collector.targets",
  2982. "build/netstandard1.0/coverlet.core.dll",
  2983. "build/netstandard1.0/coverlet.core.pdb",
  2984. "coverlet.collector.1.2.0.nupkg.sha512",
  2985. "coverlet.collector.nuspec"
  2986. ]
  2987. },
  2988. "Google.Protobuf/3.5.1": {
  2989. "sha512": "f2k1VNaB9bfvEsvARzzEL1TZiIpL33KKK3JMH7UANlPlJVptuvsk4qpBZEnz0pORWZOdUHlVwMQuUzFqjJYCxA==",
  2990. "type": "package",
  2991. "path": "google.protobuf/3.5.1",
  2992. "files": [
  2993. ".nupkg.metadata",
  2994. ".signature.p7s",
  2995. "google.protobuf.3.5.1.nupkg.sha512",
  2996. "google.protobuf.nuspec",
  2997. "lib/net45/Google.Protobuf.dll",
  2998. "lib/net45/Google.Protobuf.xml",
  2999. "lib/netstandard1.0/Google.Protobuf.dll",
  3000. "lib/netstandard1.0/Google.Protobuf.xml"
  3001. ]
  3002. },
  3003. "iTextSharp.LGPLv2.Core/1.7.0": {
  3004. "sha512": "eN/ivAHNjPFCBle/IRmU0om47ywhX2/oumEUsRwv50FSsTCcty87BXjzn6fP2S2+yJGc6gaEQ9YFaYU7Loybkg==",
  3005. "type": "package",
  3006. "path": "itextsharp.lgplv2.core/1.7.0",
  3007. "files": [
  3008. ".nupkg.metadata",
  3009. ".signature.p7s",
  3010. "itextsharp.lgplv2.core.1.7.0.nupkg.sha512",
  3011. "itextsharp.lgplv2.core.nuspec",
  3012. "lib/net40/iTextSharp.LGPLv2.Core.dll",
  3013. "lib/net40/iTextSharp.LGPLv2.Core.xml",
  3014. "lib/netstandard1.3/iTextSharp.LGPLv2.Core.dll",
  3015. "lib/netstandard1.3/iTextSharp.LGPLv2.Core.xml",
  3016. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll",
  3017. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.xml"
  3018. ]
  3019. },
  3020. "Microsoft.AspNetCore.Cryptography.Internal/3.1.10": {
  3021. "sha512": "s5jFewA59+K/MXnib5eC/WVCDyL4EvSVtBzvXmAlTcZ9iBqqw+4oyFWP5hHy2NZuynjvKDFsokR9zEDrdEwLYA==",
  3022. "type": "package",
  3023. "path": "microsoft.aspnetcore.cryptography.internal/3.1.10",
  3024. "files": [
  3025. ".nupkg.metadata",
  3026. ".signature.p7s",
  3027. "Icon.png",
  3028. "THIRD-PARTY-NOTICES.TXT",
  3029. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3030. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3031. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3032. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3033. "microsoft.aspnetcore.cryptography.internal.3.1.10.nupkg.sha512",
  3034. "microsoft.aspnetcore.cryptography.internal.nuspec"
  3035. ]
  3036. },
  3037. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.10": {
  3038. "sha512": "yXwwlRVybA/IlIl+djCnJAKIoQmG6AXN8K7/yx2csFkt+5SLD03/ziUhyfiH6yJ80LLlHsWxIYedug0s/UDh9g==",
  3039. "type": "package",
  3040. "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.10",
  3041. "files": [
  3042. ".nupkg.metadata",
  3043. ".signature.p7s",
  3044. "Icon.png",
  3045. "THIRD-PARTY-NOTICES.TXT",
  3046. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3047. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3048. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3049. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3050. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3051. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3052. "microsoft.aspnetcore.cryptography.keyderivation.3.1.10.nupkg.sha512",
  3053. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  3054. ]
  3055. },
  3056. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  3057. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  3058. "type": "package",
  3059. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  3060. "files": [
  3061. ".nupkg.metadata",
  3062. ".signature.p7s",
  3063. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  3064. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  3065. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  3066. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  3067. ]
  3068. },
  3069. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  3070. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  3071. "type": "package",
  3072. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  3073. "files": [
  3074. ".nupkg.metadata",
  3075. ".signature.p7s",
  3076. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  3077. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  3078. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  3079. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  3080. ]
  3081. },
  3082. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3083. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3084. "type": "package",
  3085. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3086. "files": [
  3087. ".nupkg.metadata",
  3088. ".signature.p7s",
  3089. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3090. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3091. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3092. "microsoft.aspnetcore.http.abstractions.nuspec"
  3093. ]
  3094. },
  3095. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  3096. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  3097. "type": "package",
  3098. "path": "microsoft.aspnetcore.http.features/2.2.0",
  3099. "files": [
  3100. ".nupkg.metadata",
  3101. ".signature.p7s",
  3102. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3103. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3104. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  3105. "microsoft.aspnetcore.http.features.nuspec"
  3106. ]
  3107. },
  3108. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/3.1.10": {
  3109. "sha512": "5zh2py185WLLC5qJRgtI44FKi95LwxxxoTTEf1S230MJZix0JygPzYzXRfnkBej0pR6c7oqwDNwGmS7JR7KNKw==",
  3110. "type": "package",
  3111. "path": "microsoft.aspnetcore.identity.entityframeworkcore/3.1.10",
  3112. "files": [
  3113. ".nupkg.metadata",
  3114. ".signature.p7s",
  3115. "Icon.png",
  3116. "THIRD-PARTY-NOTICES.TXT",
  3117. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3118. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3119. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3120. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3121. "microsoft.aspnetcore.identity.entityframeworkcore.3.1.10.nupkg.sha512",
  3122. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  3123. ]
  3124. },
  3125. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  3126. "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
  3127. "type": "package",
  3128. "path": "microsoft.bcl.asyncinterfaces/1.1.1",
  3129. "files": [
  3130. ".nupkg.metadata",
  3131. ".signature.p7s",
  3132. "Icon.png",
  3133. "LICENSE.TXT",
  3134. "THIRD-PARTY-NOTICES.TXT",
  3135. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  3136. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  3137. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3138. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  3139. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3140. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  3141. "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
  3142. "microsoft.bcl.asyncinterfaces.nuspec",
  3143. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  3144. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3145. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3146. "useSharedDesignerContext.txt",
  3147. "version.txt"
  3148. ]
  3149. },
  3150. "Microsoft.Bcl.HashCode/1.1.0": {
  3151. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  3152. "type": "package",
  3153. "path": "microsoft.bcl.hashcode/1.1.0",
  3154. "files": [
  3155. ".nupkg.metadata",
  3156. ".signature.p7s",
  3157. "LICENSE.TXT",
  3158. "THIRD-PARTY-NOTICES.TXT",
  3159. "lib/net461/Microsoft.Bcl.HashCode.dll",
  3160. "lib/net461/Microsoft.Bcl.HashCode.xml",
  3161. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3162. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  3163. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3164. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  3165. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3166. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  3167. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  3168. "microsoft.bcl.hashcode.nuspec",
  3169. "ref/net461/Microsoft.Bcl.HashCode.dll",
  3170. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3171. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3172. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3173. "useSharedDesignerContext.txt",
  3174. "version.txt"
  3175. ]
  3176. },
  3177. "Microsoft.CodeCoverage/16.5.0": {
  3178. "sha512": "PM5YLtyN45EyUGePJpaNogndlaQPrMgQQXHKMhMESC6KfSVvt+j7+dxBi8NYC6X6dZVysf7ngwhSW3wwvPJRSQ==",
  3179. "type": "package",
  3180. "path": "microsoft.codecoverage/16.5.0",
  3181. "files": [
  3182. ".nupkg.metadata",
  3183. ".signature.p7s",
  3184. "build/netstandard1.0/CodeCoverage/CodeCoverage.config",
  3185. "build/netstandard1.0/CodeCoverage/CodeCoverage.exe",
  3186. "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll",
  3187. "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll",
  3188. "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll",
  3189. "build/netstandard1.0/CodeCoverage/covrun32.dll",
  3190. "build/netstandard1.0/CodeCoverage/msdia140.dll",
  3191. "build/netstandard1.0/Microsoft.CodeCoverage.props",
  3192. "build/netstandard1.0/Microsoft.CodeCoverage.targets",
  3193. "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll",
  3194. "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3195. "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3196. "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3197. "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3198. "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3199. "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3200. "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3201. "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3202. "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3203. "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3204. "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3205. "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3206. "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3207. "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3208. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3209. "microsoft.codecoverage.16.5.0.nupkg.sha512",
  3210. "microsoft.codecoverage.nuspec"
  3211. ]
  3212. },
  3213. "Microsoft.CSharp/4.3.0": {
  3214. "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
  3215. "type": "package",
  3216. "path": "microsoft.csharp/4.3.0",
  3217. "files": [
  3218. ".nupkg.metadata",
  3219. ".signature.p7s",
  3220. "ThirdPartyNotices.txt",
  3221. "dotnet_library_license.txt",
  3222. "lib/MonoAndroid10/_._",
  3223. "lib/MonoTouch10/_._",
  3224. "lib/net45/_._",
  3225. "lib/netcore50/Microsoft.CSharp.dll",
  3226. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3227. "lib/portable-net45+win8+wp8+wpa81/_._",
  3228. "lib/win8/_._",
  3229. "lib/wp80/_._",
  3230. "lib/wpa81/_._",
  3231. "lib/xamarinios10/_._",
  3232. "lib/xamarinmac20/_._",
  3233. "lib/xamarintvos10/_._",
  3234. "lib/xamarinwatchos10/_._",
  3235. "microsoft.csharp.4.3.0.nupkg.sha512",
  3236. "microsoft.csharp.nuspec",
  3237. "ref/MonoAndroid10/_._",
  3238. "ref/MonoTouch10/_._",
  3239. "ref/net45/_._",
  3240. "ref/netcore50/Microsoft.CSharp.dll",
  3241. "ref/netcore50/Microsoft.CSharp.xml",
  3242. "ref/netcore50/de/Microsoft.CSharp.xml",
  3243. "ref/netcore50/es/Microsoft.CSharp.xml",
  3244. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3245. "ref/netcore50/it/Microsoft.CSharp.xml",
  3246. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3247. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3248. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3249. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3250. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3251. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3252. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3253. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3254. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3255. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3256. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3257. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3258. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3259. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3260. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3261. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3262. "ref/portable-net45+win8+wp8+wpa81/_._",
  3263. "ref/win8/_._",
  3264. "ref/wp80/_._",
  3265. "ref/wpa81/_._",
  3266. "ref/xamarinios10/_._",
  3267. "ref/xamarinmac20/_._",
  3268. "ref/xamarintvos10/_._",
  3269. "ref/xamarinwatchos10/_._"
  3270. ]
  3271. },
  3272. "Microsoft.Data.Sqlite/2.2.4": {
  3273. "sha512": "QgYDdW07QZUyZPwisIU3Db62FnK6Yfcuru7KAsHusLGstJ0kBIXFnG185PcWmm2ba4AN0ab1iwrhXZr/9Yxj0w==",
  3274. "type": "package",
  3275. "path": "microsoft.data.sqlite/2.2.4",
  3276. "files": [
  3277. ".nupkg.metadata",
  3278. ".signature.p7s",
  3279. "lib/netstandard2.0/_._",
  3280. "microsoft.data.sqlite.2.2.4.nupkg.sha512",
  3281. "microsoft.data.sqlite.nuspec"
  3282. ]
  3283. },
  3284. "Microsoft.Data.Sqlite.Core/2.2.4": {
  3285. "sha512": "69DJj8bUJpXPfWpmJ/Sh165GWjLjlL516l0GnJDImabfR+leXb61HaQF97THWvyx5yY7MvpO94QW5nyiXMVOAA==",
  3286. "type": "package",
  3287. "path": "microsoft.data.sqlite.core/2.2.4",
  3288. "files": [
  3289. ".nupkg.metadata",
  3290. ".signature.p7s",
  3291. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  3292. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  3293. "microsoft.data.sqlite.core.2.2.4.nupkg.sha512",
  3294. "microsoft.data.sqlite.core.nuspec"
  3295. ]
  3296. },
  3297. "Microsoft.EntityFrameworkCore/3.1.10": {
  3298. "sha512": "0IhJl9mVJ4IhHobKvOo2iLB0xfxX2eYaSz4VZX+bMSm8IyZA1tOmyaOtg7oSzeUAe6eqpKVQLTgMFzk2AqCcaA==",
  3299. "type": "package",
  3300. "path": "microsoft.entityframeworkcore/3.1.10",
  3301. "files": [
  3302. ".nupkg.metadata",
  3303. ".signature.p7s",
  3304. "Icon.png",
  3305. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  3306. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  3307. "microsoft.entityframeworkcore.3.1.10.nupkg.sha512",
  3308. "microsoft.entityframeworkcore.nuspec"
  3309. ]
  3310. },
  3311. "Microsoft.EntityFrameworkCore.Abstractions/3.1.10": {
  3312. "sha512": "B1kUQ7o6+4Ly2neo86RJCpTYzTPpW1xzpHyRaTmGQS/p7umZOGoBJay+i/YDLmZkUPI4XULGnu5KJKipA0awUw==",
  3313. "type": "package",
  3314. "path": "microsoft.entityframeworkcore.abstractions/3.1.10",
  3315. "files": [
  3316. ".nupkg.metadata",
  3317. ".signature.p7s",
  3318. "Icon.png",
  3319. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3320. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3321. "microsoft.entityframeworkcore.abstractions.3.1.10.nupkg.sha512",
  3322. "microsoft.entityframeworkcore.abstractions.nuspec"
  3323. ]
  3324. },
  3325. "Microsoft.EntityFrameworkCore.Analyzers/3.1.10": {
  3326. "sha512": "reHrrF8i/Wao7l2PVXJ+JeZzEC4OkbcbfnQs8vtiT+SQ5P4MdQj3WzMkupjebaJWhIJZRc6qPT4BD9BUWQU4wQ==",
  3327. "type": "package",
  3328. "path": "microsoft.entityframeworkcore.analyzers/3.1.10",
  3329. "files": [
  3330. ".nupkg.metadata",
  3331. ".signature.p7s",
  3332. "Icon.png",
  3333. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3334. "lib/netstandard2.0/_._",
  3335. "microsoft.entityframeworkcore.analyzers.3.1.10.nupkg.sha512",
  3336. "microsoft.entityframeworkcore.analyzers.nuspec"
  3337. ]
  3338. },
  3339. "Microsoft.EntityFrameworkCore.Relational/3.1.10": {
  3340. "sha512": "JpDMpGDx+wPvFSbw9vu13nfZESdu2SPFhLI1bPZwqDU0ZV40TmUOUN91hHjWhgh5qRX1jQTWMuvK3EmlpywgAw==",
  3341. "type": "package",
  3342. "path": "microsoft.entityframeworkcore.relational/3.1.10",
  3343. "files": [
  3344. ".nupkg.metadata",
  3345. ".signature.p7s",
  3346. "Icon.png",
  3347. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  3348. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  3349. "microsoft.entityframeworkcore.relational.3.1.10.nupkg.sha512",
  3350. "microsoft.entityframeworkcore.relational.nuspec"
  3351. ]
  3352. },
  3353. "Microsoft.Extensions.Caching.Abstractions/3.1.10": {
  3354. "sha512": "xdl25cxDgwVxF9ckD9vJ5AdjzRE1vTGLYj9kZf6aL317ZneUijkxd/nSuzN1gEuO74dwG/Yfr1zfs636D6YZsA==",
  3355. "type": "package",
  3356. "path": "microsoft.extensions.caching.abstractions/3.1.10",
  3357. "files": [
  3358. ".nupkg.metadata",
  3359. ".signature.p7s",
  3360. "Icon.png",
  3361. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  3362. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  3363. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3364. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3365. "microsoft.extensions.caching.abstractions.3.1.10.nupkg.sha512",
  3366. "microsoft.extensions.caching.abstractions.nuspec"
  3367. ]
  3368. },
  3369. "Microsoft.Extensions.Caching.Memory/3.1.10": {
  3370. "sha512": "pR6mRkJx67/itEnEpnBiiATeH/P6RnhqvriD6RdQsXepO+uisfUrd149CTGPc1G5J0Qf9bwSCJkb/MYkuQ6mqw==",
  3371. "type": "package",
  3372. "path": "microsoft.extensions.caching.memory/3.1.10",
  3373. "files": [
  3374. ".nupkg.metadata",
  3375. ".signature.p7s",
  3376. "Icon.png",
  3377. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  3378. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  3379. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3380. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3381. "microsoft.extensions.caching.memory.3.1.10.nupkg.sha512",
  3382. "microsoft.extensions.caching.memory.nuspec"
  3383. ]
  3384. },
  3385. "Microsoft.Extensions.Configuration/3.1.10": {
  3386. "sha512": "HHBhCP3wAJe7UIXjim0wFXty0WG/rZAP3aZyy03uuaxiOOPHJjbUdY6K9qkfQuP+hsRzfiT+np5k4rFmcSo3og==",
  3387. "type": "package",
  3388. "path": "microsoft.extensions.configuration/3.1.10",
  3389. "files": [
  3390. ".nupkg.metadata",
  3391. ".signature.p7s",
  3392. "Icon.png",
  3393. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  3394. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  3395. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3396. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3397. "microsoft.extensions.configuration.3.1.10.nupkg.sha512",
  3398. "microsoft.extensions.configuration.nuspec"
  3399. ]
  3400. },
  3401. "Microsoft.Extensions.Configuration.Abstractions/3.1.10": {
  3402. "sha512": "UEfngyXt8XYhmekUza9JsWlA37pNOtZAjcK5EEKQrHo2LDKJmZVmcyAUFlkzCcf97OSr+w/MiDLifDDNQk9agw==",
  3403. "type": "package",
  3404. "path": "microsoft.extensions.configuration.abstractions/3.1.10",
  3405. "files": [
  3406. ".nupkg.metadata",
  3407. ".signature.p7s",
  3408. "Icon.png",
  3409. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  3410. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  3411. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3412. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3413. "microsoft.extensions.configuration.abstractions.3.1.10.nupkg.sha512",
  3414. "microsoft.extensions.configuration.abstractions.nuspec"
  3415. ]
  3416. },
  3417. "Microsoft.Extensions.Configuration.Binder/3.1.10": {
  3418. "sha512": "B9nQBk0GZVkOgSB1oB9V/7kvxhBvLCqm2x4m8MIoSxrd9yga8MVq2HWqnai8zZdH1WL6OlOG5mCVrwgAVwNNJg==",
  3419. "type": "package",
  3420. "path": "microsoft.extensions.configuration.binder/3.1.10",
  3421. "files": [
  3422. ".nupkg.metadata",
  3423. ".signature.p7s",
  3424. "Icon.png",
  3425. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  3426. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  3427. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3428. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3429. "microsoft.extensions.configuration.binder.3.1.10.nupkg.sha512",
  3430. "microsoft.extensions.configuration.binder.nuspec"
  3431. ]
  3432. },
  3433. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  3434. "sha512": "itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
  3435. "type": "package",
  3436. "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
  3437. "files": [
  3438. ".nupkg.metadata",
  3439. ".signature.p7s",
  3440. "Icon.png",
  3441. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3442. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3443. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3444. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3445. "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
  3446. "microsoft.extensions.configuration.fileextensions.nuspec"
  3447. ]
  3448. },
  3449. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  3450. "sha512": "AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
  3451. "type": "package",
  3452. "path": "microsoft.extensions.configuration.json/3.1.2",
  3453. "files": [
  3454. ".nupkg.metadata",
  3455. ".signature.p7s",
  3456. "Icon.png",
  3457. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll",
  3458. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml",
  3459. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3460. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3461. "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
  3462. "microsoft.extensions.configuration.json.nuspec"
  3463. ]
  3464. },
  3465. "Microsoft.Extensions.DependencyInjection/3.1.10": {
  3466. "sha512": "fla8hKhQmld2s/7arhUxlu3dzZLBFJLg4BQiQZdqKND4MlmnMU9jhoxY4MMlSYl6MtxumtwASHMJnuV9f96IQQ==",
  3467. "type": "package",
  3468. "path": "microsoft.extensions.dependencyinjection/3.1.10",
  3469. "files": [
  3470. ".nupkg.metadata",
  3471. ".signature.p7s",
  3472. "Icon.png",
  3473. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3474. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3475. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
  3476. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
  3477. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3478. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3479. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3480. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3481. "microsoft.extensions.dependencyinjection.3.1.10.nupkg.sha512",
  3482. "microsoft.extensions.dependencyinjection.nuspec"
  3483. ]
  3484. },
  3485. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.10": {
  3486. "sha512": "bhjtAN7Ix5WOAr47RK16Lr1l2eizSBMCYQSavkooZyf6Xdf8XWAYGWsGsPqUFOeeRxzhpRho051rXaLn5wskVw==",
  3487. "type": "package",
  3488. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.10",
  3489. "files": [
  3490. ".nupkg.metadata",
  3491. ".signature.p7s",
  3492. "Icon.png",
  3493. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3494. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3495. "microsoft.extensions.dependencyinjection.abstractions.3.1.10.nupkg.sha512",
  3496. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  3497. ]
  3498. },
  3499. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  3500. "sha512": "O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
  3501. "type": "package",
  3502. "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
  3503. "files": [
  3504. ".nupkg.metadata",
  3505. ".signature.p7s",
  3506. "Icon.png",
  3507. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3508. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3509. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3510. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3511. "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
  3512. "microsoft.extensions.fileproviders.abstractions.nuspec"
  3513. ]
  3514. },
  3515. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  3516. "sha512": "lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
  3517. "type": "package",
  3518. "path": "microsoft.extensions.fileproviders.physical/3.1.2",
  3519. "files": [
  3520. ".nupkg.metadata",
  3521. ".signature.p7s",
  3522. "Icon.png",
  3523. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll",
  3524. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.xml",
  3525. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3526. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3527. "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
  3528. "microsoft.extensions.fileproviders.physical.nuspec"
  3529. ]
  3530. },
  3531. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  3532. "sha512": "/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
  3533. "type": "package",
  3534. "path": "microsoft.extensions.filesystemglobbing/3.1.2",
  3535. "files": [
  3536. ".nupkg.metadata",
  3537. ".signature.p7s",
  3538. "Icon.png",
  3539. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3540. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3541. "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
  3542. "microsoft.extensions.filesystemglobbing.nuspec"
  3543. ]
  3544. },
  3545. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  3546. "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  3547. "type": "package",
  3548. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  3549. "files": [
  3550. ".nupkg.metadata",
  3551. ".signature.p7s",
  3552. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3553. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3554. "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
  3555. "microsoft.extensions.hosting.abstractions.nuspec"
  3556. ]
  3557. },
  3558. "Microsoft.Extensions.Identity.Core/3.1.10": {
  3559. "sha512": "AuVQQAi7DtsrrHk6aO9BnMQCPGfI49AjeXOALTdbrJrPaLn35De9pAgobKftaUILwM4uzQdYEK012yqz2NH46w==",
  3560. "type": "package",
  3561. "path": "microsoft.extensions.identity.core/3.1.10",
  3562. "files": [
  3563. ".nupkg.metadata",
  3564. ".signature.p7s",
  3565. "Icon.png",
  3566. "THIRD-PARTY-NOTICES.TXT",
  3567. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll",
  3568. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.xml",
  3569. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  3570. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  3571. "microsoft.extensions.identity.core.3.1.10.nupkg.sha512",
  3572. "microsoft.extensions.identity.core.nuspec"
  3573. ]
  3574. },
  3575. "Microsoft.Extensions.Identity.Stores/3.1.10": {
  3576. "sha512": "USjhGGw7PivOcVVqNGPd2lg1S1J2jvrRePlgxNcPt4gSbTtGuaRBdd78dvpHoR1GQnJ93YqoyGH3X3FsHeDL/w==",
  3577. "type": "package",
  3578. "path": "microsoft.extensions.identity.stores/3.1.10",
  3579. "files": [
  3580. ".nupkg.metadata",
  3581. ".signature.p7s",
  3582. "Icon.png",
  3583. "THIRD-PARTY-NOTICES.TXT",
  3584. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll",
  3585. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.xml",
  3586. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  3587. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  3588. "microsoft.extensions.identity.stores.3.1.10.nupkg.sha512",
  3589. "microsoft.extensions.identity.stores.nuspec"
  3590. ]
  3591. },
  3592. "Microsoft.Extensions.Logging/3.1.10": {
  3593. "sha512": "GjP+4cUFdsNk/Px6BlJ7p7x7ibpawcaAV4tfrRJTv2s6Nb7yz5OEKA0kbNl1ZXKa6uMQzbNqc5+B/tJsqzgIXg==",
  3594. "type": "package",
  3595. "path": "microsoft.extensions.logging/3.1.10",
  3596. "files": [
  3597. ".nupkg.metadata",
  3598. ".signature.p7s",
  3599. "Icon.png",
  3600. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
  3601. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
  3602. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3603. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3604. "microsoft.extensions.logging.3.1.10.nupkg.sha512",
  3605. "microsoft.extensions.logging.nuspec"
  3606. ]
  3607. },
  3608. "Microsoft.Extensions.Logging.Abstractions/3.1.10": {
  3609. "sha512": "bKHbgzbGsPZbEaExRaJqBz3WQ1GfhMttM23e1nivLJ8HbA3Ad526mW2G2K350q3Dc3HG83I5W8uSZWG4Rv4IpA==",
  3610. "type": "package",
  3611. "path": "microsoft.extensions.logging.abstractions/3.1.10",
  3612. "files": [
  3613. ".nupkg.metadata",
  3614. ".signature.p7s",
  3615. "Icon.png",
  3616. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3617. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3618. "microsoft.extensions.logging.abstractions.3.1.10.nupkg.sha512",
  3619. "microsoft.extensions.logging.abstractions.nuspec"
  3620. ]
  3621. },
  3622. "Microsoft.Extensions.Options/3.1.10": {
  3623. "sha512": "CusdV4eIv+CGb9Fy6a+JcRqpcVJREmvFI8eHk3nQ76VLtEAIJpKQY5r5sRSs5w6NevNi2ukdnKleH0YCPudFZQ==",
  3624. "type": "package",
  3625. "path": "microsoft.extensions.options/3.1.10",
  3626. "files": [
  3627. ".nupkg.metadata",
  3628. ".signature.p7s",
  3629. "Icon.png",
  3630. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  3631. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  3632. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3633. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3634. "microsoft.extensions.options.3.1.10.nupkg.sha512",
  3635. "microsoft.extensions.options.nuspec"
  3636. ]
  3637. },
  3638. "Microsoft.Extensions.Primitives/3.1.10": {
  3639. "sha512": "YDuQS3BeaVY6PCWUm5f6qFTYsxhwntQrcfwUzbohU/0rZBL5XI+UsD5SgggHKHX+rFY4laaT428q608Sw/mDsw==",
  3640. "type": "package",
  3641. "path": "microsoft.extensions.primitives/3.1.10",
  3642. "files": [
  3643. ".nupkg.metadata",
  3644. ".signature.p7s",
  3645. "Icon.png",
  3646. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  3647. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  3648. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3649. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3650. "microsoft.extensions.primitives.3.1.10.nupkg.sha512",
  3651. "microsoft.extensions.primitives.nuspec"
  3652. ]
  3653. },
  3654. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  3655. "sha512": "0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  3656. "type": "package",
  3657. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  3658. "files": [
  3659. ".nupkg.metadata",
  3660. ".signature.p7s",
  3661. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3662. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3663. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  3664. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  3665. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3666. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3667. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  3668. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  3669. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3670. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3671. "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512",
  3672. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3673. ]
  3674. },
  3675. "Microsoft.IdentityModel.Logging/5.6.0": {
  3676. "sha512": "zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  3677. "type": "package",
  3678. "path": "microsoft.identitymodel.logging/5.6.0",
  3679. "files": [
  3680. ".nupkg.metadata",
  3681. ".signature.p7s",
  3682. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3683. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3684. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  3685. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  3686. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3687. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3688. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  3689. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  3690. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3691. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3692. "microsoft.identitymodel.logging.5.6.0.nupkg.sha512",
  3693. "microsoft.identitymodel.logging.nuspec"
  3694. ]
  3695. },
  3696. "Microsoft.IdentityModel.Tokens/5.6.0": {
  3697. "sha512": "C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  3698. "type": "package",
  3699. "path": "microsoft.identitymodel.tokens/5.6.0",
  3700. "files": [
  3701. ".nupkg.metadata",
  3702. ".signature.p7s",
  3703. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3704. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3705. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  3706. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  3707. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3708. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3709. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  3710. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  3711. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3712. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3713. "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512",
  3714. "microsoft.identitymodel.tokens.nuspec"
  3715. ]
  3716. },
  3717. "Microsoft.NET.Test.Sdk/16.5.0": {
  3718. "sha512": "yHZOhVSPuGqgHi+KhHiAZqNY08avkQraXKvgKgDU8c/ztmGzw7gmukkv49EaTq6T3xmp4XroWk3gAlbJHMxl8w==",
  3719. "type": "package",
  3720. "path": "microsoft.net.test.sdk/16.5.0",
  3721. "files": [
  3722. ".nupkg.metadata",
  3723. ".signature.p7s",
  3724. "build/net40/Microsoft.NET.Test.Sdk.props",
  3725. "build/net40/Microsoft.NET.Test.Sdk.targets",
  3726. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs",
  3727. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs",
  3728. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb",
  3729. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props",
  3730. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets",
  3731. "build/uap10.0/Microsoft.NET.Test.Sdk.props",
  3732. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
  3733. "microsoft.net.test.sdk.16.5.0.nupkg.sha512",
  3734. "microsoft.net.test.sdk.nuspec"
  3735. ]
  3736. },
  3737. "Microsoft.NETCore.Jit/2.0.8": {
  3738. "sha512": "webbzOhpGlR6qnCeb4m2OWHixBK0IgoyISVIhPVlLH8bY9yZtjnK4XQKkEkh/a9l5K26ddus7l+QpNh3EtnyYQ==",
  3739. "type": "package",
  3740. "path": "microsoft.netcore.jit/2.0.8",
  3741. "files": [
  3742. ".nupkg.metadata",
  3743. ".signature.p7s",
  3744. "LICENSE.TXT",
  3745. "THIRD-PARTY-NOTICES.TXT",
  3746. "microsoft.netcore.jit.2.0.8.nupkg.sha512",
  3747. "microsoft.netcore.jit.nuspec",
  3748. "runtime.json",
  3749. "version.txt"
  3750. ]
  3751. },
  3752. "Microsoft.NETCore.Platforms/3.1.1": {
  3753. "sha512": "RmINcaqiEkawM9C8oxFMN/CZmn1fGKWVsosbSY/8ARUNdHqV47hqhPVbrG3qUqLaRQI5w4HuqFOqrbhoSWcH6w==",
  3754. "type": "package",
  3755. "path": "microsoft.netcore.platforms/3.1.1",
  3756. "files": [
  3757. ".nupkg.metadata",
  3758. ".signature.p7s",
  3759. "Icon.png",
  3760. "LICENSE.TXT",
  3761. "THIRD-PARTY-NOTICES.TXT",
  3762. "lib/netstandard1.0/_._",
  3763. "microsoft.netcore.platforms.3.1.1.nupkg.sha512",
  3764. "microsoft.netcore.platforms.nuspec",
  3765. "runtime.json",
  3766. "useSharedDesignerContext.txt",
  3767. "version.txt"
  3768. ]
  3769. },
  3770. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  3771. "sha512": "F0t5KmilC9zaZY3JZYMfWSo+r+5PeZCXLP8uFToHTKL5kL2pTu4YPyxgweYfzTh4tb7OfZL32xnKdkzbWBP0aw==",
  3772. "type": "package",
  3773. "path": "microsoft.netcore.runtime.coreclr/2.0.8",
  3774. "files": [
  3775. ".nupkg.metadata",
  3776. ".signature.p7s",
  3777. "LICENSE.TXT",
  3778. "THIRD-PARTY-NOTICES.TXT",
  3779. "microsoft.netcore.runtime.coreclr.2.0.8.nupkg.sha512",
  3780. "microsoft.netcore.runtime.coreclr.nuspec",
  3781. "ref/netstandard1.0/_._",
  3782. "runtime.json",
  3783. "version.txt"
  3784. ]
  3785. },
  3786. "Microsoft.NETCore.Targets/1.1.0": {
  3787. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3788. "type": "package",
  3789. "path": "microsoft.netcore.targets/1.1.0",
  3790. "files": [
  3791. ".nupkg.metadata",
  3792. ".signature.p7s",
  3793. "ThirdPartyNotices.txt",
  3794. "dotnet_library_license.txt",
  3795. "lib/netstandard1.0/_._",
  3796. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3797. "microsoft.netcore.targets.nuspec",
  3798. "runtime.json"
  3799. ]
  3800. },
  3801. "Microsoft.TestPlatform.ObjectModel/16.5.0": {
  3802. "sha512": "NnLFxmFBCAS6kye2JFszD5WKgj4Zve5KX/R0mhYwh6BVnSeybI2unRnjEPtLyY3CAVhwrY4bh/8LNFtslAcGZg==",
  3803. "type": "package",
  3804. "path": "microsoft.testplatform.objectmodel/16.5.0",
  3805. "files": [
  3806. ".nupkg.metadata",
  3807. ".signature.p7s",
  3808. "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll",
  3809. "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3810. "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3811. "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3812. "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3813. "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3814. "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3815. "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3816. "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3817. "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3818. "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3819. "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3820. "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3821. "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3822. "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3823. "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3824. "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3825. "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3826. "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3827. "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3828. "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3829. "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3830. "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3831. "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3832. "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3833. "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3834. "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3835. "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3836. "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3837. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3838. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3839. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3840. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3841. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3842. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3843. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3844. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3845. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3846. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3847. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3848. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3849. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3850. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3851. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3852. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3853. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3854. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3855. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3856. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3857. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3858. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3859. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3860. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3861. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3862. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3863. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3864. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3865. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3866. "microsoft.testplatform.objectmodel.16.5.0.nupkg.sha512",
  3867. "microsoft.testplatform.objectmodel.nuspec"
  3868. ]
  3869. },
  3870. "Microsoft.TestPlatform.TestHost/16.5.0": {
  3871. "sha512": "ytGymboQIvjNX5pLC0yp/Bz9sGDHqSnLQgBRtd4VrqOUgKmmcfxMYZ6p0TBZgAT1oijdC6xqUZ7rl8mbaaXTJw==",
  3872. "type": "package",
  3873. "path": "microsoft.testplatform.testhost/16.5.0",
  3874. "files": [
  3875. ".nupkg.metadata",
  3876. ".signature.p7s",
  3877. "ThirdPartyNotices.txt",
  3878. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props",
  3879. "build/netcoreapp2.1/x64/testhost.dll",
  3880. "build/netcoreapp2.1/x64/testhost.exe",
  3881. "build/netcoreapp2.1/x86/testhost.x86.dll",
  3882. "build/netcoreapp2.1/x86/testhost.x86.exe",
  3883. "build/uap10.0/Microsoft.TestPlatform.TestHost.props",
  3884. "build/uap10.0/Microsoft.TestPlatform.TestHost.targets",
  3885. "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3886. "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3887. "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3888. "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll",
  3889. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3890. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3891. "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3892. "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3893. "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3894. "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll",
  3895. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3896. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3897. "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3898. "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3899. "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3900. "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll",
  3901. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3902. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3903. "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3904. "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3905. "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3906. "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll",
  3907. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3908. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3909. "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3910. "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3911. "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3912. "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll",
  3913. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3914. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3915. "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3916. "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3917. "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3918. "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll",
  3919. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3920. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3921. "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3922. "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3923. "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3924. "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll",
  3925. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3926. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3927. "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3928. "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3929. "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3930. "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll",
  3931. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3932. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3933. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3934. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3935. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3936. "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll",
  3937. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3938. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3939. "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3940. "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3941. "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3942. "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll",
  3943. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3944. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3945. "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3946. "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3947. "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3948. "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll",
  3949. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3950. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3951. "build/uap10.0/x64/msdia140.dll",
  3952. "build/uap10.0/x86/msdia140.dll",
  3953. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3954. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3955. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3956. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll",
  3957. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3958. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3959. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3960. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3961. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3962. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll",
  3963. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3964. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3965. "lib/net45/_._",
  3966. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll",
  3967. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll",
  3968. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll",
  3969. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll",
  3970. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3971. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3972. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3973. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3974. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3975. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3976. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3977. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3978. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3979. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3980. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3981. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3982. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3983. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3984. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3985. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3986. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3987. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3988. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3989. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3990. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3991. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3992. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3993. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3994. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3995. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3996. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3997. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3998. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3999. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4000. "lib/netcoreapp2.1/testhost.deps.json",
  4001. "lib/netcoreapp2.1/testhost.dll",
  4002. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4003. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4004. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4005. "lib/netcoreapp2.1/x64/msdia140.dll",
  4006. "lib/netcoreapp2.1/x86/msdia140.dll",
  4007. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4008. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4009. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4010. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4011. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4012. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4013. "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  4014. "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  4015. "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll",
  4016. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  4017. "lib/uap10.0/testhost.dll",
  4018. "microsoft.testplatform.testhost.16.5.0.nupkg.sha512",
  4019. "microsoft.testplatform.testhost.nuspec"
  4020. ]
  4021. },
  4022. "Microsoft.Win32.Primitives/4.3.0": {
  4023. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4024. "type": "package",
  4025. "path": "microsoft.win32.primitives/4.3.0",
  4026. "files": [
  4027. ".nupkg.metadata",
  4028. ".signature.p7s",
  4029. "ThirdPartyNotices.txt",
  4030. "dotnet_library_license.txt",
  4031. "lib/MonoAndroid10/_._",
  4032. "lib/MonoTouch10/_._",
  4033. "lib/net46/Microsoft.Win32.Primitives.dll",
  4034. "lib/xamarinios10/_._",
  4035. "lib/xamarinmac20/_._",
  4036. "lib/xamarintvos10/_._",
  4037. "lib/xamarinwatchos10/_._",
  4038. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4039. "microsoft.win32.primitives.nuspec",
  4040. "ref/MonoAndroid10/_._",
  4041. "ref/MonoTouch10/_._",
  4042. "ref/net46/Microsoft.Win32.Primitives.dll",
  4043. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4044. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4045. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4046. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4047. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4048. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4049. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4050. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4051. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4052. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4053. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4054. "ref/xamarinios10/_._",
  4055. "ref/xamarinmac20/_._",
  4056. "ref/xamarintvos10/_._",
  4057. "ref/xamarinwatchos10/_._"
  4058. ]
  4059. },
  4060. "Microsoft.Win32.Registry/4.4.0": {
  4061. "sha512": "dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
  4062. "type": "package",
  4063. "path": "microsoft.win32.registry/4.4.0",
  4064. "files": [
  4065. ".nupkg.metadata",
  4066. ".signature.p7s",
  4067. "LICENSE.TXT",
  4068. "THIRD-PARTY-NOTICES.TXT",
  4069. "lib/net46/Microsoft.Win32.Registry.dll",
  4070. "lib/net461/Microsoft.Win32.Registry.dll",
  4071. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4072. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4073. "microsoft.win32.registry.4.4.0.nupkg.sha512",
  4074. "microsoft.win32.registry.nuspec",
  4075. "ref/net46/Microsoft.Win32.Registry.dll",
  4076. "ref/net461/Microsoft.Win32.Registry.dll",
  4077. "ref/net461/Microsoft.Win32.Registry.xml",
  4078. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  4079. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  4080. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  4081. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  4082. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  4083. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  4084. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  4085. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  4086. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  4087. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  4088. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  4089. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  4090. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  4091. "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
  4092. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4093. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  4094. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
  4095. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4096. "useSharedDesignerContext.txt",
  4097. "version.txt"
  4098. ]
  4099. },
  4100. "Microsoft.Win32.SystemEvents/4.7.0": {
  4101. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  4102. "type": "package",
  4103. "path": "microsoft.win32.systemevents/4.7.0",
  4104. "files": [
  4105. ".nupkg.metadata",
  4106. ".signature.p7s",
  4107. "LICENSE.TXT",
  4108. "THIRD-PARTY-NOTICES.TXT",
  4109. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4110. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4111. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4112. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4113. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  4114. "microsoft.win32.systemevents.nuspec",
  4115. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4116. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4117. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  4118. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  4119. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4120. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4121. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4122. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4123. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4124. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4125. "useSharedDesignerContext.txt",
  4126. "version.txt"
  4127. ]
  4128. },
  4129. "MSTest.TestAdapter/2.1.0": {
  4130. "sha512": "roxWjDyH5S+XlibaHM96VswxYq4vfbB53Ys9k3Qr2F1uNH+VpgIbygNQvtZUxSoAaI7aNSMMKA/HBfZPg5QDCA==",
  4131. "type": "package",
  4132. "path": "mstest.testadapter/2.1.0",
  4133. "files": [
  4134. ".nupkg.metadata",
  4135. ".signature.p7s",
  4136. "LICENSE.txt",
  4137. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  4138. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll",
  4139. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4140. "build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4141. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4142. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4143. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4144. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4145. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4146. "build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4147. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4148. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4149. "build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4150. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4151. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4152. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4153. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4154. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4155. "build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4156. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4157. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4158. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4159. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4160. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4161. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4162. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4163. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4164. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4165. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4166. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4167. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4168. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4169. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4170. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4171. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4172. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4173. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4174. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4175. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4176. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4177. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4178. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4179. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4180. "build/net45/MSTest.TestAdapter.props",
  4181. "build/net45/MSTest.TestAdapter.targets",
  4182. "build/netcoreapp1.0/MSTest.TestAdapter.props",
  4183. "build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4184. "build/uap10.0/MSTest.TestAdapter.props",
  4185. "build/uap10.0/MSTest.TestAdapter.targets",
  4186. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4187. "mstest.testadapter.2.1.0.nupkg.sha512",
  4188. "mstest.testadapter.nuspec"
  4189. ]
  4190. },
  4191. "MSTest.TestFramework/2.1.0": {
  4192. "sha512": "FcW3sokxmi52e4gzBdv4bv59yQWJ0Lg2F579U82O4V9Pr7aNwTe7HxlHChzQqvcqgnH69XH8aDfMlfM3Y1wjAg==",
  4193. "type": "package",
  4194. "path": "mstest.testframework/2.1.0",
  4195. "files": [
  4196. ".nupkg.metadata",
  4197. ".signature.p7s",
  4198. "LICENSE.txt",
  4199. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4200. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4201. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4202. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4203. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4204. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4205. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4206. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4207. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4208. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4209. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4210. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4211. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4212. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4213. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4214. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4215. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4216. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4217. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4218. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4219. "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4220. "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4221. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4222. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4223. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4224. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4225. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4226. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4227. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4228. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4229. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4230. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4231. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4232. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4233. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4234. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4235. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4236. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4237. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4238. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4239. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4240. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4241. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4242. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4243. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4244. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4245. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4246. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4247. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4248. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4249. "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4250. "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4251. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4252. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4253. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4254. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4255. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4256. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4257. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4258. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4259. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4260. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4261. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4262. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4263. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4264. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4265. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4266. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4267. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4268. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4269. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4270. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4271. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4272. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4273. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4274. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4275. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4276. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4277. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4278. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4279. "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4280. "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4281. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4282. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4283. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4284. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4285. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4286. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4287. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4288. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4289. "mstest.testframework.2.1.0.nupkg.sha512",
  4290. "mstest.testframework.nuspec"
  4291. ]
  4292. },
  4293. "MySql.Data/8.0.15": {
  4294. "sha512": "PnjT2+TzlYUBF5cILcLMD1ux85P5iiRTF9PWx+Mel6/Z/rx+k39aWuA0mozfdgd+0TlJjGKKTyQZfKeYlRXTUA==",
  4295. "type": "package",
  4296. "path": "mysql.data/8.0.15",
  4297. "files": [
  4298. ".nupkg.metadata",
  4299. ".signature.p7s",
  4300. "lib/net452/MySql.Data.dll",
  4301. "lib/net452/MySql.Data.xml",
  4302. "lib/netcoreapp2.0/MySql.Data.dll",
  4303. "lib/netcoreapp2.0/MySql.Data.xml",
  4304. "lib/netstandard1.6/MySql.Data.dll",
  4305. "lib/netstandard1.6/MySql.Data.xml",
  4306. "lib/netstandard2.0/MySql.Data.dll",
  4307. "lib/netstandard2.0/MySql.Data.xml",
  4308. "mysql.data.8.0.15.nupkg.sha512",
  4309. "mysql.data.nuspec"
  4310. ]
  4311. },
  4312. "NETStandard.Library/1.6.1": {
  4313. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4314. "type": "package",
  4315. "path": "netstandard.library/1.6.1",
  4316. "files": [
  4317. ".nupkg.metadata",
  4318. ".signature.p7s",
  4319. "ThirdPartyNotices.txt",
  4320. "dotnet_library_license.txt",
  4321. "netstandard.library.1.6.1.nupkg.sha512",
  4322. "netstandard.library.nuspec"
  4323. ]
  4324. },
  4325. "Newtonsoft.Json/10.0.3": {
  4326. "sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
  4327. "type": "package",
  4328. "path": "newtonsoft.json/10.0.3",
  4329. "hasTools": true,
  4330. "files": [
  4331. ".nupkg.metadata",
  4332. ".signature.p7s",
  4333. "LICENSE.md",
  4334. "lib/net20/Newtonsoft.Json.dll",
  4335. "lib/net20/Newtonsoft.Json.xml",
  4336. "lib/net35/Newtonsoft.Json.dll",
  4337. "lib/net35/Newtonsoft.Json.xml",
  4338. "lib/net40/Newtonsoft.Json.dll",
  4339. "lib/net40/Newtonsoft.Json.xml",
  4340. "lib/net45/Newtonsoft.Json.dll",
  4341. "lib/net45/Newtonsoft.Json.xml",
  4342. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4343. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4344. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4345. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4346. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4347. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4348. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4349. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4350. "newtonsoft.json.10.0.3.nupkg.sha512",
  4351. "newtonsoft.json.nuspec",
  4352. "tools/install.ps1"
  4353. ]
  4354. },
  4355. "NLog/4.7.5": {
  4356. "sha512": "1Udzim+UwoAGk0vW6T2rEBXJq1COvqTuE+4NFj2zHytuX1WOu+1Yes1qABG1IJOA5V3OMilIufUU1Ha9T0rrzQ==",
  4357. "type": "package",
  4358. "path": "nlog/4.7.5",
  4359. "files": [
  4360. ".nupkg.metadata",
  4361. ".signature.p7s",
  4362. "lib/monoandroid44/NLog.dll",
  4363. "lib/monoandroid44/NLog.xml",
  4364. "lib/net35/NLog.dll",
  4365. "lib/net35/NLog.xml",
  4366. "lib/net40-client/NLog.dll",
  4367. "lib/net40-client/NLog.xml",
  4368. "lib/net45/NLog.dll",
  4369. "lib/net45/NLog.xml",
  4370. "lib/netstandard1.3/NLog.dll",
  4371. "lib/netstandard1.3/NLog.xml",
  4372. "lib/netstandard1.5/NLog.dll",
  4373. "lib/netstandard1.5/NLog.xml",
  4374. "lib/netstandard2.0/NLog.dll",
  4375. "lib/netstandard2.0/NLog.xml",
  4376. "lib/sl4/NLog.dll",
  4377. "lib/sl4/NLog.xml",
  4378. "lib/sl5/NLog.dll",
  4379. "lib/sl5/NLog.xml",
  4380. "lib/wp8/NLog.dll",
  4381. "lib/wp8/NLog.xml",
  4382. "lib/xamarinios10/NLog.dll",
  4383. "lib/xamarinios10/NLog.xml",
  4384. "nlog.4.7.5.nupkg.sha512",
  4385. "nlog.nuspec"
  4386. ]
  4387. },
  4388. "NLog.Extensions.Logging/1.6.4": {
  4389. "sha512": "ESOBd/bzxFacwpWTdTXaAaItJz/0Mzibyw65YB0uQT4pf2hXtwHp2626qEiVOmaacIQbJH5wGpBLNcVpbQLpKA==",
  4390. "type": "package",
  4391. "path": "nlog.extensions.logging/1.6.4",
  4392. "files": [
  4393. ".nupkg.metadata",
  4394. ".signature.p7s",
  4395. "lib/net451/NLog.Extensions.Logging.dll",
  4396. "lib/net451/NLog.Extensions.Logging.xml",
  4397. "lib/net461/NLog.Extensions.Logging.dll",
  4398. "lib/net461/NLog.Extensions.Logging.xml",
  4399. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
  4400. "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
  4401. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  4402. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  4403. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  4404. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  4405. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  4406. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  4407. "nlog.extensions.logging.1.6.4.nupkg.sha512",
  4408. "nlog.extensions.logging.nuspec"
  4409. ]
  4410. },
  4411. "NLog.Web.AspNetCore/4.9.3": {
  4412. "sha512": "v3TiGaFXENM3/fVCFJJaien7A44EcGwceySh5rFNkp5RC3PZvsbDjEXoOeqsDz8+i5iuYQDMjTFuD2JReNdj9g==",
  4413. "type": "package",
  4414. "path": "nlog.web.aspnetcore/4.9.3",
  4415. "files": [
  4416. ".nupkg.metadata",
  4417. ".signature.p7s",
  4418. "lib/net451/NLog.Web.AspNetCore.dll",
  4419. "lib/net451/NLog.Web.AspNetCore.xml",
  4420. "lib/net461/NLog.Web.AspNetCore.dll",
  4421. "lib/net461/NLog.Web.AspNetCore.xml",
  4422. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll",
  4423. "lib/netcoreapp3.0/NLog.Web.AspNetCore.xml",
  4424. "lib/netstandard1.5/NLog.Web.AspNetCore.dll",
  4425. "lib/netstandard1.5/NLog.Web.AspNetCore.xml",
  4426. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  4427. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  4428. "nlog.web.aspnetcore.4.9.3.nupkg.sha512",
  4429. "nlog.web.aspnetcore.nuspec"
  4430. ]
  4431. },
  4432. "Npgsql/3.2.7": {
  4433. "sha512": "CxSXzWn/MNbHX8L1xfQSzrZfJEA2Yt5cvT27Az5abmvbqtUY1ab6xAkmBj5FfLyKCIYEnmSrxn1IY1+Jy13oFA==",
  4434. "type": "package",
  4435. "path": "npgsql/3.2.7",
  4436. "files": [
  4437. ".nupkg.metadata",
  4438. ".signature.p7s",
  4439. "lib/net45/Npgsql.dll",
  4440. "lib/net45/Npgsql.xml",
  4441. "lib/net451/Npgsql.dll",
  4442. "lib/net451/Npgsql.xml",
  4443. "lib/netstandard1.3/Npgsql.dll",
  4444. "lib/netstandard1.3/Npgsql.xml",
  4445. "lib/netstandard2.0/Npgsql.dll",
  4446. "lib/netstandard2.0/Npgsql.xml",
  4447. "npgsql.3.2.7.nupkg.sha512",
  4448. "npgsql.nuspec"
  4449. ]
  4450. },
  4451. "NuGet.Frameworks/5.0.0": {
  4452. "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==",
  4453. "type": "package",
  4454. "path": "nuget.frameworks/5.0.0",
  4455. "files": [
  4456. ".nupkg.metadata",
  4457. ".signature.p7s",
  4458. "lib/net40/NuGet.Frameworks.dll",
  4459. "lib/net40/NuGet.Frameworks.xml",
  4460. "lib/net472/NuGet.Frameworks.dll",
  4461. "lib/net472/NuGet.Frameworks.xml",
  4462. "lib/netstandard2.0/NuGet.Frameworks.dll",
  4463. "lib/netstandard2.0/NuGet.Frameworks.xml",
  4464. "nuget.frameworks.5.0.0.nupkg.sha512",
  4465. "nuget.frameworks.nuspec"
  4466. ]
  4467. },
  4468. "Oracle.ManagedDataAccess.Core/2.18.3": {
  4469. "sha512": "YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==",
  4470. "type": "package",
  4471. "path": "oracle.manageddataaccess.core/2.18.3",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "info.txt",
  4476. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll",
  4477. "oracle.manageddataaccess.core.2.18.3.nupkg.sha512",
  4478. "oracle.manageddataaccess.core.nuspec",
  4479. "readme.txt"
  4480. ]
  4481. },
  4482. "Portable.BouncyCastle/1.8.8": {
  4483. "sha512": "1rxdf8NfyAxLlqIEciCl/yNhmz1YiLkmp6rrF8p3/NVmyHHzPWLx8djtDvSAwhPLg64BXvsRcM3+5bP1HAUdYg==",
  4484. "type": "package",
  4485. "path": "portable.bouncycastle/1.8.8",
  4486. "files": [
  4487. ".nupkg.metadata",
  4488. ".signature.p7s",
  4489. "lib/net40/BouncyCastle.Crypto.dll",
  4490. "lib/net40/BouncyCastle.Crypto.xml",
  4491. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  4492. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  4493. "portable.bouncycastle.1.8.8.nupkg.sha512",
  4494. "portable.bouncycastle.nuspec"
  4495. ]
  4496. },
  4497. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4498. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  4499. "type": "package",
  4500. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4501. "files": [
  4502. ".nupkg.metadata",
  4503. ".signature.p7s",
  4504. "ThirdPartyNotices.txt",
  4505. "dotnet_library_license.txt",
  4506. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4507. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4508. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4509. ]
  4510. },
  4511. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4512. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  4513. "type": "package",
  4514. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4515. "files": [
  4516. ".nupkg.metadata",
  4517. ".signature.p7s",
  4518. "ThirdPartyNotices.txt",
  4519. "dotnet_library_license.txt",
  4520. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4521. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4522. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4523. ]
  4524. },
  4525. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4526. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  4527. "type": "package",
  4528. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4529. "files": [
  4530. ".nupkg.metadata",
  4531. ".signature.p7s",
  4532. "ThirdPartyNotices.txt",
  4533. "dotnet_library_license.txt",
  4534. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4535. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4536. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4537. ]
  4538. },
  4539. "runtime.native.System/4.3.0": {
  4540. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4541. "type": "package",
  4542. "path": "runtime.native.system/4.3.0",
  4543. "files": [
  4544. ".nupkg.metadata",
  4545. ".signature.p7s",
  4546. "ThirdPartyNotices.txt",
  4547. "dotnet_library_license.txt",
  4548. "lib/netstandard1.0/_._",
  4549. "runtime.native.system.4.3.0.nupkg.sha512",
  4550. "runtime.native.system.nuspec"
  4551. ]
  4552. },
  4553. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4554. "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  4555. "type": "package",
  4556. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  4557. "files": [
  4558. ".nupkg.metadata",
  4559. ".signature.p7s",
  4560. "LICENSE.TXT",
  4561. "THIRD-PARTY-NOTICES.TXT",
  4562. "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4563. "runtime.native.system.data.sqlclient.sni.nuspec",
  4564. "useSharedDesignerContext.txt",
  4565. "version.txt"
  4566. ]
  4567. },
  4568. "runtime.native.System.IO.Compression/4.3.0": {
  4569. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4570. "type": "package",
  4571. "path": "runtime.native.system.io.compression/4.3.0",
  4572. "files": [
  4573. ".nupkg.metadata",
  4574. ".signature.p7s",
  4575. "ThirdPartyNotices.txt",
  4576. "dotnet_library_license.txt",
  4577. "lib/netstandard1.0/_._",
  4578. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4579. "runtime.native.system.io.compression.nuspec"
  4580. ]
  4581. },
  4582. "runtime.native.System.Net.Http/4.3.0": {
  4583. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4584. "type": "package",
  4585. "path": "runtime.native.system.net.http/4.3.0",
  4586. "files": [
  4587. ".nupkg.metadata",
  4588. ".signature.p7s",
  4589. "ThirdPartyNotices.txt",
  4590. "dotnet_library_license.txt",
  4591. "lib/netstandard1.0/_._",
  4592. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4593. "runtime.native.system.net.http.nuspec"
  4594. ]
  4595. },
  4596. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  4597. "sha512": "UPrVPlqPRSVZaB4ADmbsQ77KXn9ORiWXyA1RP2W2+byCh3bhgT1bQz0jbeOoog9/2oTQ5wWZSDSMeb74MjezcA==",
  4598. "type": "package",
  4599. "path": "runtime.native.system.security.cryptography.apple/4.3.1",
  4600. "files": [
  4601. ".nupkg.metadata",
  4602. ".signature.p7s",
  4603. "ThirdPartyNotices.txt",
  4604. "dotnet_library_license.txt",
  4605. "lib/netstandard1.0/_._",
  4606. "runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  4607. "runtime.native.system.security.cryptography.apple.nuspec"
  4608. ]
  4609. },
  4610. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4611. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  4612. "type": "package",
  4613. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. ".signature.p7s",
  4617. "ThirdPartyNotices.txt",
  4618. "dotnet_library_license.txt",
  4619. "lib/netstandard1.0/_._",
  4620. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4621. "runtime.native.system.security.cryptography.openssl.nuspec"
  4622. ]
  4623. },
  4624. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4625. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  4626. "type": "package",
  4627. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4628. "files": [
  4629. ".nupkg.metadata",
  4630. ".signature.p7s",
  4631. "ThirdPartyNotices.txt",
  4632. "dotnet_library_license.txt",
  4633. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4634. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4635. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4636. ]
  4637. },
  4638. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4639. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  4640. "type": "package",
  4641. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4642. "files": [
  4643. ".nupkg.metadata",
  4644. ".signature.p7s",
  4645. "ThirdPartyNotices.txt",
  4646. "dotnet_library_license.txt",
  4647. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4648. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4649. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4650. ]
  4651. },
  4652. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  4653. "sha512": "t15yGf5r6vMV1rB5O6TgfXKChtCaN3niwFw44M2ImX3eZ8yzueplqMqXPCbWzoBDHJVz9fE+9LFUGCsUmS2Jgg==",
  4654. "type": "package",
  4655. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.1",
  4656. "files": [
  4657. ".nupkg.metadata",
  4658. ".signature.p7s",
  4659. "ThirdPartyNotices.txt",
  4660. "dotnet_library_license.txt",
  4661. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  4662. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4663. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4664. ]
  4665. },
  4666. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4667. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  4668. "type": "package",
  4669. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4670. "files": [
  4671. ".nupkg.metadata",
  4672. ".signature.p7s",
  4673. "ThirdPartyNotices.txt",
  4674. "dotnet_library_license.txt",
  4675. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4676. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4677. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4678. ]
  4679. },
  4680. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4681. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  4682. "type": "package",
  4683. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4684. "files": [
  4685. ".nupkg.metadata",
  4686. ".signature.p7s",
  4687. "ThirdPartyNotices.txt",
  4688. "dotnet_library_license.txt",
  4689. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4690. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4691. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4692. ]
  4693. },
  4694. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4695. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  4696. "type": "package",
  4697. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4698. "files": [
  4699. ".nupkg.metadata",
  4700. ".signature.p7s",
  4701. "ThirdPartyNotices.txt",
  4702. "dotnet_library_license.txt",
  4703. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4704. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4705. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4706. ]
  4707. },
  4708. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4709. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  4710. "type": "package",
  4711. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4712. "files": [
  4713. ".nupkg.metadata",
  4714. ".signature.p7s",
  4715. "ThirdPartyNotices.txt",
  4716. "dotnet_library_license.txt",
  4717. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4718. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4719. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4720. ]
  4721. },
  4722. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4723. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  4724. "type": "package",
  4725. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4726. "files": [
  4727. ".nupkg.metadata",
  4728. ".signature.p7s",
  4729. "ThirdPartyNotices.txt",
  4730. "dotnet_library_license.txt",
  4731. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4732. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4733. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4734. ]
  4735. },
  4736. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4737. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  4738. "type": "package",
  4739. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4740. "files": [
  4741. ".nupkg.metadata",
  4742. ".signature.p7s",
  4743. "ThirdPartyNotices.txt",
  4744. "dotnet_library_license.txt",
  4745. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4746. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  4747. "runtimes/win-arm64/native/sni.dll",
  4748. "useSharedDesignerContext.txt",
  4749. "version.txt"
  4750. ]
  4751. },
  4752. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4753. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  4754. "type": "package",
  4755. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4756. "files": [
  4757. ".nupkg.metadata",
  4758. ".signature.p7s",
  4759. "ThirdPartyNotices.txt",
  4760. "dotnet_library_license.txt",
  4761. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4762. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  4763. "runtimes/win-x64/native/sni.dll",
  4764. "useSharedDesignerContext.txt",
  4765. "version.txt"
  4766. ]
  4767. },
  4768. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4769. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4770. "type": "package",
  4771. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4772. "files": [
  4773. ".nupkg.metadata",
  4774. ".signature.p7s",
  4775. "ThirdPartyNotices.txt",
  4776. "dotnet_library_license.txt",
  4777. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4778. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  4779. "runtimes/win-x86/native/sni.dll",
  4780. "useSharedDesignerContext.txt",
  4781. "version.txt"
  4782. ]
  4783. },
  4784. "SQLitePCLRaw.bundle_green/1.1.12": {
  4785. "sha512": "U5lZv+E0JBCG5uQngaRgyIAlbzIwRczb0m46XJfLGXovtfVOaMNRY/oGyKAJjdexVrfqLRd+JyopGMySpAZRGQ==",
  4786. "type": "package",
  4787. "path": "sqlitepclraw.bundle_green/1.1.12",
  4788. "files": [
  4789. ".nupkg.metadata",
  4790. ".signature.p7s",
  4791. "build/wp8/SQLitePCLRaw.bundle_green.targets",
  4792. "build/wp80/arm/SQLitePCLRaw.batteries_green.dll",
  4793. "build/wp80/arm/SQLitePCLRaw.batteries_v2.dll",
  4794. "build/wp80/x86/SQLitePCLRaw.batteries_green.dll",
  4795. "build/wp80/x86/SQLitePCLRaw.batteries_v2.dll",
  4796. "lib/MonoAndroid/SQLitePCLRaw.batteries_green.dll",
  4797. "lib/MonoAndroid/SQLitePCLRaw.batteries_v2.dll",
  4798. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_green.dll",
  4799. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_v2.dll",
  4800. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4801. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4802. "lib/net35/SQLitePCLRaw.batteries_green.dll",
  4803. "lib/net35/SQLitePCLRaw.batteries_v2.dll",
  4804. "lib/net40/SQLitePCLRaw.batteries_green.dll",
  4805. "lib/net40/SQLitePCLRaw.batteries_v2.dll",
  4806. "lib/net45/SQLitePCLRaw.batteries_green.dll",
  4807. "lib/net45/SQLitePCLRaw.batteries_v2.dll",
  4808. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll",
  4809. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll",
  4810. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll",
  4811. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll",
  4812. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4813. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4814. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4815. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4816. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4817. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4818. "lib/uap10.0/SQLitePCLRaw.batteries_green.dll",
  4819. "lib/uap10.0/SQLitePCLRaw.batteries_v2.dll",
  4820. "lib/win8/SQLitePCLRaw.batteries_green.dll",
  4821. "lib/win8/SQLitePCLRaw.batteries_v2.dll",
  4822. "lib/win81/SQLitePCLRaw.batteries_green.dll",
  4823. "lib/win81/SQLitePCLRaw.batteries_v2.dll",
  4824. "lib/wp8/_._",
  4825. "lib/wpa81/SQLitePCLRaw.batteries_green.dll",
  4826. "lib/wpa81/SQLitePCLRaw.batteries_v2.dll",
  4827. "sqlitepclraw.bundle_green.1.1.12.nupkg.sha512",
  4828. "sqlitepclraw.bundle_green.nuspec"
  4829. ]
  4830. },
  4831. "SQLitePCLRaw.core/1.1.12": {
  4832. "sha512": "S4hr+tE275ran5jyKFW/FYPG6Bz6nsHUp9H8chqKxzk21PxJadLd9LnvLe6LMRP/IqY5+LOIIDQF3m/2iDlZ7Q==",
  4833. "type": "package",
  4834. "path": "sqlitepclraw.core/1.1.12",
  4835. "files": [
  4836. ".nupkg.metadata",
  4837. ".signature.p7s",
  4838. "lib/MonoAndroid/SQLitePCLRaw.core.dll",
  4839. "lib/Xamarin.Mac20/SQLitePCLRaw.core.dll",
  4840. "lib/Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4841. "lib/net35/SQLitePCLRaw.core.dll",
  4842. "lib/net40/SQLitePCLRaw.core.dll",
  4843. "lib/net45/SQLitePCLRaw.core.dll",
  4844. "lib/netstandard1.0/SQLitePCLRaw.core.dll",
  4845. "lib/netstandard1.1/SQLitePCLRaw.core.dll",
  4846. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4847. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4848. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4849. "lib/uap10.0/SQLitePCLRaw.core.dll",
  4850. "lib/win8/SQLitePCLRaw.core.dll",
  4851. "lib/win81/SQLitePCLRaw.core.dll",
  4852. "lib/wpa81/SQLitePCLRaw.core.dll",
  4853. "sqlitepclraw.core.1.1.12.nupkg.sha512",
  4854. "sqlitepclraw.core.nuspec"
  4855. ]
  4856. },
  4857. "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": {
  4858. "sha512": "Tn/YE1VxWtHa4MQ9KC//ptIw6cLAUh+xXSdpX7MyGINmb4/igqyx0IOEq5WeH/+cuI/EnDtdWAOn98eMQnKsTQ==",
  4859. "type": "package",
  4860. "path": "sqlitepclraw.lib.e_sqlite3.linux/1.1.12",
  4861. "files": [
  4862. ".nupkg.metadata",
  4863. ".signature.p7s",
  4864. "build/net35/SQLitePCLRaw.lib.e_sqlite3.linux.targets",
  4865. "lib/net35/_._",
  4866. "lib/netstandard1.0/_._",
  4867. "lib/netstandard2.0/_._",
  4868. "runtimes/alpine-x64/native/libe_sqlite3.so",
  4869. "runtimes/linux-arm/native/libe_sqlite3.so",
  4870. "runtimes/linux-arm64/native/libe_sqlite3.so",
  4871. "runtimes/linux-armel/native/libe_sqlite3.so",
  4872. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  4873. "runtimes/linux-x64/native/libe_sqlite3.so",
  4874. "runtimes/linux-x86/native/libe_sqlite3.so",
  4875. "sqlitepclraw.lib.e_sqlite3.linux.1.1.12.nupkg.sha512",
  4876. "sqlitepclraw.lib.e_sqlite3.linux.nuspec"
  4877. ]
  4878. },
  4879. "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": {
  4880. "sha512": "qfl1ljn6NOQDyM2i9JDZc6xekHoC+Fqe4GzuhWFCS6siI7lLInw09HHSZRqyimV36vjdQYnyBBFKSn53rSOYkA==",
  4881. "type": "package",
  4882. "path": "sqlitepclraw.lib.e_sqlite3.osx/1.1.12",
  4883. "files": [
  4884. ".nupkg.metadata",
  4885. ".signature.p7s",
  4886. "build/Xamarin.Mac20/SQLitePCLRaw.lib.e_sqlite3.osx.targets",
  4887. "build/net35/SQLitePCLRaw.lib.e_sqlite3.osx.targets",
  4888. "lib/Xamarin.Mac20/_._",
  4889. "lib/net35/_._",
  4890. "lib/netstandard1.0/_._",
  4891. "lib/netstandard2.0/_._",
  4892. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  4893. "sqlitepclraw.lib.e_sqlite3.osx.1.1.12.nupkg.sha512",
  4894. "sqlitepclraw.lib.e_sqlite3.osx.nuspec"
  4895. ]
  4896. },
  4897. "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": {
  4898. "sha512": "YfmaVhcEyAGU6BZ7NQiYYfCHKsCYjldwsafiFKArzqeM8MHuhfqft1Fjdv7ncukXrvKsHXhCrzJzKEMwPXiSSg==",
  4899. "type": "package",
  4900. "path": "sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.12",
  4901. "files": [
  4902. ".nupkg.metadata",
  4903. ".signature.p7s",
  4904. "build/net35/SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets",
  4905. "lib/net35/_._",
  4906. "lib/netstandard1.0/_._",
  4907. "lib/netstandard2.0/_._",
  4908. "runtimes/win-x64/native/e_sqlite3.dll",
  4909. "runtimes/win-x86/native/e_sqlite3.dll",
  4910. "runtimes/win8-arm/native/e_sqlite3.dll",
  4911. "sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.12.nupkg.sha512",
  4912. "sqlitepclraw.lib.e_sqlite3.v110_xp.nuspec"
  4913. ]
  4914. },
  4915. "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": {
  4916. "sha512": "qjz6Ad1Q5hiI8imCiG5Mpa/w8E8+rAk3SRJdX54uEOo5nPywiN1H0jmMZO+ID0nPibQA3yjlAHt5/GcLW9Iftg==",
  4917. "type": "package",
  4918. "path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.12",
  4919. "files": [
  4920. ".nupkg.metadata",
  4921. ".signature.p7s",
  4922. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll",
  4923. "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512",
  4924. "sqlitepclraw.provider.e_sqlite3.netstandard11.nuspec"
  4925. ]
  4926. },
  4927. "sqlSugarCore/5.0.0.18": {
  4928. "sha512": "AtNXN+yg50fIZuOHBggWvxY/sBH0nqTFEVM6CDmmc06WxUJ0MA8N7kBbKxVYVWbhpD8/INWZrGJ4tko3ZKD88A==",
  4929. "type": "package",
  4930. "path": "sqlsugarcore/5.0.0.18",
  4931. "files": [
  4932. ".nupkg.metadata",
  4933. ".signature.p7s",
  4934. "lib/netstandard2.0/SqlSugar.dll",
  4935. "sqlsugarcore.5.0.0.18.nupkg.sha512",
  4936. "sqlsugarcore.nuspec"
  4937. ]
  4938. },
  4939. "System.AppContext/4.3.0": {
  4940. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4941. "type": "package",
  4942. "path": "system.appcontext/4.3.0",
  4943. "files": [
  4944. ".nupkg.metadata",
  4945. ".signature.p7s",
  4946. "ThirdPartyNotices.txt",
  4947. "dotnet_library_license.txt",
  4948. "lib/MonoAndroid10/_._",
  4949. "lib/MonoTouch10/_._",
  4950. "lib/net46/System.AppContext.dll",
  4951. "lib/net463/System.AppContext.dll",
  4952. "lib/netcore50/System.AppContext.dll",
  4953. "lib/netstandard1.6/System.AppContext.dll",
  4954. "lib/xamarinios10/_._",
  4955. "lib/xamarinmac20/_._",
  4956. "lib/xamarintvos10/_._",
  4957. "lib/xamarinwatchos10/_._",
  4958. "ref/MonoAndroid10/_._",
  4959. "ref/MonoTouch10/_._",
  4960. "ref/net46/System.AppContext.dll",
  4961. "ref/net463/System.AppContext.dll",
  4962. "ref/netstandard/_._",
  4963. "ref/netstandard1.3/System.AppContext.dll",
  4964. "ref/netstandard1.3/System.AppContext.xml",
  4965. "ref/netstandard1.3/de/System.AppContext.xml",
  4966. "ref/netstandard1.3/es/System.AppContext.xml",
  4967. "ref/netstandard1.3/fr/System.AppContext.xml",
  4968. "ref/netstandard1.3/it/System.AppContext.xml",
  4969. "ref/netstandard1.3/ja/System.AppContext.xml",
  4970. "ref/netstandard1.3/ko/System.AppContext.xml",
  4971. "ref/netstandard1.3/ru/System.AppContext.xml",
  4972. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4973. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4974. "ref/netstandard1.6/System.AppContext.dll",
  4975. "ref/netstandard1.6/System.AppContext.xml",
  4976. "ref/netstandard1.6/de/System.AppContext.xml",
  4977. "ref/netstandard1.6/es/System.AppContext.xml",
  4978. "ref/netstandard1.6/fr/System.AppContext.xml",
  4979. "ref/netstandard1.6/it/System.AppContext.xml",
  4980. "ref/netstandard1.6/ja/System.AppContext.xml",
  4981. "ref/netstandard1.6/ko/System.AppContext.xml",
  4982. "ref/netstandard1.6/ru/System.AppContext.xml",
  4983. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4984. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4985. "ref/xamarinios10/_._",
  4986. "ref/xamarinmac20/_._",
  4987. "ref/xamarintvos10/_._",
  4988. "ref/xamarinwatchos10/_._",
  4989. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4990. "system.appcontext.4.3.0.nupkg.sha512",
  4991. "system.appcontext.nuspec"
  4992. ]
  4993. },
  4994. "System.Buffers/4.3.0": {
  4995. "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
  4996. "type": "package",
  4997. "path": "system.buffers/4.3.0",
  4998. "files": [
  4999. ".nupkg.metadata",
  5000. ".signature.p7s",
  5001. "ThirdPartyNotices.txt",
  5002. "dotnet_library_license.txt",
  5003. "lib/netstandard1.1/.xml",
  5004. "lib/netstandard1.1/System.Buffers.dll",
  5005. "system.buffers.4.3.0.nupkg.sha512",
  5006. "system.buffers.nuspec"
  5007. ]
  5008. },
  5009. "System.Collections/4.3.0": {
  5010. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5011. "type": "package",
  5012. "path": "system.collections/4.3.0",
  5013. "files": [
  5014. ".nupkg.metadata",
  5015. ".signature.p7s",
  5016. "ThirdPartyNotices.txt",
  5017. "dotnet_library_license.txt",
  5018. "lib/MonoAndroid10/_._",
  5019. "lib/MonoTouch10/_._",
  5020. "lib/net45/_._",
  5021. "lib/portable-net45+win8+wp8+wpa81/_._",
  5022. "lib/win8/_._",
  5023. "lib/wp80/_._",
  5024. "lib/wpa81/_._",
  5025. "lib/xamarinios10/_._",
  5026. "lib/xamarinmac20/_._",
  5027. "lib/xamarintvos10/_._",
  5028. "lib/xamarinwatchos10/_._",
  5029. "ref/MonoAndroid10/_._",
  5030. "ref/MonoTouch10/_._",
  5031. "ref/net45/_._",
  5032. "ref/netcore50/System.Collections.dll",
  5033. "ref/netcore50/System.Collections.xml",
  5034. "ref/netcore50/de/System.Collections.xml",
  5035. "ref/netcore50/es/System.Collections.xml",
  5036. "ref/netcore50/fr/System.Collections.xml",
  5037. "ref/netcore50/it/System.Collections.xml",
  5038. "ref/netcore50/ja/System.Collections.xml",
  5039. "ref/netcore50/ko/System.Collections.xml",
  5040. "ref/netcore50/ru/System.Collections.xml",
  5041. "ref/netcore50/zh-hans/System.Collections.xml",
  5042. "ref/netcore50/zh-hant/System.Collections.xml",
  5043. "ref/netstandard1.0/System.Collections.dll",
  5044. "ref/netstandard1.0/System.Collections.xml",
  5045. "ref/netstandard1.0/de/System.Collections.xml",
  5046. "ref/netstandard1.0/es/System.Collections.xml",
  5047. "ref/netstandard1.0/fr/System.Collections.xml",
  5048. "ref/netstandard1.0/it/System.Collections.xml",
  5049. "ref/netstandard1.0/ja/System.Collections.xml",
  5050. "ref/netstandard1.0/ko/System.Collections.xml",
  5051. "ref/netstandard1.0/ru/System.Collections.xml",
  5052. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5053. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5054. "ref/netstandard1.3/System.Collections.dll",
  5055. "ref/netstandard1.3/System.Collections.xml",
  5056. "ref/netstandard1.3/de/System.Collections.xml",
  5057. "ref/netstandard1.3/es/System.Collections.xml",
  5058. "ref/netstandard1.3/fr/System.Collections.xml",
  5059. "ref/netstandard1.3/it/System.Collections.xml",
  5060. "ref/netstandard1.3/ja/System.Collections.xml",
  5061. "ref/netstandard1.3/ko/System.Collections.xml",
  5062. "ref/netstandard1.3/ru/System.Collections.xml",
  5063. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5064. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5065. "ref/portable-net45+win8+wp8+wpa81/_._",
  5066. "ref/win8/_._",
  5067. "ref/wp80/_._",
  5068. "ref/wpa81/_._",
  5069. "ref/xamarinios10/_._",
  5070. "ref/xamarinmac20/_._",
  5071. "ref/xamarintvos10/_._",
  5072. "ref/xamarinwatchos10/_._",
  5073. "system.collections.4.3.0.nupkg.sha512",
  5074. "system.collections.nuspec"
  5075. ]
  5076. },
  5077. "System.Collections.Concurrent/4.3.0": {
  5078. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5079. "type": "package",
  5080. "path": "system.collections.concurrent/4.3.0",
  5081. "files": [
  5082. ".nupkg.metadata",
  5083. ".signature.p7s",
  5084. "ThirdPartyNotices.txt",
  5085. "dotnet_library_license.txt",
  5086. "lib/MonoAndroid10/_._",
  5087. "lib/MonoTouch10/_._",
  5088. "lib/net45/_._",
  5089. "lib/netcore50/System.Collections.Concurrent.dll",
  5090. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5091. "lib/portable-net45+win8+wpa81/_._",
  5092. "lib/win8/_._",
  5093. "lib/wpa81/_._",
  5094. "lib/xamarinios10/_._",
  5095. "lib/xamarinmac20/_._",
  5096. "lib/xamarintvos10/_._",
  5097. "lib/xamarinwatchos10/_._",
  5098. "ref/MonoAndroid10/_._",
  5099. "ref/MonoTouch10/_._",
  5100. "ref/net45/_._",
  5101. "ref/netcore50/System.Collections.Concurrent.dll",
  5102. "ref/netcore50/System.Collections.Concurrent.xml",
  5103. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5104. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5105. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5106. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5107. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5108. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5109. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5110. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5111. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5112. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5113. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5114. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5115. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5116. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5117. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5118. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5119. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5120. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5121. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5122. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5123. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5124. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5125. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5126. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5127. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5128. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5129. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5130. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5131. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5132. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5133. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5134. "ref/portable-net45+win8+wpa81/_._",
  5135. "ref/win8/_._",
  5136. "ref/wpa81/_._",
  5137. "ref/xamarinios10/_._",
  5138. "ref/xamarinmac20/_._",
  5139. "ref/xamarintvos10/_._",
  5140. "ref/xamarinwatchos10/_._",
  5141. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5142. "system.collections.concurrent.nuspec"
  5143. ]
  5144. },
  5145. "System.Collections.Immutable/1.7.1": {
  5146. "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
  5147. "type": "package",
  5148. "path": "system.collections.immutable/1.7.1",
  5149. "files": [
  5150. ".nupkg.metadata",
  5151. ".signature.p7s",
  5152. "Icon.png",
  5153. "LICENSE.TXT",
  5154. "THIRD-PARTY-NOTICES.TXT",
  5155. "lib/net461/System.Collections.Immutable.dll",
  5156. "lib/net461/System.Collections.Immutable.xml",
  5157. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5158. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5159. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5160. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5161. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5162. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5163. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5164. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5165. "system.collections.immutable.1.7.1.nupkg.sha512",
  5166. "system.collections.immutable.nuspec",
  5167. "useSharedDesignerContext.txt",
  5168. "version.txt"
  5169. ]
  5170. },
  5171. "System.Collections.NonGeneric/4.3.0": {
  5172. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5173. "type": "package",
  5174. "path": "system.collections.nongeneric/4.3.0",
  5175. "files": [
  5176. ".nupkg.metadata",
  5177. ".signature.p7s",
  5178. "ThirdPartyNotices.txt",
  5179. "dotnet_library_license.txt",
  5180. "lib/MonoAndroid10/_._",
  5181. "lib/MonoTouch10/_._",
  5182. "lib/net46/System.Collections.NonGeneric.dll",
  5183. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5184. "lib/xamarinios10/_._",
  5185. "lib/xamarinmac20/_._",
  5186. "lib/xamarintvos10/_._",
  5187. "lib/xamarinwatchos10/_._",
  5188. "ref/MonoAndroid10/_._",
  5189. "ref/MonoTouch10/_._",
  5190. "ref/net46/System.Collections.NonGeneric.dll",
  5191. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5192. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5193. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5194. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5195. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5196. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5197. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5198. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5199. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5200. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5201. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5202. "ref/xamarinios10/_._",
  5203. "ref/xamarinmac20/_._",
  5204. "ref/xamarintvos10/_._",
  5205. "ref/xamarinwatchos10/_._",
  5206. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5207. "system.collections.nongeneric.nuspec"
  5208. ]
  5209. },
  5210. "System.Collections.Specialized/4.3.0": {
  5211. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  5212. "type": "package",
  5213. "path": "system.collections.specialized/4.3.0",
  5214. "files": [
  5215. ".nupkg.metadata",
  5216. ".signature.p7s",
  5217. "ThirdPartyNotices.txt",
  5218. "dotnet_library_license.txt",
  5219. "lib/MonoAndroid10/_._",
  5220. "lib/MonoTouch10/_._",
  5221. "lib/net46/System.Collections.Specialized.dll",
  5222. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5223. "lib/xamarinios10/_._",
  5224. "lib/xamarinmac20/_._",
  5225. "lib/xamarintvos10/_._",
  5226. "lib/xamarinwatchos10/_._",
  5227. "ref/MonoAndroid10/_._",
  5228. "ref/MonoTouch10/_._",
  5229. "ref/net46/System.Collections.Specialized.dll",
  5230. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5231. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5232. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5233. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5234. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5235. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5236. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5237. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5238. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5239. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5240. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5241. "ref/xamarinios10/_._",
  5242. "ref/xamarinmac20/_._",
  5243. "ref/xamarintvos10/_._",
  5244. "ref/xamarinwatchos10/_._",
  5245. "system.collections.specialized.4.3.0.nupkg.sha512",
  5246. "system.collections.specialized.nuspec"
  5247. ]
  5248. },
  5249. "System.ComponentModel/4.3.0": {
  5250. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5251. "type": "package",
  5252. "path": "system.componentmodel/4.3.0",
  5253. "files": [
  5254. ".nupkg.metadata",
  5255. ".signature.p7s",
  5256. "ThirdPartyNotices.txt",
  5257. "dotnet_library_license.txt",
  5258. "lib/MonoAndroid10/_._",
  5259. "lib/MonoTouch10/_._",
  5260. "lib/net45/_._",
  5261. "lib/netcore50/System.ComponentModel.dll",
  5262. "lib/netstandard1.3/System.ComponentModel.dll",
  5263. "lib/portable-net45+win8+wp8+wpa81/_._",
  5264. "lib/win8/_._",
  5265. "lib/wp80/_._",
  5266. "lib/wpa81/_._",
  5267. "lib/xamarinios10/_._",
  5268. "lib/xamarinmac20/_._",
  5269. "lib/xamarintvos10/_._",
  5270. "lib/xamarinwatchos10/_._",
  5271. "ref/MonoAndroid10/_._",
  5272. "ref/MonoTouch10/_._",
  5273. "ref/net45/_._",
  5274. "ref/netcore50/System.ComponentModel.dll",
  5275. "ref/netcore50/System.ComponentModel.xml",
  5276. "ref/netcore50/de/System.ComponentModel.xml",
  5277. "ref/netcore50/es/System.ComponentModel.xml",
  5278. "ref/netcore50/fr/System.ComponentModel.xml",
  5279. "ref/netcore50/it/System.ComponentModel.xml",
  5280. "ref/netcore50/ja/System.ComponentModel.xml",
  5281. "ref/netcore50/ko/System.ComponentModel.xml",
  5282. "ref/netcore50/ru/System.ComponentModel.xml",
  5283. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5284. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5285. "ref/netstandard1.0/System.ComponentModel.dll",
  5286. "ref/netstandard1.0/System.ComponentModel.xml",
  5287. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5288. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5289. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5290. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5291. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5292. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5293. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5294. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5295. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5296. "ref/portable-net45+win8+wp8+wpa81/_._",
  5297. "ref/win8/_._",
  5298. "ref/wp80/_._",
  5299. "ref/wpa81/_._",
  5300. "ref/xamarinios10/_._",
  5301. "ref/xamarinmac20/_._",
  5302. "ref/xamarintvos10/_._",
  5303. "ref/xamarinwatchos10/_._",
  5304. "system.componentmodel.4.3.0.nupkg.sha512",
  5305. "system.componentmodel.nuspec"
  5306. ]
  5307. },
  5308. "System.ComponentModel.Annotations/4.7.0": {
  5309. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  5310. "type": "package",
  5311. "path": "system.componentmodel.annotations/4.7.0",
  5312. "files": [
  5313. ".nupkg.metadata",
  5314. ".signature.p7s",
  5315. "LICENSE.TXT",
  5316. "THIRD-PARTY-NOTICES.TXT",
  5317. "lib/MonoAndroid10/_._",
  5318. "lib/MonoTouch10/_._",
  5319. "lib/net45/_._",
  5320. "lib/net461/System.ComponentModel.Annotations.dll",
  5321. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5322. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5323. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5324. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5325. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5326. "lib/portable-net45+win8/_._",
  5327. "lib/win8/_._",
  5328. "lib/xamarinios10/_._",
  5329. "lib/xamarinmac20/_._",
  5330. "lib/xamarintvos10/_._",
  5331. "lib/xamarinwatchos10/_._",
  5332. "ref/MonoAndroid10/_._",
  5333. "ref/MonoTouch10/_._",
  5334. "ref/net45/_._",
  5335. "ref/net461/System.ComponentModel.Annotations.dll",
  5336. "ref/net461/System.ComponentModel.Annotations.xml",
  5337. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5338. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5339. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5340. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5341. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5342. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5343. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5344. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5345. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5346. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5347. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5348. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5349. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5350. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5351. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5352. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5353. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5354. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5355. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5356. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5357. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5358. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5359. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5360. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5361. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5362. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5363. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5364. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5365. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5366. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5367. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5368. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5369. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5370. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5371. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5372. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5373. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5374. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5375. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5376. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5377. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5378. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5379. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5380. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5381. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5382. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5383. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5384. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5385. "ref/portable-net45+win8/_._",
  5386. "ref/win8/_._",
  5387. "ref/xamarinios10/_._",
  5388. "ref/xamarinmac20/_._",
  5389. "ref/xamarintvos10/_._",
  5390. "ref/xamarinwatchos10/_._",
  5391. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  5392. "system.componentmodel.annotations.nuspec",
  5393. "useSharedDesignerContext.txt",
  5394. "version.txt"
  5395. ]
  5396. },
  5397. "System.ComponentModel.Primitives/4.3.0": {
  5398. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5399. "type": "package",
  5400. "path": "system.componentmodel.primitives/4.3.0",
  5401. "files": [
  5402. ".nupkg.metadata",
  5403. ".signature.p7s",
  5404. "ThirdPartyNotices.txt",
  5405. "dotnet_library_license.txt",
  5406. "lib/MonoAndroid10/_._",
  5407. "lib/MonoTouch10/_._",
  5408. "lib/net45/System.ComponentModel.Primitives.dll",
  5409. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5410. "lib/xamarinios10/_._",
  5411. "lib/xamarinmac20/_._",
  5412. "lib/xamarintvos10/_._",
  5413. "lib/xamarinwatchos10/_._",
  5414. "ref/MonoAndroid10/_._",
  5415. "ref/MonoTouch10/_._",
  5416. "ref/net45/System.ComponentModel.Primitives.dll",
  5417. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5418. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5419. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5420. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5421. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5422. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5423. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5424. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5425. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5426. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5427. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5428. "ref/xamarinios10/_._",
  5429. "ref/xamarinmac20/_._",
  5430. "ref/xamarintvos10/_._",
  5431. "ref/xamarinwatchos10/_._",
  5432. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5433. "system.componentmodel.primitives.nuspec"
  5434. ]
  5435. },
  5436. "System.ComponentModel.TypeConverter/4.3.0": {
  5437. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5438. "type": "package",
  5439. "path": "system.componentmodel.typeconverter/4.3.0",
  5440. "files": [
  5441. ".nupkg.metadata",
  5442. ".signature.p7s",
  5443. "ThirdPartyNotices.txt",
  5444. "dotnet_library_license.txt",
  5445. "lib/MonoAndroid10/_._",
  5446. "lib/MonoTouch10/_._",
  5447. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5448. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5449. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5450. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5451. "lib/xamarinios10/_._",
  5452. "lib/xamarinmac20/_._",
  5453. "lib/xamarintvos10/_._",
  5454. "lib/xamarinwatchos10/_._",
  5455. "ref/MonoAndroid10/_._",
  5456. "ref/MonoTouch10/_._",
  5457. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5458. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5459. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5460. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5461. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5462. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5463. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5464. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5465. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5466. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5467. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5468. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5469. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5470. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5471. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5472. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5473. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5474. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5475. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5476. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5477. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5478. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5479. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5480. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5481. "ref/xamarinios10/_._",
  5482. "ref/xamarinmac20/_._",
  5483. "ref/xamarintvos10/_._",
  5484. "ref/xamarinwatchos10/_._",
  5485. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5486. "system.componentmodel.typeconverter.nuspec"
  5487. ]
  5488. },
  5489. "System.Configuration.ConfigurationManager/4.4.1": {
  5490. "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  5491. "type": "package",
  5492. "path": "system.configuration.configurationmanager/4.4.1",
  5493. "files": [
  5494. ".nupkg.metadata",
  5495. ".signature.p7s",
  5496. "LICENSE.TXT",
  5497. "THIRD-PARTY-NOTICES.TXT",
  5498. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5499. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5500. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5501. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5502. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5503. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5504. "system.configuration.configurationmanager.4.4.1.nupkg.sha512",
  5505. "system.configuration.configurationmanager.nuspec",
  5506. "useSharedDesignerContext.txt",
  5507. "version.txt"
  5508. ]
  5509. },
  5510. "System.Console/4.3.0": {
  5511. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5512. "type": "package",
  5513. "path": "system.console/4.3.0",
  5514. "files": [
  5515. ".nupkg.metadata",
  5516. ".signature.p7s",
  5517. "ThirdPartyNotices.txt",
  5518. "dotnet_library_license.txt",
  5519. "lib/MonoAndroid10/_._",
  5520. "lib/MonoTouch10/_._",
  5521. "lib/net46/System.Console.dll",
  5522. "lib/xamarinios10/_._",
  5523. "lib/xamarinmac20/_._",
  5524. "lib/xamarintvos10/_._",
  5525. "lib/xamarinwatchos10/_._",
  5526. "ref/MonoAndroid10/_._",
  5527. "ref/MonoTouch10/_._",
  5528. "ref/net46/System.Console.dll",
  5529. "ref/netstandard1.3/System.Console.dll",
  5530. "ref/netstandard1.3/System.Console.xml",
  5531. "ref/netstandard1.3/de/System.Console.xml",
  5532. "ref/netstandard1.3/es/System.Console.xml",
  5533. "ref/netstandard1.3/fr/System.Console.xml",
  5534. "ref/netstandard1.3/it/System.Console.xml",
  5535. "ref/netstandard1.3/ja/System.Console.xml",
  5536. "ref/netstandard1.3/ko/System.Console.xml",
  5537. "ref/netstandard1.3/ru/System.Console.xml",
  5538. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5539. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5540. "ref/xamarinios10/_._",
  5541. "ref/xamarinmac20/_._",
  5542. "ref/xamarintvos10/_._",
  5543. "ref/xamarinwatchos10/_._",
  5544. "system.console.4.3.0.nupkg.sha512",
  5545. "system.console.nuspec"
  5546. ]
  5547. },
  5548. "System.Data.Common/4.3.0": {
  5549. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  5550. "type": "package",
  5551. "path": "system.data.common/4.3.0",
  5552. "files": [
  5553. ".nupkg.metadata",
  5554. ".signature.p7s",
  5555. "ThirdPartyNotices.txt",
  5556. "dotnet_library_license.txt",
  5557. "lib/MonoAndroid10/_._",
  5558. "lib/MonoTouch10/_._",
  5559. "lib/net451/System.Data.Common.dll",
  5560. "lib/netstandard1.2/System.Data.Common.dll",
  5561. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5562. "lib/xamarinios10/_._",
  5563. "lib/xamarinmac20/_._",
  5564. "lib/xamarintvos10/_._",
  5565. "lib/xamarinwatchos10/_._",
  5566. "ref/MonoAndroid10/_._",
  5567. "ref/MonoTouch10/_._",
  5568. "ref/net451/System.Data.Common.dll",
  5569. "ref/netstandard1.2/System.Data.Common.dll",
  5570. "ref/netstandard1.2/System.Data.Common.xml",
  5571. "ref/netstandard1.2/de/System.Data.Common.xml",
  5572. "ref/netstandard1.2/es/System.Data.Common.xml",
  5573. "ref/netstandard1.2/fr/System.Data.Common.xml",
  5574. "ref/netstandard1.2/it/System.Data.Common.xml",
  5575. "ref/netstandard1.2/ja/System.Data.Common.xml",
  5576. "ref/netstandard1.2/ko/System.Data.Common.xml",
  5577. "ref/netstandard1.2/ru/System.Data.Common.xml",
  5578. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  5579. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  5580. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5581. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  5582. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  5583. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  5584. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  5585. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  5586. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  5587. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  5588. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  5589. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  5590. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  5591. "ref/xamarinios10/_._",
  5592. "ref/xamarinmac20/_._",
  5593. "ref/xamarintvos10/_._",
  5594. "ref/xamarinwatchos10/_._",
  5595. "system.data.common.4.3.0.nupkg.sha512",
  5596. "system.data.common.nuspec"
  5597. ]
  5598. },
  5599. "System.Data.SqlClient/4.4.0": {
  5600. "sha512": "fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==",
  5601. "type": "package",
  5602. "path": "system.data.sqlclient/4.4.0",
  5603. "files": [
  5604. ".nupkg.metadata",
  5605. ".signature.p7s",
  5606. "LICENSE.TXT",
  5607. "THIRD-PARTY-NOTICES.TXT",
  5608. "lib/MonoAndroid10/_._",
  5609. "lib/MonoTouch10/_._",
  5610. "lib/net451/System.Data.SqlClient.dll",
  5611. "lib/net46/System.Data.SqlClient.dll",
  5612. "lib/net461/System.Data.SqlClient.dll",
  5613. "lib/netstandard1.2/System.Data.SqlClient.dll",
  5614. "lib/netstandard1.3/System.Data.SqlClient.dll",
  5615. "lib/netstandard2.0/System.Data.SqlClient.dll",
  5616. "lib/xamarinios10/_._",
  5617. "lib/xamarinmac20/_._",
  5618. "lib/xamarintvos10/_._",
  5619. "lib/xamarinwatchos10/_._",
  5620. "ref/MonoAndroid10/_._",
  5621. "ref/MonoTouch10/_._",
  5622. "ref/net451/System.Data.SqlClient.dll",
  5623. "ref/net46/System.Data.SqlClient.dll",
  5624. "ref/net461/System.Data.SqlClient.dll",
  5625. "ref/net461/System.Data.SqlClient.xml",
  5626. "ref/netstandard1.2/System.Data.SqlClient.dll",
  5627. "ref/netstandard1.2/System.Data.SqlClient.xml",
  5628. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  5629. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  5630. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  5631. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  5632. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  5633. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  5634. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  5635. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  5636. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  5637. "ref/netstandard1.3/System.Data.SqlClient.dll",
  5638. "ref/netstandard1.3/System.Data.SqlClient.xml",
  5639. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  5640. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  5641. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  5642. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  5643. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  5644. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  5645. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  5646. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  5647. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  5648. "ref/netstandard2.0/System.Data.SqlClient.dll",
  5649. "ref/netstandard2.0/System.Data.SqlClient.xml",
  5650. "ref/xamarinios10/_._",
  5651. "ref/xamarinmac20/_._",
  5652. "ref/xamarintvos10/_._",
  5653. "ref/xamarinwatchos10/_._",
  5654. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  5655. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  5656. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  5657. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  5658. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  5659. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  5660. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  5661. "system.data.sqlclient.4.4.0.nupkg.sha512",
  5662. "system.data.sqlclient.nuspec",
  5663. "useSharedDesignerContext.txt",
  5664. "version.txt"
  5665. ]
  5666. },
  5667. "System.Diagnostics.Debug/4.3.0": {
  5668. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5669. "type": "package",
  5670. "path": "system.diagnostics.debug/4.3.0",
  5671. "files": [
  5672. ".nupkg.metadata",
  5673. ".signature.p7s",
  5674. "ThirdPartyNotices.txt",
  5675. "dotnet_library_license.txt",
  5676. "lib/MonoAndroid10/_._",
  5677. "lib/MonoTouch10/_._",
  5678. "lib/net45/_._",
  5679. "lib/portable-net45+win8+wp8+wpa81/_._",
  5680. "lib/win8/_._",
  5681. "lib/wp80/_._",
  5682. "lib/wpa81/_._",
  5683. "lib/xamarinios10/_._",
  5684. "lib/xamarinmac20/_._",
  5685. "lib/xamarintvos10/_._",
  5686. "lib/xamarinwatchos10/_._",
  5687. "ref/MonoAndroid10/_._",
  5688. "ref/MonoTouch10/_._",
  5689. "ref/net45/_._",
  5690. "ref/netcore50/System.Diagnostics.Debug.dll",
  5691. "ref/netcore50/System.Diagnostics.Debug.xml",
  5692. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5693. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5694. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5695. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5696. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5697. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5698. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5699. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5700. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5701. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5702. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5703. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5704. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5705. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5706. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5707. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5708. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5709. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5710. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5711. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5712. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5713. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5714. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5715. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5716. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5717. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5718. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5719. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5720. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5721. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5722. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5723. "ref/portable-net45+win8+wp8+wpa81/_._",
  5724. "ref/win8/_._",
  5725. "ref/wp80/_._",
  5726. "ref/wpa81/_._",
  5727. "ref/xamarinios10/_._",
  5728. "ref/xamarinmac20/_._",
  5729. "ref/xamarintvos10/_._",
  5730. "ref/xamarinwatchos10/_._",
  5731. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5732. "system.diagnostics.debug.nuspec"
  5733. ]
  5734. },
  5735. "System.Diagnostics.DiagnosticSource/4.7.1": {
  5736. "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  5737. "type": "package",
  5738. "path": "system.diagnostics.diagnosticsource/4.7.1",
  5739. "files": [
  5740. ".nupkg.metadata",
  5741. ".signature.p7s",
  5742. "Icon.png",
  5743. "LICENSE.TXT",
  5744. "THIRD-PARTY-NOTICES.TXT",
  5745. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5746. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5747. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5748. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5749. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5750. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5751. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5752. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5753. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5754. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5755. "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
  5756. "system.diagnostics.diagnosticsource.nuspec",
  5757. "useSharedDesignerContext.txt",
  5758. "version.txt"
  5759. ]
  5760. },
  5761. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  5762. "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
  5763. "type": "package",
  5764. "path": "system.diagnostics.textwritertracelistener/4.3.0",
  5765. "files": [
  5766. ".nupkg.metadata",
  5767. ".signature.p7s",
  5768. "ThirdPartyNotices.txt",
  5769. "dotnet_library_license.txt",
  5770. "lib/MonoAndroid10/_._",
  5771. "lib/MonoTouch10/_._",
  5772. "lib/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5773. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5774. "lib/xamarinios10/_._",
  5775. "lib/xamarinmac20/_._",
  5776. "lib/xamarintvos10/_._",
  5777. "lib/xamarinwatchos10/_._",
  5778. "ref/MonoAndroid10/_._",
  5779. "ref/MonoTouch10/_._",
  5780. "ref/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5781. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5782. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml",
  5783. "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml",
  5784. "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml",
  5785. "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml",
  5786. "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml",
  5787. "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml",
  5788. "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml",
  5789. "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml",
  5790. "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml",
  5791. "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml",
  5792. "ref/xamarinios10/_._",
  5793. "ref/xamarinmac20/_._",
  5794. "ref/xamarintvos10/_._",
  5795. "ref/xamarinwatchos10/_._",
  5796. "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512",
  5797. "system.diagnostics.textwritertracelistener.nuspec"
  5798. ]
  5799. },
  5800. "System.Diagnostics.Tools/4.3.0": {
  5801. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5802. "type": "package",
  5803. "path": "system.diagnostics.tools/4.3.0",
  5804. "files": [
  5805. ".nupkg.metadata",
  5806. ".signature.p7s",
  5807. "ThirdPartyNotices.txt",
  5808. "dotnet_library_license.txt",
  5809. "lib/MonoAndroid10/_._",
  5810. "lib/MonoTouch10/_._",
  5811. "lib/net45/_._",
  5812. "lib/portable-net45+win8+wp8+wpa81/_._",
  5813. "lib/win8/_._",
  5814. "lib/wp80/_._",
  5815. "lib/wpa81/_._",
  5816. "lib/xamarinios10/_._",
  5817. "lib/xamarinmac20/_._",
  5818. "lib/xamarintvos10/_._",
  5819. "lib/xamarinwatchos10/_._",
  5820. "ref/MonoAndroid10/_._",
  5821. "ref/MonoTouch10/_._",
  5822. "ref/net45/_._",
  5823. "ref/netcore50/System.Diagnostics.Tools.dll",
  5824. "ref/netcore50/System.Diagnostics.Tools.xml",
  5825. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5826. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5827. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5828. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5829. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5830. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5831. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5832. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5833. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5834. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5835. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5836. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5837. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5838. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5839. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5840. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5841. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5842. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5843. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5844. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5845. "ref/portable-net45+win8+wp8+wpa81/_._",
  5846. "ref/win8/_._",
  5847. "ref/wp80/_._",
  5848. "ref/wpa81/_._",
  5849. "ref/xamarinios10/_._",
  5850. "ref/xamarinmac20/_._",
  5851. "ref/xamarintvos10/_._",
  5852. "ref/xamarinwatchos10/_._",
  5853. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5854. "system.diagnostics.tools.nuspec"
  5855. ]
  5856. },
  5857. "System.Diagnostics.TraceSource/4.3.0": {
  5858. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  5859. "type": "package",
  5860. "path": "system.diagnostics.tracesource/4.3.0",
  5861. "files": [
  5862. ".nupkg.metadata",
  5863. ".signature.p7s",
  5864. "ThirdPartyNotices.txt",
  5865. "dotnet_library_license.txt",
  5866. "lib/MonoAndroid10/_._",
  5867. "lib/MonoTouch10/_._",
  5868. "lib/net46/System.Diagnostics.TraceSource.dll",
  5869. "lib/xamarinios10/_._",
  5870. "lib/xamarinmac20/_._",
  5871. "lib/xamarintvos10/_._",
  5872. "lib/xamarinwatchos10/_._",
  5873. "ref/MonoAndroid10/_._",
  5874. "ref/MonoTouch10/_._",
  5875. "ref/net46/System.Diagnostics.TraceSource.dll",
  5876. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5877. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5878. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5879. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5880. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5881. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5882. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5883. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5884. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5885. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5886. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5887. "ref/xamarinios10/_._",
  5888. "ref/xamarinmac20/_._",
  5889. "ref/xamarintvos10/_._",
  5890. "ref/xamarinwatchos10/_._",
  5891. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5892. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5893. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5894. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  5895. "system.diagnostics.tracesource.nuspec"
  5896. ]
  5897. },
  5898. "System.Diagnostics.Tracing/4.3.0": {
  5899. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5900. "type": "package",
  5901. "path": "system.diagnostics.tracing/4.3.0",
  5902. "files": [
  5903. ".nupkg.metadata",
  5904. ".signature.p7s",
  5905. "ThirdPartyNotices.txt",
  5906. "dotnet_library_license.txt",
  5907. "lib/MonoAndroid10/_._",
  5908. "lib/MonoTouch10/_._",
  5909. "lib/net45/_._",
  5910. "lib/net462/System.Diagnostics.Tracing.dll",
  5911. "lib/portable-net45+win8+wpa81/_._",
  5912. "lib/win8/_._",
  5913. "lib/wpa81/_._",
  5914. "lib/xamarinios10/_._",
  5915. "lib/xamarinmac20/_._",
  5916. "lib/xamarintvos10/_._",
  5917. "lib/xamarinwatchos10/_._",
  5918. "ref/MonoAndroid10/_._",
  5919. "ref/MonoTouch10/_._",
  5920. "ref/net45/_._",
  5921. "ref/net462/System.Diagnostics.Tracing.dll",
  5922. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5923. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5924. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5925. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5926. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5927. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5928. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5929. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5930. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5931. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5932. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5933. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5934. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5935. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5936. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5937. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5938. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5939. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5940. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5941. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5942. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5943. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5944. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5945. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5946. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5947. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5948. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5949. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5950. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5951. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5952. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5953. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5954. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5955. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5956. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5957. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5958. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5959. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5960. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5961. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5962. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5963. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5964. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5965. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5966. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5967. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5968. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5969. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5970. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5971. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5972. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5973. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5974. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5975. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5976. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5977. "ref/portable-net45+win8+wpa81/_._",
  5978. "ref/win8/_._",
  5979. "ref/wpa81/_._",
  5980. "ref/xamarinios10/_._",
  5981. "ref/xamarinmac20/_._",
  5982. "ref/xamarintvos10/_._",
  5983. "ref/xamarinwatchos10/_._",
  5984. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5985. "system.diagnostics.tracing.nuspec"
  5986. ]
  5987. },
  5988. "System.Drawing.Common/4.7.0": {
  5989. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  5990. "type": "package",
  5991. "path": "system.drawing.common/4.7.0",
  5992. "files": [
  5993. ".nupkg.metadata",
  5994. ".signature.p7s",
  5995. "LICENSE.TXT",
  5996. "THIRD-PARTY-NOTICES.TXT",
  5997. "lib/MonoAndroid10/_._",
  5998. "lib/MonoTouch10/_._",
  5999. "lib/net461/System.Drawing.Common.dll",
  6000. "lib/netstandard2.0/System.Drawing.Common.dll",
  6001. "lib/xamarinios10/_._",
  6002. "lib/xamarinmac20/_._",
  6003. "lib/xamarintvos10/_._",
  6004. "lib/xamarinwatchos10/_._",
  6005. "ref/MonoAndroid10/_._",
  6006. "ref/MonoTouch10/_._",
  6007. "ref/net461/System.Drawing.Common.dll",
  6008. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6009. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6010. "ref/netstandard2.0/System.Drawing.Common.dll",
  6011. "ref/xamarinios10/_._",
  6012. "ref/xamarinmac20/_._",
  6013. "ref/xamarintvos10/_._",
  6014. "ref/xamarinwatchos10/_._",
  6015. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6016. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6017. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6018. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6019. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6020. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6021. "system.drawing.common.4.7.0.nupkg.sha512",
  6022. "system.drawing.common.nuspec",
  6023. "useSharedDesignerContext.txt",
  6024. "version.txt"
  6025. ]
  6026. },
  6027. "System.Dynamic.Runtime/4.3.0": {
  6028. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6029. "type": "package",
  6030. "path": "system.dynamic.runtime/4.3.0",
  6031. "files": [
  6032. ".nupkg.metadata",
  6033. ".signature.p7s",
  6034. "ThirdPartyNotices.txt",
  6035. "dotnet_library_license.txt",
  6036. "lib/MonoAndroid10/_._",
  6037. "lib/MonoTouch10/_._",
  6038. "lib/net45/_._",
  6039. "lib/netcore50/System.Dynamic.Runtime.dll",
  6040. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6041. "lib/portable-net45+win8+wp8+wpa81/_._",
  6042. "lib/win8/_._",
  6043. "lib/wp80/_._",
  6044. "lib/wpa81/_._",
  6045. "lib/xamarinios10/_._",
  6046. "lib/xamarinmac20/_._",
  6047. "lib/xamarintvos10/_._",
  6048. "lib/xamarinwatchos10/_._",
  6049. "ref/MonoAndroid10/_._",
  6050. "ref/MonoTouch10/_._",
  6051. "ref/net45/_._",
  6052. "ref/netcore50/System.Dynamic.Runtime.dll",
  6053. "ref/netcore50/System.Dynamic.Runtime.xml",
  6054. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6055. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6056. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6057. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6058. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6059. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6060. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6061. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6062. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6063. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6064. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6065. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6066. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6067. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6068. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6069. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6070. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6071. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6072. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6073. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6074. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6075. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6076. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6077. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6078. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6079. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6080. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6081. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6082. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6083. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6084. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6085. "ref/portable-net45+win8+wp8+wpa81/_._",
  6086. "ref/win8/_._",
  6087. "ref/wp80/_._",
  6088. "ref/wpa81/_._",
  6089. "ref/xamarinios10/_._",
  6090. "ref/xamarinmac20/_._",
  6091. "ref/xamarintvos10/_._",
  6092. "ref/xamarinwatchos10/_._",
  6093. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6094. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6095. "system.dynamic.runtime.nuspec"
  6096. ]
  6097. },
  6098. "System.Globalization/4.3.0": {
  6099. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6100. "type": "package",
  6101. "path": "system.globalization/4.3.0",
  6102. "files": [
  6103. ".nupkg.metadata",
  6104. ".signature.p7s",
  6105. "ThirdPartyNotices.txt",
  6106. "dotnet_library_license.txt",
  6107. "lib/MonoAndroid10/_._",
  6108. "lib/MonoTouch10/_._",
  6109. "lib/net45/_._",
  6110. "lib/portable-net45+win8+wp8+wpa81/_._",
  6111. "lib/win8/_._",
  6112. "lib/wp80/_._",
  6113. "lib/wpa81/_._",
  6114. "lib/xamarinios10/_._",
  6115. "lib/xamarinmac20/_._",
  6116. "lib/xamarintvos10/_._",
  6117. "lib/xamarinwatchos10/_._",
  6118. "ref/MonoAndroid10/_._",
  6119. "ref/MonoTouch10/_._",
  6120. "ref/net45/_._",
  6121. "ref/netcore50/System.Globalization.dll",
  6122. "ref/netcore50/System.Globalization.xml",
  6123. "ref/netcore50/de/System.Globalization.xml",
  6124. "ref/netcore50/es/System.Globalization.xml",
  6125. "ref/netcore50/fr/System.Globalization.xml",
  6126. "ref/netcore50/it/System.Globalization.xml",
  6127. "ref/netcore50/ja/System.Globalization.xml",
  6128. "ref/netcore50/ko/System.Globalization.xml",
  6129. "ref/netcore50/ru/System.Globalization.xml",
  6130. "ref/netcore50/zh-hans/System.Globalization.xml",
  6131. "ref/netcore50/zh-hant/System.Globalization.xml",
  6132. "ref/netstandard1.0/System.Globalization.dll",
  6133. "ref/netstandard1.0/System.Globalization.xml",
  6134. "ref/netstandard1.0/de/System.Globalization.xml",
  6135. "ref/netstandard1.0/es/System.Globalization.xml",
  6136. "ref/netstandard1.0/fr/System.Globalization.xml",
  6137. "ref/netstandard1.0/it/System.Globalization.xml",
  6138. "ref/netstandard1.0/ja/System.Globalization.xml",
  6139. "ref/netstandard1.0/ko/System.Globalization.xml",
  6140. "ref/netstandard1.0/ru/System.Globalization.xml",
  6141. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6142. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6143. "ref/netstandard1.3/System.Globalization.dll",
  6144. "ref/netstandard1.3/System.Globalization.xml",
  6145. "ref/netstandard1.3/de/System.Globalization.xml",
  6146. "ref/netstandard1.3/es/System.Globalization.xml",
  6147. "ref/netstandard1.3/fr/System.Globalization.xml",
  6148. "ref/netstandard1.3/it/System.Globalization.xml",
  6149. "ref/netstandard1.3/ja/System.Globalization.xml",
  6150. "ref/netstandard1.3/ko/System.Globalization.xml",
  6151. "ref/netstandard1.3/ru/System.Globalization.xml",
  6152. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6153. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6154. "ref/portable-net45+win8+wp8+wpa81/_._",
  6155. "ref/win8/_._",
  6156. "ref/wp80/_._",
  6157. "ref/wpa81/_._",
  6158. "ref/xamarinios10/_._",
  6159. "ref/xamarinmac20/_._",
  6160. "ref/xamarintvos10/_._",
  6161. "ref/xamarinwatchos10/_._",
  6162. "system.globalization.4.3.0.nupkg.sha512",
  6163. "system.globalization.nuspec"
  6164. ]
  6165. },
  6166. "System.Globalization.Calendars/4.3.0": {
  6167. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6168. "type": "package",
  6169. "path": "system.globalization.calendars/4.3.0",
  6170. "files": [
  6171. ".nupkg.metadata",
  6172. ".signature.p7s",
  6173. "ThirdPartyNotices.txt",
  6174. "dotnet_library_license.txt",
  6175. "lib/MonoAndroid10/_._",
  6176. "lib/MonoTouch10/_._",
  6177. "lib/net46/System.Globalization.Calendars.dll",
  6178. "lib/xamarinios10/_._",
  6179. "lib/xamarinmac20/_._",
  6180. "lib/xamarintvos10/_._",
  6181. "lib/xamarinwatchos10/_._",
  6182. "ref/MonoAndroid10/_._",
  6183. "ref/MonoTouch10/_._",
  6184. "ref/net46/System.Globalization.Calendars.dll",
  6185. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6186. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6187. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6188. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6189. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6190. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6191. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6192. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6193. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6194. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6195. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6196. "ref/xamarinios10/_._",
  6197. "ref/xamarinmac20/_._",
  6198. "ref/xamarintvos10/_._",
  6199. "ref/xamarinwatchos10/_._",
  6200. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6201. "system.globalization.calendars.nuspec"
  6202. ]
  6203. },
  6204. "System.Globalization.Extensions/4.3.0": {
  6205. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6206. "type": "package",
  6207. "path": "system.globalization.extensions/4.3.0",
  6208. "files": [
  6209. ".nupkg.metadata",
  6210. ".signature.p7s",
  6211. "ThirdPartyNotices.txt",
  6212. "dotnet_library_license.txt",
  6213. "lib/MonoAndroid10/_._",
  6214. "lib/MonoTouch10/_._",
  6215. "lib/net46/System.Globalization.Extensions.dll",
  6216. "lib/xamarinios10/_._",
  6217. "lib/xamarinmac20/_._",
  6218. "lib/xamarintvos10/_._",
  6219. "lib/xamarinwatchos10/_._",
  6220. "ref/MonoAndroid10/_._",
  6221. "ref/MonoTouch10/_._",
  6222. "ref/net46/System.Globalization.Extensions.dll",
  6223. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6224. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6225. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6226. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6227. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6228. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6229. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6230. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6231. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6232. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6233. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6234. "ref/xamarinios10/_._",
  6235. "ref/xamarinmac20/_._",
  6236. "ref/xamarintvos10/_._",
  6237. "ref/xamarinwatchos10/_._",
  6238. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6239. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6240. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6241. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6242. "system.globalization.extensions.nuspec"
  6243. ]
  6244. },
  6245. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  6246. "sha512": "KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  6247. "type": "package",
  6248. "path": "system.identitymodel.tokens.jwt/5.6.0",
  6249. "files": [
  6250. ".nupkg.metadata",
  6251. ".signature.p7s",
  6252. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  6253. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  6254. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  6255. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  6256. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  6257. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  6258. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  6259. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  6260. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  6261. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  6262. "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512",
  6263. "system.identitymodel.tokens.jwt.nuspec"
  6264. ]
  6265. },
  6266. "System.IO/4.3.0": {
  6267. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6268. "type": "package",
  6269. "path": "system.io/4.3.0",
  6270. "files": [
  6271. ".nupkg.metadata",
  6272. ".signature.p7s",
  6273. "ThirdPartyNotices.txt",
  6274. "dotnet_library_license.txt",
  6275. "lib/MonoAndroid10/_._",
  6276. "lib/MonoTouch10/_._",
  6277. "lib/net45/_._",
  6278. "lib/net462/System.IO.dll",
  6279. "lib/portable-net45+win8+wp8+wpa81/_._",
  6280. "lib/win8/_._",
  6281. "lib/wp80/_._",
  6282. "lib/wpa81/_._",
  6283. "lib/xamarinios10/_._",
  6284. "lib/xamarinmac20/_._",
  6285. "lib/xamarintvos10/_._",
  6286. "lib/xamarinwatchos10/_._",
  6287. "ref/MonoAndroid10/_._",
  6288. "ref/MonoTouch10/_._",
  6289. "ref/net45/_._",
  6290. "ref/net462/System.IO.dll",
  6291. "ref/netcore50/System.IO.dll",
  6292. "ref/netcore50/System.IO.xml",
  6293. "ref/netcore50/de/System.IO.xml",
  6294. "ref/netcore50/es/System.IO.xml",
  6295. "ref/netcore50/fr/System.IO.xml",
  6296. "ref/netcore50/it/System.IO.xml",
  6297. "ref/netcore50/ja/System.IO.xml",
  6298. "ref/netcore50/ko/System.IO.xml",
  6299. "ref/netcore50/ru/System.IO.xml",
  6300. "ref/netcore50/zh-hans/System.IO.xml",
  6301. "ref/netcore50/zh-hant/System.IO.xml",
  6302. "ref/netstandard1.0/System.IO.dll",
  6303. "ref/netstandard1.0/System.IO.xml",
  6304. "ref/netstandard1.0/de/System.IO.xml",
  6305. "ref/netstandard1.0/es/System.IO.xml",
  6306. "ref/netstandard1.0/fr/System.IO.xml",
  6307. "ref/netstandard1.0/it/System.IO.xml",
  6308. "ref/netstandard1.0/ja/System.IO.xml",
  6309. "ref/netstandard1.0/ko/System.IO.xml",
  6310. "ref/netstandard1.0/ru/System.IO.xml",
  6311. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6312. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6313. "ref/netstandard1.3/System.IO.dll",
  6314. "ref/netstandard1.3/System.IO.xml",
  6315. "ref/netstandard1.3/de/System.IO.xml",
  6316. "ref/netstandard1.3/es/System.IO.xml",
  6317. "ref/netstandard1.3/fr/System.IO.xml",
  6318. "ref/netstandard1.3/it/System.IO.xml",
  6319. "ref/netstandard1.3/ja/System.IO.xml",
  6320. "ref/netstandard1.3/ko/System.IO.xml",
  6321. "ref/netstandard1.3/ru/System.IO.xml",
  6322. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6323. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6324. "ref/netstandard1.5/System.IO.dll",
  6325. "ref/netstandard1.5/System.IO.xml",
  6326. "ref/netstandard1.5/de/System.IO.xml",
  6327. "ref/netstandard1.5/es/System.IO.xml",
  6328. "ref/netstandard1.5/fr/System.IO.xml",
  6329. "ref/netstandard1.5/it/System.IO.xml",
  6330. "ref/netstandard1.5/ja/System.IO.xml",
  6331. "ref/netstandard1.5/ko/System.IO.xml",
  6332. "ref/netstandard1.5/ru/System.IO.xml",
  6333. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6334. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6335. "ref/portable-net45+win8+wp8+wpa81/_._",
  6336. "ref/win8/_._",
  6337. "ref/wp80/_._",
  6338. "ref/wpa81/_._",
  6339. "ref/xamarinios10/_._",
  6340. "ref/xamarinmac20/_._",
  6341. "ref/xamarintvos10/_._",
  6342. "ref/xamarinwatchos10/_._",
  6343. "system.io.4.3.0.nupkg.sha512",
  6344. "system.io.nuspec"
  6345. ]
  6346. },
  6347. "System.IO.Compression/4.3.0": {
  6348. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6349. "type": "package",
  6350. "path": "system.io.compression/4.3.0",
  6351. "files": [
  6352. ".nupkg.metadata",
  6353. ".signature.p7s",
  6354. "ThirdPartyNotices.txt",
  6355. "dotnet_library_license.txt",
  6356. "lib/MonoAndroid10/_._",
  6357. "lib/MonoTouch10/_._",
  6358. "lib/net45/_._",
  6359. "lib/net46/System.IO.Compression.dll",
  6360. "lib/portable-net45+win8+wpa81/_._",
  6361. "lib/win8/_._",
  6362. "lib/wpa81/_._",
  6363. "lib/xamarinios10/_._",
  6364. "lib/xamarinmac20/_._",
  6365. "lib/xamarintvos10/_._",
  6366. "lib/xamarinwatchos10/_._",
  6367. "ref/MonoAndroid10/_._",
  6368. "ref/MonoTouch10/_._",
  6369. "ref/net45/_._",
  6370. "ref/net46/System.IO.Compression.dll",
  6371. "ref/netcore50/System.IO.Compression.dll",
  6372. "ref/netcore50/System.IO.Compression.xml",
  6373. "ref/netcore50/de/System.IO.Compression.xml",
  6374. "ref/netcore50/es/System.IO.Compression.xml",
  6375. "ref/netcore50/fr/System.IO.Compression.xml",
  6376. "ref/netcore50/it/System.IO.Compression.xml",
  6377. "ref/netcore50/ja/System.IO.Compression.xml",
  6378. "ref/netcore50/ko/System.IO.Compression.xml",
  6379. "ref/netcore50/ru/System.IO.Compression.xml",
  6380. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6381. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6382. "ref/netstandard1.1/System.IO.Compression.dll",
  6383. "ref/netstandard1.1/System.IO.Compression.xml",
  6384. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6385. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6386. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6387. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6388. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6389. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6390. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6391. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6392. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6393. "ref/netstandard1.3/System.IO.Compression.dll",
  6394. "ref/netstandard1.3/System.IO.Compression.xml",
  6395. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6396. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6397. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6398. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6399. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6400. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6401. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6402. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6403. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6404. "ref/portable-net45+win8+wpa81/_._",
  6405. "ref/win8/_._",
  6406. "ref/wpa81/_._",
  6407. "ref/xamarinios10/_._",
  6408. "ref/xamarinmac20/_._",
  6409. "ref/xamarintvos10/_._",
  6410. "ref/xamarinwatchos10/_._",
  6411. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6412. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6413. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6414. "system.io.compression.4.3.0.nupkg.sha512",
  6415. "system.io.compression.nuspec"
  6416. ]
  6417. },
  6418. "System.IO.Compression.ZipFile/4.3.0": {
  6419. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6420. "type": "package",
  6421. "path": "system.io.compression.zipfile/4.3.0",
  6422. "files": [
  6423. ".nupkg.metadata",
  6424. ".signature.p7s",
  6425. "ThirdPartyNotices.txt",
  6426. "dotnet_library_license.txt",
  6427. "lib/MonoAndroid10/_._",
  6428. "lib/MonoTouch10/_._",
  6429. "lib/net46/System.IO.Compression.ZipFile.dll",
  6430. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6431. "lib/xamarinios10/_._",
  6432. "lib/xamarinmac20/_._",
  6433. "lib/xamarintvos10/_._",
  6434. "lib/xamarinwatchos10/_._",
  6435. "ref/MonoAndroid10/_._",
  6436. "ref/MonoTouch10/_._",
  6437. "ref/net46/System.IO.Compression.ZipFile.dll",
  6438. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6439. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6440. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6441. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6442. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6443. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6444. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6445. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6446. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6447. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6448. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6449. "ref/xamarinios10/_._",
  6450. "ref/xamarinmac20/_._",
  6451. "ref/xamarintvos10/_._",
  6452. "ref/xamarinwatchos10/_._",
  6453. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6454. "system.io.compression.zipfile.nuspec"
  6455. ]
  6456. },
  6457. "System.IO.FileSystem/4.3.0": {
  6458. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6459. "type": "package",
  6460. "path": "system.io.filesystem/4.3.0",
  6461. "files": [
  6462. ".nupkg.metadata",
  6463. ".signature.p7s",
  6464. "ThirdPartyNotices.txt",
  6465. "dotnet_library_license.txt",
  6466. "lib/MonoAndroid10/_._",
  6467. "lib/MonoTouch10/_._",
  6468. "lib/net46/System.IO.FileSystem.dll",
  6469. "lib/xamarinios10/_._",
  6470. "lib/xamarinmac20/_._",
  6471. "lib/xamarintvos10/_._",
  6472. "lib/xamarinwatchos10/_._",
  6473. "ref/MonoAndroid10/_._",
  6474. "ref/MonoTouch10/_._",
  6475. "ref/net46/System.IO.FileSystem.dll",
  6476. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6477. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6478. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6479. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6480. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6481. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6482. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6483. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6484. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6485. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6486. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6487. "ref/xamarinios10/_._",
  6488. "ref/xamarinmac20/_._",
  6489. "ref/xamarintvos10/_._",
  6490. "ref/xamarinwatchos10/_._",
  6491. "system.io.filesystem.4.3.0.nupkg.sha512",
  6492. "system.io.filesystem.nuspec"
  6493. ]
  6494. },
  6495. "System.IO.FileSystem.Primitives/4.3.0": {
  6496. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6497. "type": "package",
  6498. "path": "system.io.filesystem.primitives/4.3.0",
  6499. "files": [
  6500. ".nupkg.metadata",
  6501. ".signature.p7s",
  6502. "ThirdPartyNotices.txt",
  6503. "dotnet_library_license.txt",
  6504. "lib/MonoAndroid10/_._",
  6505. "lib/MonoTouch10/_._",
  6506. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6507. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6508. "lib/xamarinios10/_._",
  6509. "lib/xamarinmac20/_._",
  6510. "lib/xamarintvos10/_._",
  6511. "lib/xamarinwatchos10/_._",
  6512. "ref/MonoAndroid10/_._",
  6513. "ref/MonoTouch10/_._",
  6514. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6515. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6516. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6517. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6518. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6519. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6520. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6521. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6522. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6523. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6524. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6525. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6526. "ref/xamarinios10/_._",
  6527. "ref/xamarinmac20/_._",
  6528. "ref/xamarintvos10/_._",
  6529. "ref/xamarinwatchos10/_._",
  6530. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6531. "system.io.filesystem.primitives.nuspec"
  6532. ]
  6533. },
  6534. "System.Linq/4.3.0": {
  6535. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6536. "type": "package",
  6537. "path": "system.linq/4.3.0",
  6538. "files": [
  6539. ".nupkg.metadata",
  6540. ".signature.p7s",
  6541. "ThirdPartyNotices.txt",
  6542. "dotnet_library_license.txt",
  6543. "lib/MonoAndroid10/_._",
  6544. "lib/MonoTouch10/_._",
  6545. "lib/net45/_._",
  6546. "lib/net463/System.Linq.dll",
  6547. "lib/netcore50/System.Linq.dll",
  6548. "lib/netstandard1.6/System.Linq.dll",
  6549. "lib/portable-net45+win8+wp8+wpa81/_._",
  6550. "lib/win8/_._",
  6551. "lib/wp80/_._",
  6552. "lib/wpa81/_._",
  6553. "lib/xamarinios10/_._",
  6554. "lib/xamarinmac20/_._",
  6555. "lib/xamarintvos10/_._",
  6556. "lib/xamarinwatchos10/_._",
  6557. "ref/MonoAndroid10/_._",
  6558. "ref/MonoTouch10/_._",
  6559. "ref/net45/_._",
  6560. "ref/net463/System.Linq.dll",
  6561. "ref/netcore50/System.Linq.dll",
  6562. "ref/netcore50/System.Linq.xml",
  6563. "ref/netcore50/de/System.Linq.xml",
  6564. "ref/netcore50/es/System.Linq.xml",
  6565. "ref/netcore50/fr/System.Linq.xml",
  6566. "ref/netcore50/it/System.Linq.xml",
  6567. "ref/netcore50/ja/System.Linq.xml",
  6568. "ref/netcore50/ko/System.Linq.xml",
  6569. "ref/netcore50/ru/System.Linq.xml",
  6570. "ref/netcore50/zh-hans/System.Linq.xml",
  6571. "ref/netcore50/zh-hant/System.Linq.xml",
  6572. "ref/netstandard1.0/System.Linq.dll",
  6573. "ref/netstandard1.0/System.Linq.xml",
  6574. "ref/netstandard1.0/de/System.Linq.xml",
  6575. "ref/netstandard1.0/es/System.Linq.xml",
  6576. "ref/netstandard1.0/fr/System.Linq.xml",
  6577. "ref/netstandard1.0/it/System.Linq.xml",
  6578. "ref/netstandard1.0/ja/System.Linq.xml",
  6579. "ref/netstandard1.0/ko/System.Linq.xml",
  6580. "ref/netstandard1.0/ru/System.Linq.xml",
  6581. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6582. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6583. "ref/netstandard1.6/System.Linq.dll",
  6584. "ref/netstandard1.6/System.Linq.xml",
  6585. "ref/netstandard1.6/de/System.Linq.xml",
  6586. "ref/netstandard1.6/es/System.Linq.xml",
  6587. "ref/netstandard1.6/fr/System.Linq.xml",
  6588. "ref/netstandard1.6/it/System.Linq.xml",
  6589. "ref/netstandard1.6/ja/System.Linq.xml",
  6590. "ref/netstandard1.6/ko/System.Linq.xml",
  6591. "ref/netstandard1.6/ru/System.Linq.xml",
  6592. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6593. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6594. "ref/portable-net45+win8+wp8+wpa81/_._",
  6595. "ref/win8/_._",
  6596. "ref/wp80/_._",
  6597. "ref/wpa81/_._",
  6598. "ref/xamarinios10/_._",
  6599. "ref/xamarinmac20/_._",
  6600. "ref/xamarintvos10/_._",
  6601. "ref/xamarinwatchos10/_._",
  6602. "system.linq.4.3.0.nupkg.sha512",
  6603. "system.linq.nuspec"
  6604. ]
  6605. },
  6606. "System.Linq.Expressions/4.3.0": {
  6607. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6608. "type": "package",
  6609. "path": "system.linq.expressions/4.3.0",
  6610. "files": [
  6611. ".nupkg.metadata",
  6612. ".signature.p7s",
  6613. "ThirdPartyNotices.txt",
  6614. "dotnet_library_license.txt",
  6615. "lib/MonoAndroid10/_._",
  6616. "lib/MonoTouch10/_._",
  6617. "lib/net45/_._",
  6618. "lib/net463/System.Linq.Expressions.dll",
  6619. "lib/netcore50/System.Linq.Expressions.dll",
  6620. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6621. "lib/portable-net45+win8+wp8+wpa81/_._",
  6622. "lib/win8/_._",
  6623. "lib/wp80/_._",
  6624. "lib/wpa81/_._",
  6625. "lib/xamarinios10/_._",
  6626. "lib/xamarinmac20/_._",
  6627. "lib/xamarintvos10/_._",
  6628. "lib/xamarinwatchos10/_._",
  6629. "ref/MonoAndroid10/_._",
  6630. "ref/MonoTouch10/_._",
  6631. "ref/net45/_._",
  6632. "ref/net463/System.Linq.Expressions.dll",
  6633. "ref/netcore50/System.Linq.Expressions.dll",
  6634. "ref/netcore50/System.Linq.Expressions.xml",
  6635. "ref/netcore50/de/System.Linq.Expressions.xml",
  6636. "ref/netcore50/es/System.Linq.Expressions.xml",
  6637. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6638. "ref/netcore50/it/System.Linq.Expressions.xml",
  6639. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6640. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6641. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6642. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6643. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6644. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6645. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6646. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6647. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6648. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6649. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6650. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6651. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6652. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6653. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6654. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6655. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6656. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6657. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6658. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6659. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6660. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6661. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6662. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6663. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6664. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6665. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6666. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6667. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6668. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6669. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6670. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6671. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6672. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6673. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6674. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6675. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6676. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6677. "ref/portable-net45+win8+wp8+wpa81/_._",
  6678. "ref/win8/_._",
  6679. "ref/wp80/_._",
  6680. "ref/wpa81/_._",
  6681. "ref/xamarinios10/_._",
  6682. "ref/xamarinmac20/_._",
  6683. "ref/xamarintvos10/_._",
  6684. "ref/xamarinwatchos10/_._",
  6685. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6686. "system.linq.expressions.4.3.0.nupkg.sha512",
  6687. "system.linq.expressions.nuspec"
  6688. ]
  6689. },
  6690. "System.Net.Http/4.3.0": {
  6691. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6692. "type": "package",
  6693. "path": "system.net.http/4.3.0",
  6694. "files": [
  6695. ".nupkg.metadata",
  6696. ".signature.p7s",
  6697. "ThirdPartyNotices.txt",
  6698. "dotnet_library_license.txt",
  6699. "lib/Xamarinmac20/_._",
  6700. "lib/monoandroid10/_._",
  6701. "lib/monotouch10/_._",
  6702. "lib/net45/_._",
  6703. "lib/net46/System.Net.Http.dll",
  6704. "lib/portable-net45+win8+wpa81/_._",
  6705. "lib/win8/_._",
  6706. "lib/wpa81/_._",
  6707. "lib/xamarinios10/_._",
  6708. "lib/xamarintvos10/_._",
  6709. "lib/xamarinwatchos10/_._",
  6710. "ref/Xamarinmac20/_._",
  6711. "ref/monoandroid10/_._",
  6712. "ref/monotouch10/_._",
  6713. "ref/net45/_._",
  6714. "ref/net46/System.Net.Http.dll",
  6715. "ref/net46/System.Net.Http.xml",
  6716. "ref/net46/de/System.Net.Http.xml",
  6717. "ref/net46/es/System.Net.Http.xml",
  6718. "ref/net46/fr/System.Net.Http.xml",
  6719. "ref/net46/it/System.Net.Http.xml",
  6720. "ref/net46/ja/System.Net.Http.xml",
  6721. "ref/net46/ko/System.Net.Http.xml",
  6722. "ref/net46/ru/System.Net.Http.xml",
  6723. "ref/net46/zh-hans/System.Net.Http.xml",
  6724. "ref/net46/zh-hant/System.Net.Http.xml",
  6725. "ref/netcore50/System.Net.Http.dll",
  6726. "ref/netcore50/System.Net.Http.xml",
  6727. "ref/netcore50/de/System.Net.Http.xml",
  6728. "ref/netcore50/es/System.Net.Http.xml",
  6729. "ref/netcore50/fr/System.Net.Http.xml",
  6730. "ref/netcore50/it/System.Net.Http.xml",
  6731. "ref/netcore50/ja/System.Net.Http.xml",
  6732. "ref/netcore50/ko/System.Net.Http.xml",
  6733. "ref/netcore50/ru/System.Net.Http.xml",
  6734. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6735. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6736. "ref/netstandard1.1/System.Net.Http.dll",
  6737. "ref/netstandard1.1/System.Net.Http.xml",
  6738. "ref/netstandard1.1/de/System.Net.Http.xml",
  6739. "ref/netstandard1.1/es/System.Net.Http.xml",
  6740. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6741. "ref/netstandard1.1/it/System.Net.Http.xml",
  6742. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6743. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6744. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6745. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6746. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6747. "ref/netstandard1.3/System.Net.Http.dll",
  6748. "ref/netstandard1.3/System.Net.Http.xml",
  6749. "ref/netstandard1.3/de/System.Net.Http.xml",
  6750. "ref/netstandard1.3/es/System.Net.Http.xml",
  6751. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6752. "ref/netstandard1.3/it/System.Net.Http.xml",
  6753. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6754. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6755. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6756. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6757. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6758. "ref/portable-net45+win8+wpa81/_._",
  6759. "ref/win8/_._",
  6760. "ref/wpa81/_._",
  6761. "ref/xamarinios10/_._",
  6762. "ref/xamarintvos10/_._",
  6763. "ref/xamarinwatchos10/_._",
  6764. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6765. "runtimes/win/lib/net46/System.Net.Http.dll",
  6766. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6767. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6768. "system.net.http.4.3.0.nupkg.sha512",
  6769. "system.net.http.nuspec"
  6770. ]
  6771. },
  6772. "System.Net.Http.WinHttpHandler/4.4.0": {
  6773. "sha512": "ZmsFZIZ4PL2UfUlfj4KCzzAGGE2SF39ENIqtvfgu0bwMEAe3J3CqZr765E2W6eQQtNK08/8DpHcsA0sAKZdEtA==",
  6774. "type": "package",
  6775. "path": "system.net.http.winhttphandler/4.4.0",
  6776. "files": [
  6777. ".nupkg.metadata",
  6778. ".signature.p7s",
  6779. "LICENSE.TXT",
  6780. "THIRD-PARTY-NOTICES.TXT",
  6781. "lib/net46/System.Net.Http.WinHttpHandler.dll",
  6782. "lib/net461/System.Net.Http.WinHttpHandler.dll",
  6783. "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6784. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6785. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6786. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.xml",
  6787. "ref/netstandard1.3/de/System.Net.Http.WinHttpHandler.xml",
  6788. "ref/netstandard1.3/es/System.Net.Http.WinHttpHandler.xml",
  6789. "ref/netstandard1.3/fr/System.Net.Http.WinHttpHandler.xml",
  6790. "ref/netstandard1.3/it/System.Net.Http.WinHttpHandler.xml",
  6791. "ref/netstandard1.3/ja/System.Net.Http.WinHttpHandler.xml",
  6792. "ref/netstandard1.3/ko/System.Net.Http.WinHttpHandler.xml",
  6793. "ref/netstandard1.3/ru/System.Net.Http.WinHttpHandler.xml",
  6794. "ref/netstandard1.3/zh-hans/System.Net.Http.WinHttpHandler.xml",
  6795. "ref/netstandard1.3/zh-hant/System.Net.Http.WinHttpHandler.xml",
  6796. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6797. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.xml",
  6798. "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll",
  6799. "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll",
  6800. "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6801. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6802. "system.net.http.winhttphandler.4.4.0.nupkg.sha512",
  6803. "system.net.http.winhttphandler.nuspec",
  6804. "useSharedDesignerContext.txt",
  6805. "version.txt"
  6806. ]
  6807. },
  6808. "System.Net.Primitives/4.3.0": {
  6809. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6810. "type": "package",
  6811. "path": "system.net.primitives/4.3.0",
  6812. "files": [
  6813. ".nupkg.metadata",
  6814. ".signature.p7s",
  6815. "ThirdPartyNotices.txt",
  6816. "dotnet_library_license.txt",
  6817. "lib/MonoAndroid10/_._",
  6818. "lib/MonoTouch10/_._",
  6819. "lib/net45/_._",
  6820. "lib/portable-net45+win8+wp8+wpa81/_._",
  6821. "lib/win8/_._",
  6822. "lib/wp80/_._",
  6823. "lib/wpa81/_._",
  6824. "lib/xamarinios10/_._",
  6825. "lib/xamarinmac20/_._",
  6826. "lib/xamarintvos10/_._",
  6827. "lib/xamarinwatchos10/_._",
  6828. "ref/MonoAndroid10/_._",
  6829. "ref/MonoTouch10/_._",
  6830. "ref/net45/_._",
  6831. "ref/netcore50/System.Net.Primitives.dll",
  6832. "ref/netcore50/System.Net.Primitives.xml",
  6833. "ref/netcore50/de/System.Net.Primitives.xml",
  6834. "ref/netcore50/es/System.Net.Primitives.xml",
  6835. "ref/netcore50/fr/System.Net.Primitives.xml",
  6836. "ref/netcore50/it/System.Net.Primitives.xml",
  6837. "ref/netcore50/ja/System.Net.Primitives.xml",
  6838. "ref/netcore50/ko/System.Net.Primitives.xml",
  6839. "ref/netcore50/ru/System.Net.Primitives.xml",
  6840. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6841. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6842. "ref/netstandard1.0/System.Net.Primitives.dll",
  6843. "ref/netstandard1.0/System.Net.Primitives.xml",
  6844. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6845. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6846. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6847. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6848. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6849. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6850. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6851. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6852. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6853. "ref/netstandard1.1/System.Net.Primitives.dll",
  6854. "ref/netstandard1.1/System.Net.Primitives.xml",
  6855. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6856. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6857. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6858. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6859. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6860. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6861. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6862. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6863. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6864. "ref/netstandard1.3/System.Net.Primitives.dll",
  6865. "ref/netstandard1.3/System.Net.Primitives.xml",
  6866. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6867. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6868. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6869. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6870. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6871. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6872. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6873. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6874. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6875. "ref/portable-net45+win8+wp8+wpa81/_._",
  6876. "ref/win8/_._",
  6877. "ref/wp80/_._",
  6878. "ref/wpa81/_._",
  6879. "ref/xamarinios10/_._",
  6880. "ref/xamarinmac20/_._",
  6881. "ref/xamarintvos10/_._",
  6882. "ref/xamarinwatchos10/_._",
  6883. "system.net.primitives.4.3.0.nupkg.sha512",
  6884. "system.net.primitives.nuspec"
  6885. ]
  6886. },
  6887. "System.Net.Requests/4.3.0": {
  6888. "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
  6889. "type": "package",
  6890. "path": "system.net.requests/4.3.0",
  6891. "files": [
  6892. ".nupkg.metadata",
  6893. ".signature.p7s",
  6894. "ThirdPartyNotices.txt",
  6895. "dotnet_library_license.txt",
  6896. "lib/MonoAndroid10/_._",
  6897. "lib/MonoTouch10/_._",
  6898. "lib/net45/_._",
  6899. "lib/portable-net45+win8+wp8+wpa81/_._",
  6900. "lib/win8/_._",
  6901. "lib/wp80/_._",
  6902. "lib/wpa81/_._",
  6903. "lib/xamarinios10/_._",
  6904. "lib/xamarinmac20/_._",
  6905. "lib/xamarintvos10/_._",
  6906. "lib/xamarinwatchos10/_._",
  6907. "ref/MonoAndroid10/_._",
  6908. "ref/MonoTouch10/_._",
  6909. "ref/net45/_._",
  6910. "ref/net46/_._",
  6911. "ref/netcore50/System.Net.Requests.dll",
  6912. "ref/netcore50/System.Net.Requests.xml",
  6913. "ref/netcore50/de/System.Net.Requests.xml",
  6914. "ref/netcore50/es/System.Net.Requests.xml",
  6915. "ref/netcore50/fr/System.Net.Requests.xml",
  6916. "ref/netcore50/it/System.Net.Requests.xml",
  6917. "ref/netcore50/ja/System.Net.Requests.xml",
  6918. "ref/netcore50/ko/System.Net.Requests.xml",
  6919. "ref/netcore50/ru/System.Net.Requests.xml",
  6920. "ref/netcore50/zh-hans/System.Net.Requests.xml",
  6921. "ref/netcore50/zh-hant/System.Net.Requests.xml",
  6922. "ref/netstandard1.0/System.Net.Requests.dll",
  6923. "ref/netstandard1.0/System.Net.Requests.xml",
  6924. "ref/netstandard1.0/de/System.Net.Requests.xml",
  6925. "ref/netstandard1.0/es/System.Net.Requests.xml",
  6926. "ref/netstandard1.0/fr/System.Net.Requests.xml",
  6927. "ref/netstandard1.0/it/System.Net.Requests.xml",
  6928. "ref/netstandard1.0/ja/System.Net.Requests.xml",
  6929. "ref/netstandard1.0/ko/System.Net.Requests.xml",
  6930. "ref/netstandard1.0/ru/System.Net.Requests.xml",
  6931. "ref/netstandard1.0/zh-hans/System.Net.Requests.xml",
  6932. "ref/netstandard1.0/zh-hant/System.Net.Requests.xml",
  6933. "ref/netstandard1.1/System.Net.Requests.dll",
  6934. "ref/netstandard1.1/System.Net.Requests.xml",
  6935. "ref/netstandard1.1/de/System.Net.Requests.xml",
  6936. "ref/netstandard1.1/es/System.Net.Requests.xml",
  6937. "ref/netstandard1.1/fr/System.Net.Requests.xml",
  6938. "ref/netstandard1.1/it/System.Net.Requests.xml",
  6939. "ref/netstandard1.1/ja/System.Net.Requests.xml",
  6940. "ref/netstandard1.1/ko/System.Net.Requests.xml",
  6941. "ref/netstandard1.1/ru/System.Net.Requests.xml",
  6942. "ref/netstandard1.1/zh-hans/System.Net.Requests.xml",
  6943. "ref/netstandard1.1/zh-hant/System.Net.Requests.xml",
  6944. "ref/netstandard1.3/System.Net.Requests.dll",
  6945. "ref/netstandard1.3/System.Net.Requests.xml",
  6946. "ref/netstandard1.3/de/System.Net.Requests.xml",
  6947. "ref/netstandard1.3/es/System.Net.Requests.xml",
  6948. "ref/netstandard1.3/fr/System.Net.Requests.xml",
  6949. "ref/netstandard1.3/it/System.Net.Requests.xml",
  6950. "ref/netstandard1.3/ja/System.Net.Requests.xml",
  6951. "ref/netstandard1.3/ko/System.Net.Requests.xml",
  6952. "ref/netstandard1.3/ru/System.Net.Requests.xml",
  6953. "ref/netstandard1.3/zh-hans/System.Net.Requests.xml",
  6954. "ref/netstandard1.3/zh-hant/System.Net.Requests.xml",
  6955. "ref/portable-net45+win8+wp8+wpa81/_._",
  6956. "ref/win8/_._",
  6957. "ref/wp80/_._",
  6958. "ref/wpa81/_._",
  6959. "ref/xamarinios10/_._",
  6960. "ref/xamarinmac20/_._",
  6961. "ref/xamarintvos10/_._",
  6962. "ref/xamarinwatchos10/_._",
  6963. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll",
  6964. "runtimes/win/lib/net46/_._",
  6965. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll",
  6966. "system.net.requests.4.3.0.nupkg.sha512",
  6967. "system.net.requests.nuspec"
  6968. ]
  6969. },
  6970. "System.Net.Sockets/4.3.0": {
  6971. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6972. "type": "package",
  6973. "path": "system.net.sockets/4.3.0",
  6974. "files": [
  6975. ".nupkg.metadata",
  6976. ".signature.p7s",
  6977. "ThirdPartyNotices.txt",
  6978. "dotnet_library_license.txt",
  6979. "lib/MonoAndroid10/_._",
  6980. "lib/MonoTouch10/_._",
  6981. "lib/net46/System.Net.Sockets.dll",
  6982. "lib/xamarinios10/_._",
  6983. "lib/xamarinmac20/_._",
  6984. "lib/xamarintvos10/_._",
  6985. "lib/xamarinwatchos10/_._",
  6986. "ref/MonoAndroid10/_._",
  6987. "ref/MonoTouch10/_._",
  6988. "ref/net46/System.Net.Sockets.dll",
  6989. "ref/netstandard1.3/System.Net.Sockets.dll",
  6990. "ref/netstandard1.3/System.Net.Sockets.xml",
  6991. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6992. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6993. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6994. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6995. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6996. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6997. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6998. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6999. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7000. "ref/xamarinios10/_._",
  7001. "ref/xamarinmac20/_._",
  7002. "ref/xamarintvos10/_._",
  7003. "ref/xamarinwatchos10/_._",
  7004. "system.net.sockets.4.3.0.nupkg.sha512",
  7005. "system.net.sockets.nuspec"
  7006. ]
  7007. },
  7008. "System.Net.WebHeaderCollection/4.3.0": {
  7009. "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
  7010. "type": "package",
  7011. "path": "system.net.webheadercollection/4.3.0",
  7012. "files": [
  7013. ".nupkg.metadata",
  7014. ".signature.p7s",
  7015. "ThirdPartyNotices.txt",
  7016. "dotnet_library_license.txt",
  7017. "lib/MonoAndroid10/_._",
  7018. "lib/MonoTouch10/_._",
  7019. "lib/net46/_._",
  7020. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7021. "lib/xamarinios10/_._",
  7022. "lib/xamarinmac20/_._",
  7023. "lib/xamarintvos10/_._",
  7024. "lib/xamarinwatchos10/_._",
  7025. "ref/MonoAndroid10/_._",
  7026. "ref/MonoTouch10/_._",
  7027. "ref/net46/_._",
  7028. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7029. "ref/netstandard1.3/System.Net.WebHeaderCollection.xml",
  7030. "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml",
  7031. "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml",
  7032. "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml",
  7033. "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml",
  7034. "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml",
  7035. "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml",
  7036. "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml",
  7037. "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml",
  7038. "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml",
  7039. "ref/xamarinios10/_._",
  7040. "ref/xamarinmac20/_._",
  7041. "ref/xamarintvos10/_._",
  7042. "ref/xamarinwatchos10/_._",
  7043. "system.net.webheadercollection.4.3.0.nupkg.sha512",
  7044. "system.net.webheadercollection.nuspec"
  7045. ]
  7046. },
  7047. "System.ObjectModel/4.3.0": {
  7048. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7049. "type": "package",
  7050. "path": "system.objectmodel/4.3.0",
  7051. "files": [
  7052. ".nupkg.metadata",
  7053. ".signature.p7s",
  7054. "ThirdPartyNotices.txt",
  7055. "dotnet_library_license.txt",
  7056. "lib/MonoAndroid10/_._",
  7057. "lib/MonoTouch10/_._",
  7058. "lib/net45/_._",
  7059. "lib/netcore50/System.ObjectModel.dll",
  7060. "lib/netstandard1.3/System.ObjectModel.dll",
  7061. "lib/portable-net45+win8+wp8+wpa81/_._",
  7062. "lib/win8/_._",
  7063. "lib/wp80/_._",
  7064. "lib/wpa81/_._",
  7065. "lib/xamarinios10/_._",
  7066. "lib/xamarinmac20/_._",
  7067. "lib/xamarintvos10/_._",
  7068. "lib/xamarinwatchos10/_._",
  7069. "ref/MonoAndroid10/_._",
  7070. "ref/MonoTouch10/_._",
  7071. "ref/net45/_._",
  7072. "ref/netcore50/System.ObjectModel.dll",
  7073. "ref/netcore50/System.ObjectModel.xml",
  7074. "ref/netcore50/de/System.ObjectModel.xml",
  7075. "ref/netcore50/es/System.ObjectModel.xml",
  7076. "ref/netcore50/fr/System.ObjectModel.xml",
  7077. "ref/netcore50/it/System.ObjectModel.xml",
  7078. "ref/netcore50/ja/System.ObjectModel.xml",
  7079. "ref/netcore50/ko/System.ObjectModel.xml",
  7080. "ref/netcore50/ru/System.ObjectModel.xml",
  7081. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7082. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7083. "ref/netstandard1.0/System.ObjectModel.dll",
  7084. "ref/netstandard1.0/System.ObjectModel.xml",
  7085. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7086. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7087. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7088. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7089. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7090. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7091. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7092. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7093. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7094. "ref/netstandard1.3/System.ObjectModel.dll",
  7095. "ref/netstandard1.3/System.ObjectModel.xml",
  7096. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7097. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7098. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7099. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7100. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7101. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7102. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7103. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7104. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7105. "ref/portable-net45+win8+wp8+wpa81/_._",
  7106. "ref/win8/_._",
  7107. "ref/wp80/_._",
  7108. "ref/wpa81/_._",
  7109. "ref/xamarinios10/_._",
  7110. "ref/xamarinmac20/_._",
  7111. "ref/xamarintvos10/_._",
  7112. "ref/xamarinwatchos10/_._",
  7113. "system.objectmodel.4.3.0.nupkg.sha512",
  7114. "system.objectmodel.nuspec"
  7115. ]
  7116. },
  7117. "System.Private.ServiceModel/4.4.4": {
  7118. "sha512": "tsDkr5hwYwxV2LaB3H5BvCltCX57wv7JzwU5q8IV9vrFdzq/e/nPJAj4U5Ny/FzR4sMTVRprVSwl4mZqfFkt4Q==",
  7119. "type": "package",
  7120. "path": "system.private.servicemodel/4.4.4",
  7121. "files": [
  7122. ".nupkg.metadata",
  7123. ".signature.p7s",
  7124. "LICENSE.TXT",
  7125. "THIRD-PARTY-NOTICES.TXT",
  7126. "ref/netstandard/_._",
  7127. "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll",
  7128. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll",
  7129. "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll",
  7130. "runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll",
  7131. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll",
  7132. "system.private.servicemodel.4.4.4.nupkg.sha512",
  7133. "system.private.servicemodel.nuspec",
  7134. "version.txt"
  7135. ]
  7136. },
  7137. "System.Reflection/4.3.0": {
  7138. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7139. "type": "package",
  7140. "path": "system.reflection/4.3.0",
  7141. "files": [
  7142. ".nupkg.metadata",
  7143. ".signature.p7s",
  7144. "ThirdPartyNotices.txt",
  7145. "dotnet_library_license.txt",
  7146. "lib/MonoAndroid10/_._",
  7147. "lib/MonoTouch10/_._",
  7148. "lib/net45/_._",
  7149. "lib/net462/System.Reflection.dll",
  7150. "lib/portable-net45+win8+wp8+wpa81/_._",
  7151. "lib/win8/_._",
  7152. "lib/wp80/_._",
  7153. "lib/wpa81/_._",
  7154. "lib/xamarinios10/_._",
  7155. "lib/xamarinmac20/_._",
  7156. "lib/xamarintvos10/_._",
  7157. "lib/xamarinwatchos10/_._",
  7158. "ref/MonoAndroid10/_._",
  7159. "ref/MonoTouch10/_._",
  7160. "ref/net45/_._",
  7161. "ref/net462/System.Reflection.dll",
  7162. "ref/netcore50/System.Reflection.dll",
  7163. "ref/netcore50/System.Reflection.xml",
  7164. "ref/netcore50/de/System.Reflection.xml",
  7165. "ref/netcore50/es/System.Reflection.xml",
  7166. "ref/netcore50/fr/System.Reflection.xml",
  7167. "ref/netcore50/it/System.Reflection.xml",
  7168. "ref/netcore50/ja/System.Reflection.xml",
  7169. "ref/netcore50/ko/System.Reflection.xml",
  7170. "ref/netcore50/ru/System.Reflection.xml",
  7171. "ref/netcore50/zh-hans/System.Reflection.xml",
  7172. "ref/netcore50/zh-hant/System.Reflection.xml",
  7173. "ref/netstandard1.0/System.Reflection.dll",
  7174. "ref/netstandard1.0/System.Reflection.xml",
  7175. "ref/netstandard1.0/de/System.Reflection.xml",
  7176. "ref/netstandard1.0/es/System.Reflection.xml",
  7177. "ref/netstandard1.0/fr/System.Reflection.xml",
  7178. "ref/netstandard1.0/it/System.Reflection.xml",
  7179. "ref/netstandard1.0/ja/System.Reflection.xml",
  7180. "ref/netstandard1.0/ko/System.Reflection.xml",
  7181. "ref/netstandard1.0/ru/System.Reflection.xml",
  7182. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7183. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7184. "ref/netstandard1.3/System.Reflection.dll",
  7185. "ref/netstandard1.3/System.Reflection.xml",
  7186. "ref/netstandard1.3/de/System.Reflection.xml",
  7187. "ref/netstandard1.3/es/System.Reflection.xml",
  7188. "ref/netstandard1.3/fr/System.Reflection.xml",
  7189. "ref/netstandard1.3/it/System.Reflection.xml",
  7190. "ref/netstandard1.3/ja/System.Reflection.xml",
  7191. "ref/netstandard1.3/ko/System.Reflection.xml",
  7192. "ref/netstandard1.3/ru/System.Reflection.xml",
  7193. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7194. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7195. "ref/netstandard1.5/System.Reflection.dll",
  7196. "ref/netstandard1.5/System.Reflection.xml",
  7197. "ref/netstandard1.5/de/System.Reflection.xml",
  7198. "ref/netstandard1.5/es/System.Reflection.xml",
  7199. "ref/netstandard1.5/fr/System.Reflection.xml",
  7200. "ref/netstandard1.5/it/System.Reflection.xml",
  7201. "ref/netstandard1.5/ja/System.Reflection.xml",
  7202. "ref/netstandard1.5/ko/System.Reflection.xml",
  7203. "ref/netstandard1.5/ru/System.Reflection.xml",
  7204. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7205. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7206. "ref/portable-net45+win8+wp8+wpa81/_._",
  7207. "ref/win8/_._",
  7208. "ref/wp80/_._",
  7209. "ref/wpa81/_._",
  7210. "ref/xamarinios10/_._",
  7211. "ref/xamarinmac20/_._",
  7212. "ref/xamarintvos10/_._",
  7213. "ref/xamarinwatchos10/_._",
  7214. "system.reflection.4.3.0.nupkg.sha512",
  7215. "system.reflection.nuspec"
  7216. ]
  7217. },
  7218. "System.Reflection.DispatchProxy/4.4.0": {
  7219. "sha512": "xK6JE0mpsBD+T0qu3V6dmVRa06PxAvIIM/zSjouqP7Sk6X+FQj+9XFRz9GmZk9aJGMU1LX6AgTZIlsYZ64QKsw==",
  7220. "type": "package",
  7221. "path": "system.reflection.dispatchproxy/4.4.0",
  7222. "files": [
  7223. ".nupkg.metadata",
  7224. ".signature.p7s",
  7225. "LICENSE.TXT",
  7226. "THIRD-PARTY-NOTICES.TXT",
  7227. "lib/MonoAndroid10/_._",
  7228. "lib/MonoTouch10/_._",
  7229. "lib/net461/System.Reflection.DispatchProxy.dll",
  7230. "lib/netcoreapp2.0/_._",
  7231. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7232. "lib/netstandard2.0/System.Reflection.DispatchProxy.dll",
  7233. "lib/xamarinios10/_._",
  7234. "lib/xamarinmac20/_._",
  7235. "lib/xamarintvos10/_._",
  7236. "lib/xamarinwatchos10/_._",
  7237. "ref/MonoAndroid10/_._",
  7238. "ref/MonoTouch10/_._",
  7239. "ref/netcoreapp2.0/_._",
  7240. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7241. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  7242. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  7243. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  7244. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  7245. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  7246. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  7247. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  7248. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  7249. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  7250. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  7251. "ref/netstandard2.0/System.Reflection.DispatchProxy.dll",
  7252. "ref/netstandard2.0/System.Reflection.DispatchProxy.xml",
  7253. "ref/xamarinios10/_._",
  7254. "ref/xamarinmac20/_._",
  7255. "ref/xamarintvos10/_._",
  7256. "ref/xamarinwatchos10/_._",
  7257. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
  7258. "system.reflection.dispatchproxy.4.4.0.nupkg.sha512",
  7259. "system.reflection.dispatchproxy.nuspec",
  7260. "useSharedDesignerContext.txt",
  7261. "version.txt"
  7262. ]
  7263. },
  7264. "System.Reflection.Emit/4.3.0": {
  7265. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7266. "type": "package",
  7267. "path": "system.reflection.emit/4.3.0",
  7268. "files": [
  7269. ".nupkg.metadata",
  7270. ".signature.p7s",
  7271. "ThirdPartyNotices.txt",
  7272. "dotnet_library_license.txt",
  7273. "lib/MonoAndroid10/_._",
  7274. "lib/monotouch10/_._",
  7275. "lib/net45/_._",
  7276. "lib/netcore50/System.Reflection.Emit.dll",
  7277. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7278. "lib/xamarinios10/_._",
  7279. "lib/xamarinmac20/_._",
  7280. "lib/xamarintvos10/_._",
  7281. "lib/xamarinwatchos10/_._",
  7282. "ref/MonoAndroid10/_._",
  7283. "ref/net45/_._",
  7284. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7285. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7286. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7287. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7288. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7289. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7290. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7291. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7292. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7293. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7294. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7295. "ref/xamarinmac20/_._",
  7296. "system.reflection.emit.4.3.0.nupkg.sha512",
  7297. "system.reflection.emit.nuspec"
  7298. ]
  7299. },
  7300. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7301. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7302. "type": "package",
  7303. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7304. "files": [
  7305. ".nupkg.metadata",
  7306. ".signature.p7s",
  7307. "ThirdPartyNotices.txt",
  7308. "dotnet_library_license.txt",
  7309. "lib/MonoAndroid10/_._",
  7310. "lib/MonoTouch10/_._",
  7311. "lib/net45/_._",
  7312. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7313. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7314. "lib/portable-net45+wp8/_._",
  7315. "lib/wp80/_._",
  7316. "lib/xamarinios10/_._",
  7317. "lib/xamarinmac20/_._",
  7318. "lib/xamarintvos10/_._",
  7319. "lib/xamarinwatchos10/_._",
  7320. "ref/MonoAndroid10/_._",
  7321. "ref/MonoTouch10/_._",
  7322. "ref/net45/_._",
  7323. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7324. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7325. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7326. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7327. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7328. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7329. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7330. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7331. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7332. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7333. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7334. "ref/portable-net45+wp8/_._",
  7335. "ref/wp80/_._",
  7336. "ref/xamarinios10/_._",
  7337. "ref/xamarinmac20/_._",
  7338. "ref/xamarintvos10/_._",
  7339. "ref/xamarinwatchos10/_._",
  7340. "runtimes/aot/lib/netcore50/_._",
  7341. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7342. "system.reflection.emit.ilgeneration.nuspec"
  7343. ]
  7344. },
  7345. "System.Reflection.Emit.Lightweight/4.3.0": {
  7346. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7347. "type": "package",
  7348. "path": "system.reflection.emit.lightweight/4.3.0",
  7349. "files": [
  7350. ".nupkg.metadata",
  7351. ".signature.p7s",
  7352. "ThirdPartyNotices.txt",
  7353. "dotnet_library_license.txt",
  7354. "lib/MonoAndroid10/_._",
  7355. "lib/MonoTouch10/_._",
  7356. "lib/net45/_._",
  7357. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7358. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7359. "lib/portable-net45+wp8/_._",
  7360. "lib/wp80/_._",
  7361. "lib/xamarinios10/_._",
  7362. "lib/xamarinmac20/_._",
  7363. "lib/xamarintvos10/_._",
  7364. "lib/xamarinwatchos10/_._",
  7365. "ref/MonoAndroid10/_._",
  7366. "ref/MonoTouch10/_._",
  7367. "ref/net45/_._",
  7368. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7369. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7370. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7371. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7372. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7373. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7374. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7375. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7376. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7377. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7378. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7379. "ref/portable-net45+wp8/_._",
  7380. "ref/wp80/_._",
  7381. "ref/xamarinios10/_._",
  7382. "ref/xamarinmac20/_._",
  7383. "ref/xamarintvos10/_._",
  7384. "ref/xamarinwatchos10/_._",
  7385. "runtimes/aot/lib/netcore50/_._",
  7386. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7387. "system.reflection.emit.lightweight.nuspec"
  7388. ]
  7389. },
  7390. "System.Reflection.Extensions/4.3.0": {
  7391. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7392. "type": "package",
  7393. "path": "system.reflection.extensions/4.3.0",
  7394. "files": [
  7395. ".nupkg.metadata",
  7396. ".signature.p7s",
  7397. "ThirdPartyNotices.txt",
  7398. "dotnet_library_license.txt",
  7399. "lib/MonoAndroid10/_._",
  7400. "lib/MonoTouch10/_._",
  7401. "lib/net45/_._",
  7402. "lib/portable-net45+win8+wp8+wpa81/_._",
  7403. "lib/win8/_._",
  7404. "lib/wp80/_._",
  7405. "lib/wpa81/_._",
  7406. "lib/xamarinios10/_._",
  7407. "lib/xamarinmac20/_._",
  7408. "lib/xamarintvos10/_._",
  7409. "lib/xamarinwatchos10/_._",
  7410. "ref/MonoAndroid10/_._",
  7411. "ref/MonoTouch10/_._",
  7412. "ref/net45/_._",
  7413. "ref/netcore50/System.Reflection.Extensions.dll",
  7414. "ref/netcore50/System.Reflection.Extensions.xml",
  7415. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7416. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7417. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7418. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7419. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7420. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7421. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7422. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7423. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7424. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7425. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7426. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7427. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7428. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7429. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7430. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7431. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7432. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7433. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7434. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7435. "ref/portable-net45+win8+wp8+wpa81/_._",
  7436. "ref/win8/_._",
  7437. "ref/wp80/_._",
  7438. "ref/wpa81/_._",
  7439. "ref/xamarinios10/_._",
  7440. "ref/xamarinmac20/_._",
  7441. "ref/xamarintvos10/_._",
  7442. "ref/xamarinwatchos10/_._",
  7443. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7444. "system.reflection.extensions.nuspec"
  7445. ]
  7446. },
  7447. "System.Reflection.Primitives/4.3.0": {
  7448. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7449. "type": "package",
  7450. "path": "system.reflection.primitives/4.3.0",
  7451. "files": [
  7452. ".nupkg.metadata",
  7453. ".signature.p7s",
  7454. "ThirdPartyNotices.txt",
  7455. "dotnet_library_license.txt",
  7456. "lib/MonoAndroid10/_._",
  7457. "lib/MonoTouch10/_._",
  7458. "lib/net45/_._",
  7459. "lib/portable-net45+win8+wp8+wpa81/_._",
  7460. "lib/win8/_._",
  7461. "lib/wp80/_._",
  7462. "lib/wpa81/_._",
  7463. "lib/xamarinios10/_._",
  7464. "lib/xamarinmac20/_._",
  7465. "lib/xamarintvos10/_._",
  7466. "lib/xamarinwatchos10/_._",
  7467. "ref/MonoAndroid10/_._",
  7468. "ref/MonoTouch10/_._",
  7469. "ref/net45/_._",
  7470. "ref/netcore50/System.Reflection.Primitives.dll",
  7471. "ref/netcore50/System.Reflection.Primitives.xml",
  7472. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7473. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7474. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7475. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7476. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7477. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7478. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7479. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7480. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7481. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7482. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7483. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7484. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7485. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7486. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7487. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7488. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7489. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7490. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7491. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7492. "ref/portable-net45+win8+wp8+wpa81/_._",
  7493. "ref/win8/_._",
  7494. "ref/wp80/_._",
  7495. "ref/wpa81/_._",
  7496. "ref/xamarinios10/_._",
  7497. "ref/xamarinmac20/_._",
  7498. "ref/xamarintvos10/_._",
  7499. "ref/xamarinwatchos10/_._",
  7500. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7501. "system.reflection.primitives.nuspec"
  7502. ]
  7503. },
  7504. "System.Reflection.TypeExtensions/4.7.0": {
  7505. "sha512": "VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==",
  7506. "type": "package",
  7507. "path": "system.reflection.typeextensions/4.7.0",
  7508. "files": [
  7509. ".nupkg.metadata",
  7510. ".signature.p7s",
  7511. "LICENSE.TXT",
  7512. "THIRD-PARTY-NOTICES.TXT",
  7513. "lib/MonoAndroid10/_._",
  7514. "lib/MonoTouch10/_._",
  7515. "lib/net46/System.Reflection.TypeExtensions.dll",
  7516. "lib/net461/System.Reflection.TypeExtensions.dll",
  7517. "lib/net461/System.Reflection.TypeExtensions.xml",
  7518. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7519. "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll",
  7520. "lib/netcoreapp2.0/_._",
  7521. "lib/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7522. "lib/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7523. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7524. "lib/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7525. "lib/netstandard2.0/System.Reflection.TypeExtensions.dll",
  7526. "lib/netstandard2.0/System.Reflection.TypeExtensions.xml",
  7527. "lib/uap10.0.16299/_._",
  7528. "lib/xamarinios10/_._",
  7529. "lib/xamarinmac20/_._",
  7530. "lib/xamarintvos10/_._",
  7531. "lib/xamarinwatchos10/_._",
  7532. "ref/MonoAndroid10/_._",
  7533. "ref/MonoTouch10/_._",
  7534. "ref/net46/System.Reflection.TypeExtensions.dll",
  7535. "ref/net461/System.Reflection.TypeExtensions.dll",
  7536. "ref/net461/System.Reflection.TypeExtensions.xml",
  7537. "ref/net472/System.Reflection.TypeExtensions.dll",
  7538. "ref/net472/System.Reflection.TypeExtensions.xml",
  7539. "ref/netcoreapp2.0/_._",
  7540. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7541. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7542. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7543. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7544. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7545. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7546. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7547. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7548. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7549. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7550. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7551. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7552. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7553. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7554. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7555. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7556. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7557. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7558. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7559. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7560. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7561. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7562. "ref/netstandard2.0/System.Reflection.TypeExtensions.dll",
  7563. "ref/netstandard2.0/System.Reflection.TypeExtensions.xml",
  7564. "ref/uap10.0.16299/_._",
  7565. "ref/xamarinios10/_._",
  7566. "ref/xamarinmac20/_._",
  7567. "ref/xamarintvos10/_._",
  7568. "ref/xamarinwatchos10/_._",
  7569. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7570. "runtimes/aot/lib/uap10.0.16299/_._",
  7571. "system.reflection.typeextensions.4.7.0.nupkg.sha512",
  7572. "system.reflection.typeextensions.nuspec",
  7573. "useSharedDesignerContext.txt",
  7574. "version.txt"
  7575. ]
  7576. },
  7577. "System.Resources.ResourceManager/4.3.0": {
  7578. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7579. "type": "package",
  7580. "path": "system.resources.resourcemanager/4.3.0",
  7581. "files": [
  7582. ".nupkg.metadata",
  7583. ".signature.p7s",
  7584. "ThirdPartyNotices.txt",
  7585. "dotnet_library_license.txt",
  7586. "lib/MonoAndroid10/_._",
  7587. "lib/MonoTouch10/_._",
  7588. "lib/net45/_._",
  7589. "lib/portable-net45+win8+wp8+wpa81/_._",
  7590. "lib/win8/_._",
  7591. "lib/wp80/_._",
  7592. "lib/wpa81/_._",
  7593. "lib/xamarinios10/_._",
  7594. "lib/xamarinmac20/_._",
  7595. "lib/xamarintvos10/_._",
  7596. "lib/xamarinwatchos10/_._",
  7597. "ref/MonoAndroid10/_._",
  7598. "ref/MonoTouch10/_._",
  7599. "ref/net45/_._",
  7600. "ref/netcore50/System.Resources.ResourceManager.dll",
  7601. "ref/netcore50/System.Resources.ResourceManager.xml",
  7602. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7603. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7604. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7605. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7606. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7607. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7608. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7609. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7610. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7611. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7612. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7613. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7614. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7615. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7616. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7617. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7618. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7619. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7620. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7621. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7622. "ref/portable-net45+win8+wp8+wpa81/_._",
  7623. "ref/win8/_._",
  7624. "ref/wp80/_._",
  7625. "ref/wpa81/_._",
  7626. "ref/xamarinios10/_._",
  7627. "ref/xamarinmac20/_._",
  7628. "ref/xamarintvos10/_._",
  7629. "ref/xamarinwatchos10/_._",
  7630. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7631. "system.resources.resourcemanager.nuspec"
  7632. ]
  7633. },
  7634. "System.Runtime/4.3.0": {
  7635. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7636. "type": "package",
  7637. "path": "system.runtime/4.3.0",
  7638. "files": [
  7639. ".nupkg.metadata",
  7640. ".signature.p7s",
  7641. "ThirdPartyNotices.txt",
  7642. "dotnet_library_license.txt",
  7643. "lib/MonoAndroid10/_._",
  7644. "lib/MonoTouch10/_._",
  7645. "lib/net45/_._",
  7646. "lib/net462/System.Runtime.dll",
  7647. "lib/portable-net45+win8+wp80+wpa81/_._",
  7648. "lib/win8/_._",
  7649. "lib/wp80/_._",
  7650. "lib/wpa81/_._",
  7651. "lib/xamarinios10/_._",
  7652. "lib/xamarinmac20/_._",
  7653. "lib/xamarintvos10/_._",
  7654. "lib/xamarinwatchos10/_._",
  7655. "ref/MonoAndroid10/_._",
  7656. "ref/MonoTouch10/_._",
  7657. "ref/net45/_._",
  7658. "ref/net462/System.Runtime.dll",
  7659. "ref/netcore50/System.Runtime.dll",
  7660. "ref/netcore50/System.Runtime.xml",
  7661. "ref/netcore50/de/System.Runtime.xml",
  7662. "ref/netcore50/es/System.Runtime.xml",
  7663. "ref/netcore50/fr/System.Runtime.xml",
  7664. "ref/netcore50/it/System.Runtime.xml",
  7665. "ref/netcore50/ja/System.Runtime.xml",
  7666. "ref/netcore50/ko/System.Runtime.xml",
  7667. "ref/netcore50/ru/System.Runtime.xml",
  7668. "ref/netcore50/zh-hans/System.Runtime.xml",
  7669. "ref/netcore50/zh-hant/System.Runtime.xml",
  7670. "ref/netstandard1.0/System.Runtime.dll",
  7671. "ref/netstandard1.0/System.Runtime.xml",
  7672. "ref/netstandard1.0/de/System.Runtime.xml",
  7673. "ref/netstandard1.0/es/System.Runtime.xml",
  7674. "ref/netstandard1.0/fr/System.Runtime.xml",
  7675. "ref/netstandard1.0/it/System.Runtime.xml",
  7676. "ref/netstandard1.0/ja/System.Runtime.xml",
  7677. "ref/netstandard1.0/ko/System.Runtime.xml",
  7678. "ref/netstandard1.0/ru/System.Runtime.xml",
  7679. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7680. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7681. "ref/netstandard1.2/System.Runtime.dll",
  7682. "ref/netstandard1.2/System.Runtime.xml",
  7683. "ref/netstandard1.2/de/System.Runtime.xml",
  7684. "ref/netstandard1.2/es/System.Runtime.xml",
  7685. "ref/netstandard1.2/fr/System.Runtime.xml",
  7686. "ref/netstandard1.2/it/System.Runtime.xml",
  7687. "ref/netstandard1.2/ja/System.Runtime.xml",
  7688. "ref/netstandard1.2/ko/System.Runtime.xml",
  7689. "ref/netstandard1.2/ru/System.Runtime.xml",
  7690. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7691. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7692. "ref/netstandard1.3/System.Runtime.dll",
  7693. "ref/netstandard1.3/System.Runtime.xml",
  7694. "ref/netstandard1.3/de/System.Runtime.xml",
  7695. "ref/netstandard1.3/es/System.Runtime.xml",
  7696. "ref/netstandard1.3/fr/System.Runtime.xml",
  7697. "ref/netstandard1.3/it/System.Runtime.xml",
  7698. "ref/netstandard1.3/ja/System.Runtime.xml",
  7699. "ref/netstandard1.3/ko/System.Runtime.xml",
  7700. "ref/netstandard1.3/ru/System.Runtime.xml",
  7701. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7702. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7703. "ref/netstandard1.5/System.Runtime.dll",
  7704. "ref/netstandard1.5/System.Runtime.xml",
  7705. "ref/netstandard1.5/de/System.Runtime.xml",
  7706. "ref/netstandard1.5/es/System.Runtime.xml",
  7707. "ref/netstandard1.5/fr/System.Runtime.xml",
  7708. "ref/netstandard1.5/it/System.Runtime.xml",
  7709. "ref/netstandard1.5/ja/System.Runtime.xml",
  7710. "ref/netstandard1.5/ko/System.Runtime.xml",
  7711. "ref/netstandard1.5/ru/System.Runtime.xml",
  7712. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7713. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7714. "ref/portable-net45+win8+wp80+wpa81/_._",
  7715. "ref/win8/_._",
  7716. "ref/wp80/_._",
  7717. "ref/wpa81/_._",
  7718. "ref/xamarinios10/_._",
  7719. "ref/xamarinmac20/_._",
  7720. "ref/xamarintvos10/_._",
  7721. "ref/xamarinwatchos10/_._",
  7722. "system.runtime.4.3.0.nupkg.sha512",
  7723. "system.runtime.nuspec"
  7724. ]
  7725. },
  7726. "System.Runtime.Extensions/4.3.0": {
  7727. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7728. "type": "package",
  7729. "path": "system.runtime.extensions/4.3.0",
  7730. "files": [
  7731. ".nupkg.metadata",
  7732. ".signature.p7s",
  7733. "ThirdPartyNotices.txt",
  7734. "dotnet_library_license.txt",
  7735. "lib/MonoAndroid10/_._",
  7736. "lib/MonoTouch10/_._",
  7737. "lib/net45/_._",
  7738. "lib/net462/System.Runtime.Extensions.dll",
  7739. "lib/portable-net45+win8+wp8+wpa81/_._",
  7740. "lib/win8/_._",
  7741. "lib/wp80/_._",
  7742. "lib/wpa81/_._",
  7743. "lib/xamarinios10/_._",
  7744. "lib/xamarinmac20/_._",
  7745. "lib/xamarintvos10/_._",
  7746. "lib/xamarinwatchos10/_._",
  7747. "ref/MonoAndroid10/_._",
  7748. "ref/MonoTouch10/_._",
  7749. "ref/net45/_._",
  7750. "ref/net462/System.Runtime.Extensions.dll",
  7751. "ref/netcore50/System.Runtime.Extensions.dll",
  7752. "ref/netcore50/System.Runtime.Extensions.xml",
  7753. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7754. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7755. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7756. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7757. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7758. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7759. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7760. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7761. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7762. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7763. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7764. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7765. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7766. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7767. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7768. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7769. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7770. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7771. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7772. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7773. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7774. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7775. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7776. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7777. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7778. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7779. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7780. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7781. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7782. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7783. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7784. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7785. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7786. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7787. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7788. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7789. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7790. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7791. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7792. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7793. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7794. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7795. "ref/portable-net45+win8+wp8+wpa81/_._",
  7796. "ref/win8/_._",
  7797. "ref/wp80/_._",
  7798. "ref/wpa81/_._",
  7799. "ref/xamarinios10/_._",
  7800. "ref/xamarinmac20/_._",
  7801. "ref/xamarintvos10/_._",
  7802. "ref/xamarinwatchos10/_._",
  7803. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7804. "system.runtime.extensions.nuspec"
  7805. ]
  7806. },
  7807. "System.Runtime.Handles/4.3.0": {
  7808. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7809. "type": "package",
  7810. "path": "system.runtime.handles/4.3.0",
  7811. "files": [
  7812. ".nupkg.metadata",
  7813. ".signature.p7s",
  7814. "ThirdPartyNotices.txt",
  7815. "dotnet_library_license.txt",
  7816. "lib/MonoAndroid10/_._",
  7817. "lib/MonoTouch10/_._",
  7818. "lib/net46/_._",
  7819. "lib/xamarinios10/_._",
  7820. "lib/xamarinmac20/_._",
  7821. "lib/xamarintvos10/_._",
  7822. "lib/xamarinwatchos10/_._",
  7823. "ref/MonoAndroid10/_._",
  7824. "ref/MonoTouch10/_._",
  7825. "ref/net46/_._",
  7826. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7827. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7828. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7829. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7830. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7831. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7832. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7833. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7834. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7835. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7836. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7837. "ref/xamarinios10/_._",
  7838. "ref/xamarinmac20/_._",
  7839. "ref/xamarintvos10/_._",
  7840. "ref/xamarinwatchos10/_._",
  7841. "system.runtime.handles.4.3.0.nupkg.sha512",
  7842. "system.runtime.handles.nuspec"
  7843. ]
  7844. },
  7845. "System.Runtime.InteropServices/4.3.0": {
  7846. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7847. "type": "package",
  7848. "path": "system.runtime.interopservices/4.3.0",
  7849. "files": [
  7850. ".nupkg.metadata",
  7851. ".signature.p7s",
  7852. "ThirdPartyNotices.txt",
  7853. "dotnet_library_license.txt",
  7854. "lib/MonoAndroid10/_._",
  7855. "lib/MonoTouch10/_._",
  7856. "lib/net45/_._",
  7857. "lib/net462/System.Runtime.InteropServices.dll",
  7858. "lib/net463/System.Runtime.InteropServices.dll",
  7859. "lib/portable-net45+win8+wpa81/_._",
  7860. "lib/win8/_._",
  7861. "lib/wpa81/_._",
  7862. "lib/xamarinios10/_._",
  7863. "lib/xamarinmac20/_._",
  7864. "lib/xamarintvos10/_._",
  7865. "lib/xamarinwatchos10/_._",
  7866. "ref/MonoAndroid10/_._",
  7867. "ref/MonoTouch10/_._",
  7868. "ref/net45/_._",
  7869. "ref/net462/System.Runtime.InteropServices.dll",
  7870. "ref/net463/System.Runtime.InteropServices.dll",
  7871. "ref/netcore50/System.Runtime.InteropServices.dll",
  7872. "ref/netcore50/System.Runtime.InteropServices.xml",
  7873. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7874. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7875. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7876. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7877. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7878. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7879. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7880. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7881. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7882. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7883. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7884. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7885. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7886. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7887. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7888. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7889. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7890. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7891. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7892. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7893. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7894. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7895. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7896. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7897. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7898. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7899. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7900. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7901. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7902. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7903. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7904. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7905. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7906. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7907. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7908. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7909. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7910. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7911. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7912. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7913. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7914. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7915. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7916. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7917. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7918. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7919. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7920. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7921. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7922. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7923. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7924. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7925. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7926. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7927. "ref/portable-net45+win8+wpa81/_._",
  7928. "ref/win8/_._",
  7929. "ref/wpa81/_._",
  7930. "ref/xamarinios10/_._",
  7931. "ref/xamarinmac20/_._",
  7932. "ref/xamarintvos10/_._",
  7933. "ref/xamarinwatchos10/_._",
  7934. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7935. "system.runtime.interopservices.nuspec"
  7936. ]
  7937. },
  7938. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7939. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7940. "type": "package",
  7941. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7942. "files": [
  7943. ".nupkg.metadata",
  7944. ".signature.p7s",
  7945. "ThirdPartyNotices.txt",
  7946. "dotnet_library_license.txt",
  7947. "lib/MonoAndroid10/_._",
  7948. "lib/MonoTouch10/_._",
  7949. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7950. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7951. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7952. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7953. "lib/xamarinios10/_._",
  7954. "lib/xamarinmac20/_._",
  7955. "lib/xamarintvos10/_._",
  7956. "lib/xamarinwatchos10/_._",
  7957. "ref/MonoAndroid10/_._",
  7958. "ref/MonoTouch10/_._",
  7959. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7960. "ref/xamarinios10/_._",
  7961. "ref/xamarinmac20/_._",
  7962. "ref/xamarintvos10/_._",
  7963. "ref/xamarinwatchos10/_._",
  7964. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7965. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7966. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7967. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7968. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7969. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7970. "system.runtime.interopservices.runtimeinformation.nuspec"
  7971. ]
  7972. },
  7973. "System.Runtime.Loader/4.3.0": {
  7974. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  7975. "type": "package",
  7976. "path": "system.runtime.loader/4.3.0",
  7977. "files": [
  7978. ".nupkg.metadata",
  7979. ".signature.p7s",
  7980. "ThirdPartyNotices.txt",
  7981. "dotnet_library_license.txt",
  7982. "lib/MonoAndroid10/_._",
  7983. "lib/MonoTouch10/_._",
  7984. "lib/net462/_._",
  7985. "lib/netstandard1.5/System.Runtime.Loader.dll",
  7986. "lib/xamarinios10/_._",
  7987. "lib/xamarinmac20/_._",
  7988. "lib/xamarintvos10/_._",
  7989. "lib/xamarinwatchos10/_._",
  7990. "ref/netstandard1.5/System.Runtime.Loader.dll",
  7991. "ref/netstandard1.5/System.Runtime.Loader.xml",
  7992. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  7993. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  7994. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  7995. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  7996. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  7997. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  7998. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  7999. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8000. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  8001. "system.runtime.loader.4.3.0.nupkg.sha512",
  8002. "system.runtime.loader.nuspec"
  8003. ]
  8004. },
  8005. "System.Runtime.Numerics/4.3.0": {
  8006. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8007. "type": "package",
  8008. "path": "system.runtime.numerics/4.3.0",
  8009. "files": [
  8010. ".nupkg.metadata",
  8011. ".signature.p7s",
  8012. "ThirdPartyNotices.txt",
  8013. "dotnet_library_license.txt",
  8014. "lib/MonoAndroid10/_._",
  8015. "lib/MonoTouch10/_._",
  8016. "lib/net45/_._",
  8017. "lib/netcore50/System.Runtime.Numerics.dll",
  8018. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8019. "lib/portable-net45+win8+wpa81/_._",
  8020. "lib/win8/_._",
  8021. "lib/wpa81/_._",
  8022. "lib/xamarinios10/_._",
  8023. "lib/xamarinmac20/_._",
  8024. "lib/xamarintvos10/_._",
  8025. "lib/xamarinwatchos10/_._",
  8026. "ref/MonoAndroid10/_._",
  8027. "ref/MonoTouch10/_._",
  8028. "ref/net45/_._",
  8029. "ref/netcore50/System.Runtime.Numerics.dll",
  8030. "ref/netcore50/System.Runtime.Numerics.xml",
  8031. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8032. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8033. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8034. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8035. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8036. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8037. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8038. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8039. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8040. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8041. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8042. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8043. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8044. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8045. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8046. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8047. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8048. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8049. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8050. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8051. "ref/portable-net45+win8+wpa81/_._",
  8052. "ref/win8/_._",
  8053. "ref/wpa81/_._",
  8054. "ref/xamarinios10/_._",
  8055. "ref/xamarinmac20/_._",
  8056. "ref/xamarintvos10/_._",
  8057. "ref/xamarinwatchos10/_._",
  8058. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8059. "system.runtime.numerics.nuspec"
  8060. ]
  8061. },
  8062. "System.Runtime.Serialization.Formatters/4.3.0": {
  8063. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  8064. "type": "package",
  8065. "path": "system.runtime.serialization.formatters/4.3.0",
  8066. "files": [
  8067. ".nupkg.metadata",
  8068. ".signature.p7s",
  8069. "ThirdPartyNotices.txt",
  8070. "dotnet_library_license.txt",
  8071. "lib/MonoAndroid10/_._",
  8072. "lib/MonoTouch10/_._",
  8073. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  8074. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  8075. "lib/xamarinios10/_._",
  8076. "lib/xamarinmac20/_._",
  8077. "lib/xamarintvos10/_._",
  8078. "lib/xamarinwatchos10/_._",
  8079. "ref/MonoAndroid10/_._",
  8080. "ref/MonoTouch10/_._",
  8081. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  8082. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  8083. "ref/xamarinios10/_._",
  8084. "ref/xamarinmac20/_._",
  8085. "ref/xamarintvos10/_._",
  8086. "ref/xamarinwatchos10/_._",
  8087. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  8088. "system.runtime.serialization.formatters.nuspec"
  8089. ]
  8090. },
  8091. "System.Runtime.Serialization.Primitives/4.3.0": {
  8092. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  8093. "type": "package",
  8094. "path": "system.runtime.serialization.primitives/4.3.0",
  8095. "files": [
  8096. ".nupkg.metadata",
  8097. ".signature.p7s",
  8098. "ThirdPartyNotices.txt",
  8099. "dotnet_library_license.txt",
  8100. "lib/MonoAndroid10/_._",
  8101. "lib/MonoTouch10/_._",
  8102. "lib/net45/_._",
  8103. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8104. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8105. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8106. "lib/portable-net45+win8+wp8+wpa81/_._",
  8107. "lib/win8/_._",
  8108. "lib/wp80/_._",
  8109. "lib/wpa81/_._",
  8110. "lib/xamarinios10/_._",
  8111. "lib/xamarinmac20/_._",
  8112. "lib/xamarintvos10/_._",
  8113. "lib/xamarinwatchos10/_._",
  8114. "ref/MonoAndroid10/_._",
  8115. "ref/MonoTouch10/_._",
  8116. "ref/net45/_._",
  8117. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8118. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8119. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8120. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8121. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8122. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8123. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8124. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8125. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8126. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8127. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8128. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8129. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8130. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8131. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8132. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8133. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8134. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8135. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8136. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8137. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8138. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8139. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8140. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8141. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8142. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8143. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8144. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8145. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8146. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8147. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8148. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8149. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8150. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8151. "ref/portable-net45+win8+wp8+wpa81/_._",
  8152. "ref/win8/_._",
  8153. "ref/wp80/_._",
  8154. "ref/wpa81/_._",
  8155. "ref/xamarinios10/_._",
  8156. "ref/xamarinmac20/_._",
  8157. "ref/xamarintvos10/_._",
  8158. "ref/xamarinwatchos10/_._",
  8159. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8160. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  8161. "system.runtime.serialization.primitives.nuspec"
  8162. ]
  8163. },
  8164. "System.Security.AccessControl/4.4.0": {
  8165. "sha512": "2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
  8166. "type": "package",
  8167. "path": "system.security.accesscontrol/4.4.0",
  8168. "files": [
  8169. ".nupkg.metadata",
  8170. ".signature.p7s",
  8171. "LICENSE.TXT",
  8172. "THIRD-PARTY-NOTICES.TXT",
  8173. "lib/net46/System.Security.AccessControl.dll",
  8174. "lib/net461/System.Security.AccessControl.dll",
  8175. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8176. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8177. "ref/net46/System.Security.AccessControl.dll",
  8178. "ref/net461/System.Security.AccessControl.dll",
  8179. "ref/net461/System.Security.AccessControl.xml",
  8180. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8181. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8182. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8183. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8184. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8185. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8186. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8187. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8188. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8189. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8190. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8191. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8192. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8193. "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8194. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8195. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8196. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8197. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8198. "system.security.accesscontrol.4.4.0.nupkg.sha512",
  8199. "system.security.accesscontrol.nuspec",
  8200. "useSharedDesignerContext.txt",
  8201. "version.txt"
  8202. ]
  8203. },
  8204. "System.Security.Cryptography.Algorithms/4.3.1": {
  8205. "sha512": "DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==",
  8206. "type": "package",
  8207. "path": "system.security.cryptography.algorithms/4.3.1",
  8208. "files": [
  8209. ".nupkg.metadata",
  8210. ".signature.p7s",
  8211. "ThirdPartyNotices.txt",
  8212. "dotnet_library_license.txt",
  8213. "lib/MonoAndroid10/_._",
  8214. "lib/MonoTouch10/_._",
  8215. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8216. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8217. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8218. "lib/xamarinios10/_._",
  8219. "lib/xamarinmac20/_._",
  8220. "lib/xamarintvos10/_._",
  8221. "lib/xamarinwatchos10/_._",
  8222. "ref/MonoAndroid10/_._",
  8223. "ref/MonoTouch10/_._",
  8224. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8225. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8226. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8227. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8228. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8229. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8230. "ref/xamarinios10/_._",
  8231. "ref/xamarinmac20/_._",
  8232. "ref/xamarintvos10/_._",
  8233. "ref/xamarinwatchos10/_._",
  8234. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8235. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8236. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8237. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8238. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8239. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8240. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8241. "system.security.cryptography.algorithms.4.3.1.nupkg.sha512",
  8242. "system.security.cryptography.algorithms.nuspec"
  8243. ]
  8244. },
  8245. "System.Security.Cryptography.Cng/4.5.0": {
  8246. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8247. "type": "package",
  8248. "path": "system.security.cryptography.cng/4.5.0",
  8249. "files": [
  8250. ".nupkg.metadata",
  8251. ".signature.p7s",
  8252. "LICENSE.TXT",
  8253. "THIRD-PARTY-NOTICES.TXT",
  8254. "lib/MonoAndroid10/_._",
  8255. "lib/MonoTouch10/_._",
  8256. "lib/net46/System.Security.Cryptography.Cng.dll",
  8257. "lib/net461/System.Security.Cryptography.Cng.dll",
  8258. "lib/net462/System.Security.Cryptography.Cng.dll",
  8259. "lib/net47/System.Security.Cryptography.Cng.dll",
  8260. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8261. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8262. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8263. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8264. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8265. "lib/uap10.0.16299/_._",
  8266. "lib/xamarinios10/_._",
  8267. "lib/xamarinmac20/_._",
  8268. "lib/xamarintvos10/_._",
  8269. "lib/xamarinwatchos10/_._",
  8270. "ref/MonoAndroid10/_._",
  8271. "ref/MonoTouch10/_._",
  8272. "ref/net46/System.Security.Cryptography.Cng.dll",
  8273. "ref/net461/System.Security.Cryptography.Cng.dll",
  8274. "ref/net461/System.Security.Cryptography.Cng.xml",
  8275. "ref/net462/System.Security.Cryptography.Cng.dll",
  8276. "ref/net462/System.Security.Cryptography.Cng.xml",
  8277. "ref/net47/System.Security.Cryptography.Cng.dll",
  8278. "ref/net47/System.Security.Cryptography.Cng.xml",
  8279. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8280. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8281. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8282. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8283. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8284. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8285. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8286. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8287. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8288. "ref/uap10.0.16299/_._",
  8289. "ref/xamarinios10/_._",
  8290. "ref/xamarinmac20/_._",
  8291. "ref/xamarintvos10/_._",
  8292. "ref/xamarinwatchos10/_._",
  8293. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8294. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8295. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8296. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8297. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8298. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8299. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8300. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8301. "runtimes/win/lib/uap10.0.16299/_._",
  8302. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8303. "system.security.cryptography.cng.nuspec",
  8304. "useSharedDesignerContext.txt",
  8305. "version.txt"
  8306. ]
  8307. },
  8308. "System.Security.Cryptography.Csp/4.3.0": {
  8309. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8310. "type": "package",
  8311. "path": "system.security.cryptography.csp/4.3.0",
  8312. "files": [
  8313. ".nupkg.metadata",
  8314. ".signature.p7s",
  8315. "ThirdPartyNotices.txt",
  8316. "dotnet_library_license.txt",
  8317. "lib/MonoAndroid10/_._",
  8318. "lib/MonoTouch10/_._",
  8319. "lib/net46/System.Security.Cryptography.Csp.dll",
  8320. "lib/xamarinios10/_._",
  8321. "lib/xamarinmac20/_._",
  8322. "lib/xamarintvos10/_._",
  8323. "lib/xamarinwatchos10/_._",
  8324. "ref/MonoAndroid10/_._",
  8325. "ref/MonoTouch10/_._",
  8326. "ref/net46/System.Security.Cryptography.Csp.dll",
  8327. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8328. "ref/xamarinios10/_._",
  8329. "ref/xamarinmac20/_._",
  8330. "ref/xamarintvos10/_._",
  8331. "ref/xamarinwatchos10/_._",
  8332. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8333. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8334. "runtimes/win/lib/netcore50/_._",
  8335. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8336. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8337. "system.security.cryptography.csp.nuspec"
  8338. ]
  8339. },
  8340. "System.Security.Cryptography.Encoding/4.3.0": {
  8341. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8342. "type": "package",
  8343. "path": "system.security.cryptography.encoding/4.3.0",
  8344. "files": [
  8345. ".nupkg.metadata",
  8346. ".signature.p7s",
  8347. "ThirdPartyNotices.txt",
  8348. "dotnet_library_license.txt",
  8349. "lib/MonoAndroid10/_._",
  8350. "lib/MonoTouch10/_._",
  8351. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8352. "lib/xamarinios10/_._",
  8353. "lib/xamarinmac20/_._",
  8354. "lib/xamarintvos10/_._",
  8355. "lib/xamarinwatchos10/_._",
  8356. "ref/MonoAndroid10/_._",
  8357. "ref/MonoTouch10/_._",
  8358. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8359. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8360. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8361. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8362. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8363. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8364. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8365. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8366. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8367. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8368. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8369. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8370. "ref/xamarinios10/_._",
  8371. "ref/xamarinmac20/_._",
  8372. "ref/xamarintvos10/_._",
  8373. "ref/xamarinwatchos10/_._",
  8374. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8375. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8376. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8377. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8378. "system.security.cryptography.encoding.nuspec"
  8379. ]
  8380. },
  8381. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8382. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8383. "type": "package",
  8384. "path": "system.security.cryptography.openssl/4.3.0",
  8385. "files": [
  8386. ".nupkg.metadata",
  8387. ".signature.p7s",
  8388. "ThirdPartyNotices.txt",
  8389. "dotnet_library_license.txt",
  8390. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8391. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8392. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8393. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8394. "system.security.cryptography.openssl.nuspec"
  8395. ]
  8396. },
  8397. "System.Security.Cryptography.Primitives/4.3.0": {
  8398. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8399. "type": "package",
  8400. "path": "system.security.cryptography.primitives/4.3.0",
  8401. "files": [
  8402. ".nupkg.metadata",
  8403. ".signature.p7s",
  8404. "ThirdPartyNotices.txt",
  8405. "dotnet_library_license.txt",
  8406. "lib/MonoAndroid10/_._",
  8407. "lib/MonoTouch10/_._",
  8408. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8409. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8410. "lib/xamarinios10/_._",
  8411. "lib/xamarinmac20/_._",
  8412. "lib/xamarintvos10/_._",
  8413. "lib/xamarinwatchos10/_._",
  8414. "ref/MonoAndroid10/_._",
  8415. "ref/MonoTouch10/_._",
  8416. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8417. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8418. "ref/xamarinios10/_._",
  8419. "ref/xamarinmac20/_._",
  8420. "ref/xamarintvos10/_._",
  8421. "ref/xamarinwatchos10/_._",
  8422. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8423. "system.security.cryptography.primitives.nuspec"
  8424. ]
  8425. },
  8426. "System.Security.Cryptography.ProtectedData/4.4.0": {
  8427. "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  8428. "type": "package",
  8429. "path": "system.security.cryptography.protecteddata/4.4.0",
  8430. "files": [
  8431. ".nupkg.metadata",
  8432. ".signature.p7s",
  8433. "LICENSE.TXT",
  8434. "THIRD-PARTY-NOTICES.TXT",
  8435. "lib/MonoAndroid10/_._",
  8436. "lib/MonoTouch10/_._",
  8437. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8438. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8439. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8440. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8441. "lib/xamarinios10/_._",
  8442. "lib/xamarinmac20/_._",
  8443. "lib/xamarintvos10/_._",
  8444. "lib/xamarinwatchos10/_._",
  8445. "ref/MonoAndroid10/_._",
  8446. "ref/MonoTouch10/_._",
  8447. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8448. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8449. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8450. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8451. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8452. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8453. "ref/xamarinios10/_._",
  8454. "ref/xamarinmac20/_._",
  8455. "ref/xamarintvos10/_._",
  8456. "ref/xamarinwatchos10/_._",
  8457. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8458. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8459. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8460. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8461. "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
  8462. "system.security.cryptography.protecteddata.nuspec",
  8463. "useSharedDesignerContext.txt",
  8464. "version.txt"
  8465. ]
  8466. },
  8467. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8468. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8469. "type": "package",
  8470. "path": "system.security.cryptography.x509certificates/4.3.0",
  8471. "files": [
  8472. ".nupkg.metadata",
  8473. ".signature.p7s",
  8474. "ThirdPartyNotices.txt",
  8475. "dotnet_library_license.txt",
  8476. "lib/MonoAndroid10/_._",
  8477. "lib/MonoTouch10/_._",
  8478. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8479. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8480. "lib/xamarinios10/_._",
  8481. "lib/xamarinmac20/_._",
  8482. "lib/xamarintvos10/_._",
  8483. "lib/xamarinwatchos10/_._",
  8484. "ref/MonoAndroid10/_._",
  8485. "ref/MonoTouch10/_._",
  8486. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8487. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8488. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8489. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8490. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8491. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8492. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8493. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8494. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8495. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8496. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8497. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8498. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8499. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8500. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8501. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8502. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8503. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8504. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8505. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8506. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8507. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8508. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8509. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8510. "ref/xamarinios10/_._",
  8511. "ref/xamarinmac20/_._",
  8512. "ref/xamarintvos10/_._",
  8513. "ref/xamarinwatchos10/_._",
  8514. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8515. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8516. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8517. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8518. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8519. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8520. "system.security.cryptography.x509certificates.nuspec"
  8521. ]
  8522. },
  8523. "System.Security.Permissions/4.4.1": {
  8524. "sha512": "l8IxQ9mEAkKv85uoEcjcYhrh+yTLZtLgNqb2T7QChTdKXh45EUnmKd+Ckdt1D+VYW2dk2Pb5MT+0zwQ74Jd2Xg==",
  8525. "type": "package",
  8526. "path": "system.security.permissions/4.4.1",
  8527. "files": [
  8528. ".nupkg.metadata",
  8529. ".signature.p7s",
  8530. "LICENSE.TXT",
  8531. "THIRD-PARTY-NOTICES.TXT",
  8532. "lib/net461/System.Security.Permissions.dll",
  8533. "lib/netstandard2.0/System.Security.Permissions.dll",
  8534. "ref/net461/System.Security.Permissions.dll",
  8535. "ref/netstandard2.0/System.Security.Permissions.dll",
  8536. "ref/netstandard2.0/System.Security.Permissions.xml",
  8537. "system.security.permissions.4.4.1.nupkg.sha512",
  8538. "system.security.permissions.nuspec",
  8539. "useSharedDesignerContext.txt",
  8540. "version.txt"
  8541. ]
  8542. },
  8543. "System.Security.Principal.Windows/4.4.0": {
  8544. "sha512": "pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==",
  8545. "type": "package",
  8546. "path": "system.security.principal.windows/4.4.0",
  8547. "files": [
  8548. ".nupkg.metadata",
  8549. ".signature.p7s",
  8550. "LICENSE.TXT",
  8551. "THIRD-PARTY-NOTICES.TXT",
  8552. "lib/net46/System.Security.Principal.Windows.dll",
  8553. "lib/net461/System.Security.Principal.Windows.dll",
  8554. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8555. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8556. "ref/net46/System.Security.Principal.Windows.dll",
  8557. "ref/net461/System.Security.Principal.Windows.dll",
  8558. "ref/net461/System.Security.Principal.Windows.xml",
  8559. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8560. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8561. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8562. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8563. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8564. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8565. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8566. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8567. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8568. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8569. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8570. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8571. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8572. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8573. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8574. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8575. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8576. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8577. "system.security.principal.windows.4.4.0.nupkg.sha512",
  8578. "system.security.principal.windows.nuspec",
  8579. "useSharedDesignerContext.txt",
  8580. "version.txt"
  8581. ]
  8582. },
  8583. "System.ServiceModel.Duplex/4.4.4": {
  8584. "sha512": "y/XLnKJ+xnuEUjrgJkXeLKCH4A+EwkX2TdOcTdgsEtxWmWq1+RbCjMd0zIlyNrbGD+nM9BxNg9rLVWVAPq81RA==",
  8585. "type": "package",
  8586. "path": "system.servicemodel.duplex/4.4.4",
  8587. "files": [
  8588. ".nupkg.metadata",
  8589. ".signature.p7s",
  8590. "LICENSE.TXT",
  8591. "THIRD-PARTY-NOTICES.TXT",
  8592. "lib/MonoAndroid10/_._",
  8593. "lib/MonoTouch10/_._",
  8594. "lib/net45/_._",
  8595. "lib/net461/System.ServiceModel.Duplex.dll",
  8596. "lib/netcore50/System.ServiceModel.Duplex.dll",
  8597. "lib/netstandard1.3/System.ServiceModel.Duplex.dll",
  8598. "lib/netstandard2.0/System.ServiceModel.Duplex.dll",
  8599. "lib/portable-net45+win8/_._",
  8600. "lib/win8/_._",
  8601. "lib/xamarinios10/_._",
  8602. "lib/xamarinmac20/_._",
  8603. "lib/xamarintvos10/_._",
  8604. "lib/xamarinwatchos10/_._",
  8605. "ref/MonoAndroid10/_._",
  8606. "ref/MonoTouch10/_._",
  8607. "ref/net45/_._",
  8608. "ref/net461/System.ServiceModel.Duplex.dll",
  8609. "ref/netcore50/System.ServiceModel.Duplex.dll",
  8610. "ref/netstandard1.1/System.ServiceModel.Duplex.dll",
  8611. "ref/netstandard2.0/System.ServiceModel.Duplex.dll",
  8612. "ref/portable-net45+win8/_._",
  8613. "ref/win8/_._",
  8614. "ref/xamarinios10/_._",
  8615. "ref/xamarinmac20/_._",
  8616. "ref/xamarintvos10/_._",
  8617. "ref/xamarinwatchos10/_._",
  8618. "system.servicemodel.duplex.4.4.4.nupkg.sha512",
  8619. "system.servicemodel.duplex.nuspec",
  8620. "version.txt"
  8621. ]
  8622. },
  8623. "System.ServiceModel.Http/4.4.4": {
  8624. "sha512": "f7OWPKqfTaCzjpc6n+/xqNwv7YAHKMiBCPIgwxIXVnf0Vu9+yzfX6tXV9pSSCEFuqJ5tXGLz9MRRExrQEqVUkA==",
  8625. "type": "package",
  8626. "path": "system.servicemodel.http/4.4.4",
  8627. "files": [
  8628. ".nupkg.metadata",
  8629. ".signature.p7s",
  8630. "LICENSE.TXT",
  8631. "THIRD-PARTY-NOTICES.TXT",
  8632. "lib/MonoAndroid10/_._",
  8633. "lib/MonoTouch10/_._",
  8634. "lib/net45/_._",
  8635. "lib/net46/System.ServiceModel.Http.dll",
  8636. "lib/net461/System.ServiceModel.Http.dll",
  8637. "lib/netcore50/System.ServiceModel.Http.dll",
  8638. "lib/netstandard1.3/System.ServiceModel.Http.dll",
  8639. "lib/netstandard2.0/System.ServiceModel.Http.dll",
  8640. "lib/portable-net45+win8+wp8/_._",
  8641. "lib/win8/_._",
  8642. "lib/wp8/_._",
  8643. "lib/xamarinios10/_._",
  8644. "lib/xamarinmac20/_._",
  8645. "lib/xamarintvos10/_._",
  8646. "lib/xamarinwatchos10/_._",
  8647. "ref/MonoAndroid10/_._",
  8648. "ref/MonoTouch10/_._",
  8649. "ref/net45/_._",
  8650. "ref/net46/System.ServiceModel.Http.dll",
  8651. "ref/net461/System.ServiceModel.Http.dll",
  8652. "ref/netcore50/System.ServiceModel.Http.dll",
  8653. "ref/netstandard1.0/System.ServiceModel.Http.dll",
  8654. "ref/netstandard1.1/System.ServiceModel.Http.dll",
  8655. "ref/netstandard1.3/System.ServiceModel.Http.dll",
  8656. "ref/netstandard2.0/System.ServiceModel.Http.dll",
  8657. "ref/portable-net45+win8+wp8/_._",
  8658. "ref/win8/_._",
  8659. "ref/wp8/_._",
  8660. "ref/xamarinios10/_._",
  8661. "ref/xamarinmac20/_._",
  8662. "ref/xamarintvos10/_._",
  8663. "ref/xamarinwatchos10/_._",
  8664. "system.servicemodel.http.4.4.4.nupkg.sha512",
  8665. "system.servicemodel.http.nuspec",
  8666. "version.txt"
  8667. ]
  8668. },
  8669. "System.ServiceModel.NetTcp/4.4.4": {
  8670. "sha512": "TZUwkBUHK+HgPVpypcnCEzenn+Hly3mQ+QDqDtHKyqVBP2Yt+DAMp3NwuW35mTSMRqna5p9hd0U0vVq5azovOQ==",
  8671. "type": "package",
  8672. "path": "system.servicemodel.nettcp/4.4.4",
  8673. "files": [
  8674. ".nupkg.metadata",
  8675. ".signature.p7s",
  8676. "LICENSE.TXT",
  8677. "THIRD-PARTY-NOTICES.TXT",
  8678. "lib/MonoAndroid10/_._",
  8679. "lib/MonoTouch10/_._",
  8680. "lib/net45/_._",
  8681. "lib/net46/System.ServiceModel.NetTcp.dll",
  8682. "lib/net461/System.ServiceModel.NetTcp.dll",
  8683. "lib/netcore50/System.ServiceModel.NetTcp.dll",
  8684. "lib/netstandard1.3/System.ServiceModel.NetTcp.dll",
  8685. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll",
  8686. "lib/portable-net45+win8/_._",
  8687. "lib/win8/_._",
  8688. "lib/xamarinios10/_._",
  8689. "lib/xamarinmac20/_._",
  8690. "lib/xamarintvos10/_._",
  8691. "lib/xamarinwatchos10/_._",
  8692. "ref/MonoAndroid10/_._",
  8693. "ref/MonoTouch10/_._",
  8694. "ref/net45/_._",
  8695. "ref/net46/System.ServiceModel.NetTcp.dll",
  8696. "ref/net461/System.ServiceModel.NetTcp.dll",
  8697. "ref/netcore50/System.ServiceModel.NetTcp.dll",
  8698. "ref/netstandard1.1/System.ServiceModel.NetTcp.dll",
  8699. "ref/netstandard1.3/System.ServiceModel.NetTcp.dll",
  8700. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll",
  8701. "ref/portable-net45+win8/_._",
  8702. "ref/win8/_._",
  8703. "ref/xamarinios10/_._",
  8704. "ref/xamarinmac20/_._",
  8705. "ref/xamarintvos10/_._",
  8706. "ref/xamarinwatchos10/_._",
  8707. "system.servicemodel.nettcp.4.4.4.nupkg.sha512",
  8708. "system.servicemodel.nettcp.nuspec",
  8709. "version.txt"
  8710. ]
  8711. },
  8712. "System.ServiceModel.Primitives/4.4.4": {
  8713. "sha512": "Jv882Qt+tSJ2KnLGGMSGPwBvOxfXRncXW0YV/beBKRQ2c6bDbXVXwqaS2U9h+/cK1uL7C4zc66lnC7qvSBqPHw==",
  8714. "type": "package",
  8715. "path": "system.servicemodel.primitives/4.4.4",
  8716. "files": [
  8717. ".nupkg.metadata",
  8718. ".signature.p7s",
  8719. "LICENSE.TXT",
  8720. "THIRD-PARTY-NOTICES.TXT",
  8721. "lib/MonoAndroid10/_._",
  8722. "lib/MonoTouch10/_._",
  8723. "lib/net45/_._",
  8724. "lib/net46/System.ServiceModel.Primitives.dll",
  8725. "lib/net461/System.ServiceModel.Primitives.dll",
  8726. "lib/netcore50/System.ServiceModel.Primitives.dll",
  8727. "lib/netstandard1.3/System.ServiceModel.Primitives.dll",
  8728. "lib/netstandard2.0/System.ServiceModel.Primitives.dll",
  8729. "lib/netstandard2.0/System.ServiceModel.dll",
  8730. "lib/portable-net45+win8+wp8/_._",
  8731. "lib/win8/_._",
  8732. "lib/wp8/_._",
  8733. "lib/xamarinios10/_._",
  8734. "lib/xamarinmac20/_._",
  8735. "lib/xamarintvos10/_._",
  8736. "lib/xamarinwatchos10/_._",
  8737. "ref/MonoAndroid10/_._",
  8738. "ref/MonoTouch10/_._",
  8739. "ref/net45/_._",
  8740. "ref/net46/System.ServiceModel.Primitives.dll",
  8741. "ref/net461/System.ServiceModel.Primitives.dll",
  8742. "ref/netcore50/System.ServiceModel.Primitives.dll",
  8743. "ref/netstandard1.0/System.ServiceModel.Primitives.dll",
  8744. "ref/netstandard1.1/System.ServiceModel.Primitives.dll",
  8745. "ref/netstandard1.3/System.ServiceModel.Primitives.dll",
  8746. "ref/netstandard2.0/System.ServiceModel.Primitives.dll",
  8747. "ref/netstandard2.0/System.ServiceModel.dll",
  8748. "ref/portable-net45+win8+wp8/_._",
  8749. "ref/win8/_._",
  8750. "ref/wp8/_._",
  8751. "ref/xamarinios10/_._",
  8752. "ref/xamarinmac20/_._",
  8753. "ref/xamarintvos10/_._",
  8754. "ref/xamarinwatchos10/_._",
  8755. "system.servicemodel.primitives.4.4.4.nupkg.sha512",
  8756. "system.servicemodel.primitives.nuspec",
  8757. "version.txt"
  8758. ]
  8759. },
  8760. "System.ServiceModel.Security/4.4.4": {
  8761. "sha512": "8mJj3lUNbBkntouQ3Eg3IF04GxiDrDK2X79+kcfq8V+W7NoYBREgWczaD60ZmW4KKRKnL0q3OnUNJlkzJJfe5w==",
  8762. "type": "package",
  8763. "path": "system.servicemodel.security/4.4.4",
  8764. "files": [
  8765. ".nupkg.metadata",
  8766. ".signature.p7s",
  8767. "LICENSE.TXT",
  8768. "THIRD-PARTY-NOTICES.TXT",
  8769. "lib/MonoAndroid10/_._",
  8770. "lib/MonoTouch10/_._",
  8771. "lib/net45/_._",
  8772. "lib/netcore50/System.ServiceModel.Security.dll",
  8773. "lib/netstandard1.3/System.ServiceModel.Security.dll",
  8774. "lib/netstandard2.0/System.ServiceModel.Security.dll",
  8775. "lib/portable-net45+win8+wp8/_._",
  8776. "lib/win8/_._",
  8777. "lib/wp8/_._",
  8778. "lib/xamarinios10/_._",
  8779. "lib/xamarinmac20/_._",
  8780. "lib/xamarintvos10/_._",
  8781. "lib/xamarinwatchos10/_._",
  8782. "ref/MonoAndroid10/_._",
  8783. "ref/MonoTouch10/_._",
  8784. "ref/net45/_._",
  8785. "ref/netcore50/System.ServiceModel.Security.dll",
  8786. "ref/netstandard1.0/System.ServiceModel.Security.dll",
  8787. "ref/netstandard1.1/System.ServiceModel.Security.dll",
  8788. "ref/netstandard2.0/System.ServiceModel.Security.dll",
  8789. "ref/portable-net45+win8+wp8/_._",
  8790. "ref/win8/_._",
  8791. "ref/wp8/_._",
  8792. "ref/xamarinios10/_._",
  8793. "ref/xamarinmac20/_._",
  8794. "ref/xamarintvos10/_._",
  8795. "ref/xamarinwatchos10/_._",
  8796. "system.servicemodel.security.4.4.4.nupkg.sha512",
  8797. "system.servicemodel.security.nuspec",
  8798. "version.txt"
  8799. ]
  8800. },
  8801. "System.Text.Encoding/4.3.0": {
  8802. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8803. "type": "package",
  8804. "path": "system.text.encoding/4.3.0",
  8805. "files": [
  8806. ".nupkg.metadata",
  8807. ".signature.p7s",
  8808. "ThirdPartyNotices.txt",
  8809. "dotnet_library_license.txt",
  8810. "lib/MonoAndroid10/_._",
  8811. "lib/MonoTouch10/_._",
  8812. "lib/net45/_._",
  8813. "lib/portable-net45+win8+wp8+wpa81/_._",
  8814. "lib/win8/_._",
  8815. "lib/wp80/_._",
  8816. "lib/wpa81/_._",
  8817. "lib/xamarinios10/_._",
  8818. "lib/xamarinmac20/_._",
  8819. "lib/xamarintvos10/_._",
  8820. "lib/xamarinwatchos10/_._",
  8821. "ref/MonoAndroid10/_._",
  8822. "ref/MonoTouch10/_._",
  8823. "ref/net45/_._",
  8824. "ref/netcore50/System.Text.Encoding.dll",
  8825. "ref/netcore50/System.Text.Encoding.xml",
  8826. "ref/netcore50/de/System.Text.Encoding.xml",
  8827. "ref/netcore50/es/System.Text.Encoding.xml",
  8828. "ref/netcore50/fr/System.Text.Encoding.xml",
  8829. "ref/netcore50/it/System.Text.Encoding.xml",
  8830. "ref/netcore50/ja/System.Text.Encoding.xml",
  8831. "ref/netcore50/ko/System.Text.Encoding.xml",
  8832. "ref/netcore50/ru/System.Text.Encoding.xml",
  8833. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8834. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8835. "ref/netstandard1.0/System.Text.Encoding.dll",
  8836. "ref/netstandard1.0/System.Text.Encoding.xml",
  8837. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8838. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8839. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8840. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8841. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8842. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8843. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8844. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8845. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8846. "ref/netstandard1.3/System.Text.Encoding.dll",
  8847. "ref/netstandard1.3/System.Text.Encoding.xml",
  8848. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8849. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8850. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8851. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8852. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8853. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8854. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8855. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8856. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8857. "ref/portable-net45+win8+wp8+wpa81/_._",
  8858. "ref/win8/_._",
  8859. "ref/wp80/_._",
  8860. "ref/wpa81/_._",
  8861. "ref/xamarinios10/_._",
  8862. "ref/xamarinmac20/_._",
  8863. "ref/xamarintvos10/_._",
  8864. "ref/xamarinwatchos10/_._",
  8865. "system.text.encoding.4.3.0.nupkg.sha512",
  8866. "system.text.encoding.nuspec"
  8867. ]
  8868. },
  8869. "System.Text.Encoding.CodePages/4.7.1": {
  8870. "sha512": "i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
  8871. "type": "package",
  8872. "path": "system.text.encoding.codepages/4.7.1",
  8873. "files": [
  8874. ".nupkg.metadata",
  8875. ".signature.p7s",
  8876. "Icon.png",
  8877. "LICENSE.TXT",
  8878. "THIRD-PARTY-NOTICES.TXT",
  8879. "lib/MonoAndroid10/_._",
  8880. "lib/MonoTouch10/_._",
  8881. "lib/net46/System.Text.Encoding.CodePages.dll",
  8882. "lib/net461/System.Text.Encoding.CodePages.dll",
  8883. "lib/net461/System.Text.Encoding.CodePages.xml",
  8884. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8885. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8886. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8887. "lib/xamarinios10/_._",
  8888. "lib/xamarinmac20/_._",
  8889. "lib/xamarintvos10/_._",
  8890. "lib/xamarinwatchos10/_._",
  8891. "ref/MonoAndroid10/_._",
  8892. "ref/MonoTouch10/_._",
  8893. "ref/xamarinios10/_._",
  8894. "ref/xamarinmac20/_._",
  8895. "ref/xamarintvos10/_._",
  8896. "ref/xamarinwatchos10/_._",
  8897. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8898. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8899. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8900. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8901. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8902. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8903. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8904. "system.text.encoding.codepages.4.7.1.nupkg.sha512",
  8905. "system.text.encoding.codepages.nuspec",
  8906. "useSharedDesignerContext.txt",
  8907. "version.txt"
  8908. ]
  8909. },
  8910. "System.Text.Encoding.Extensions/4.3.0": {
  8911. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8912. "type": "package",
  8913. "path": "system.text.encoding.extensions/4.3.0",
  8914. "files": [
  8915. ".nupkg.metadata",
  8916. ".signature.p7s",
  8917. "ThirdPartyNotices.txt",
  8918. "dotnet_library_license.txt",
  8919. "lib/MonoAndroid10/_._",
  8920. "lib/MonoTouch10/_._",
  8921. "lib/net45/_._",
  8922. "lib/portable-net45+win8+wp8+wpa81/_._",
  8923. "lib/win8/_._",
  8924. "lib/wp80/_._",
  8925. "lib/wpa81/_._",
  8926. "lib/xamarinios10/_._",
  8927. "lib/xamarinmac20/_._",
  8928. "lib/xamarintvos10/_._",
  8929. "lib/xamarinwatchos10/_._",
  8930. "ref/MonoAndroid10/_._",
  8931. "ref/MonoTouch10/_._",
  8932. "ref/net45/_._",
  8933. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8934. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8935. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8936. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8937. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8938. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8939. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8940. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8941. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8942. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8943. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8944. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8945. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8946. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8947. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8948. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8949. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8950. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8951. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8952. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8953. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8954. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8955. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8956. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8957. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8958. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8959. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8960. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8961. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8962. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8963. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8964. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8965. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8966. "ref/portable-net45+win8+wp8+wpa81/_._",
  8967. "ref/win8/_._",
  8968. "ref/wp80/_._",
  8969. "ref/wpa81/_._",
  8970. "ref/xamarinios10/_._",
  8971. "ref/xamarinmac20/_._",
  8972. "ref/xamarintvos10/_._",
  8973. "ref/xamarinwatchos10/_._",
  8974. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8975. "system.text.encoding.extensions.nuspec"
  8976. ]
  8977. },
  8978. "System.Text.Encodings.Web/4.5.0": {
  8979. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  8980. "type": "package",
  8981. "path": "system.text.encodings.web/4.5.0",
  8982. "files": [
  8983. ".nupkg.metadata",
  8984. ".signature.p7s",
  8985. "LICENSE.TXT",
  8986. "THIRD-PARTY-NOTICES.TXT",
  8987. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8988. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8989. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8990. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8991. "system.text.encodings.web.4.5.0.nupkg.sha512",
  8992. "system.text.encodings.web.nuspec",
  8993. "useSharedDesignerContext.txt",
  8994. "version.txt"
  8995. ]
  8996. },
  8997. "System.Text.RegularExpressions/4.3.0": {
  8998. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8999. "type": "package",
  9000. "path": "system.text.regularexpressions/4.3.0",
  9001. "files": [
  9002. ".nupkg.metadata",
  9003. ".signature.p7s",
  9004. "ThirdPartyNotices.txt",
  9005. "dotnet_library_license.txt",
  9006. "lib/MonoAndroid10/_._",
  9007. "lib/MonoTouch10/_._",
  9008. "lib/net45/_._",
  9009. "lib/net463/System.Text.RegularExpressions.dll",
  9010. "lib/netcore50/System.Text.RegularExpressions.dll",
  9011. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9012. "lib/portable-net45+win8+wp8+wpa81/_._",
  9013. "lib/win8/_._",
  9014. "lib/wp80/_._",
  9015. "lib/wpa81/_._",
  9016. "lib/xamarinios10/_._",
  9017. "lib/xamarinmac20/_._",
  9018. "lib/xamarintvos10/_._",
  9019. "lib/xamarinwatchos10/_._",
  9020. "ref/MonoAndroid10/_._",
  9021. "ref/MonoTouch10/_._",
  9022. "ref/net45/_._",
  9023. "ref/net463/System.Text.RegularExpressions.dll",
  9024. "ref/netcore50/System.Text.RegularExpressions.dll",
  9025. "ref/netcore50/System.Text.RegularExpressions.xml",
  9026. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9027. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9028. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9029. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9030. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9031. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9032. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9033. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9034. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9035. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9036. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9037. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9038. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9039. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9040. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9041. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9042. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9043. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9044. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9045. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9046. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9047. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9048. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9049. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9050. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9051. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9052. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9053. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9054. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9055. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9056. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9057. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9058. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9059. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9060. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9061. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9062. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9063. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9064. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9065. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9066. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9067. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9068. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9069. "ref/portable-net45+win8+wp8+wpa81/_._",
  9070. "ref/win8/_._",
  9071. "ref/wp80/_._",
  9072. "ref/wpa81/_._",
  9073. "ref/xamarinios10/_._",
  9074. "ref/xamarinmac20/_._",
  9075. "ref/xamarintvos10/_._",
  9076. "ref/xamarinwatchos10/_._",
  9077. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9078. "system.text.regularexpressions.nuspec"
  9079. ]
  9080. },
  9081. "System.Threading/4.3.0": {
  9082. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9083. "type": "package",
  9084. "path": "system.threading/4.3.0",
  9085. "files": [
  9086. ".nupkg.metadata",
  9087. ".signature.p7s",
  9088. "ThirdPartyNotices.txt",
  9089. "dotnet_library_license.txt",
  9090. "lib/MonoAndroid10/_._",
  9091. "lib/MonoTouch10/_._",
  9092. "lib/net45/_._",
  9093. "lib/netcore50/System.Threading.dll",
  9094. "lib/netstandard1.3/System.Threading.dll",
  9095. "lib/portable-net45+win8+wp8+wpa81/_._",
  9096. "lib/win8/_._",
  9097. "lib/wp80/_._",
  9098. "lib/wpa81/_._",
  9099. "lib/xamarinios10/_._",
  9100. "lib/xamarinmac20/_._",
  9101. "lib/xamarintvos10/_._",
  9102. "lib/xamarinwatchos10/_._",
  9103. "ref/MonoAndroid10/_._",
  9104. "ref/MonoTouch10/_._",
  9105. "ref/net45/_._",
  9106. "ref/netcore50/System.Threading.dll",
  9107. "ref/netcore50/System.Threading.xml",
  9108. "ref/netcore50/de/System.Threading.xml",
  9109. "ref/netcore50/es/System.Threading.xml",
  9110. "ref/netcore50/fr/System.Threading.xml",
  9111. "ref/netcore50/it/System.Threading.xml",
  9112. "ref/netcore50/ja/System.Threading.xml",
  9113. "ref/netcore50/ko/System.Threading.xml",
  9114. "ref/netcore50/ru/System.Threading.xml",
  9115. "ref/netcore50/zh-hans/System.Threading.xml",
  9116. "ref/netcore50/zh-hant/System.Threading.xml",
  9117. "ref/netstandard1.0/System.Threading.dll",
  9118. "ref/netstandard1.0/System.Threading.xml",
  9119. "ref/netstandard1.0/de/System.Threading.xml",
  9120. "ref/netstandard1.0/es/System.Threading.xml",
  9121. "ref/netstandard1.0/fr/System.Threading.xml",
  9122. "ref/netstandard1.0/it/System.Threading.xml",
  9123. "ref/netstandard1.0/ja/System.Threading.xml",
  9124. "ref/netstandard1.0/ko/System.Threading.xml",
  9125. "ref/netstandard1.0/ru/System.Threading.xml",
  9126. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9127. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9128. "ref/netstandard1.3/System.Threading.dll",
  9129. "ref/netstandard1.3/System.Threading.xml",
  9130. "ref/netstandard1.3/de/System.Threading.xml",
  9131. "ref/netstandard1.3/es/System.Threading.xml",
  9132. "ref/netstandard1.3/fr/System.Threading.xml",
  9133. "ref/netstandard1.3/it/System.Threading.xml",
  9134. "ref/netstandard1.3/ja/System.Threading.xml",
  9135. "ref/netstandard1.3/ko/System.Threading.xml",
  9136. "ref/netstandard1.3/ru/System.Threading.xml",
  9137. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9138. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9139. "ref/portable-net45+win8+wp8+wpa81/_._",
  9140. "ref/win8/_._",
  9141. "ref/wp80/_._",
  9142. "ref/wpa81/_._",
  9143. "ref/xamarinios10/_._",
  9144. "ref/xamarinmac20/_._",
  9145. "ref/xamarintvos10/_._",
  9146. "ref/xamarinwatchos10/_._",
  9147. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9148. "system.threading.4.3.0.nupkg.sha512",
  9149. "system.threading.nuspec"
  9150. ]
  9151. },
  9152. "System.Threading.Tasks/4.3.0": {
  9153. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9154. "type": "package",
  9155. "path": "system.threading.tasks/4.3.0",
  9156. "files": [
  9157. ".nupkg.metadata",
  9158. ".signature.p7s",
  9159. "ThirdPartyNotices.txt",
  9160. "dotnet_library_license.txt",
  9161. "lib/MonoAndroid10/_._",
  9162. "lib/MonoTouch10/_._",
  9163. "lib/net45/_._",
  9164. "lib/portable-net45+win8+wp8+wpa81/_._",
  9165. "lib/win8/_._",
  9166. "lib/wp80/_._",
  9167. "lib/wpa81/_._",
  9168. "lib/xamarinios10/_._",
  9169. "lib/xamarinmac20/_._",
  9170. "lib/xamarintvos10/_._",
  9171. "lib/xamarinwatchos10/_._",
  9172. "ref/MonoAndroid10/_._",
  9173. "ref/MonoTouch10/_._",
  9174. "ref/net45/_._",
  9175. "ref/netcore50/System.Threading.Tasks.dll",
  9176. "ref/netcore50/System.Threading.Tasks.xml",
  9177. "ref/netcore50/de/System.Threading.Tasks.xml",
  9178. "ref/netcore50/es/System.Threading.Tasks.xml",
  9179. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9180. "ref/netcore50/it/System.Threading.Tasks.xml",
  9181. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9182. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9183. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9184. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9185. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9186. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9187. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9188. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9189. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9190. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9191. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9192. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9193. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9194. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9195. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9196. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9197. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9198. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9199. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9200. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9201. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9202. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9203. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9204. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9205. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9206. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9207. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9208. "ref/portable-net45+win8+wp8+wpa81/_._",
  9209. "ref/win8/_._",
  9210. "ref/wp80/_._",
  9211. "ref/wpa81/_._",
  9212. "ref/xamarinios10/_._",
  9213. "ref/xamarinmac20/_._",
  9214. "ref/xamarintvos10/_._",
  9215. "ref/xamarinwatchos10/_._",
  9216. "system.threading.tasks.4.3.0.nupkg.sha512",
  9217. "system.threading.tasks.nuspec"
  9218. ]
  9219. },
  9220. "System.Threading.Tasks.Extensions/4.3.0": {
  9221. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  9222. "type": "package",
  9223. "path": "system.threading.tasks.extensions/4.3.0",
  9224. "files": [
  9225. ".nupkg.metadata",
  9226. ".signature.p7s",
  9227. "ThirdPartyNotices.txt",
  9228. "dotnet_library_license.txt",
  9229. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9230. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9231. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9232. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9233. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  9234. "system.threading.tasks.extensions.nuspec"
  9235. ]
  9236. },
  9237. "System.Threading.Timer/4.3.0": {
  9238. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9239. "type": "package",
  9240. "path": "system.threading.timer/4.3.0",
  9241. "files": [
  9242. ".nupkg.metadata",
  9243. ".signature.p7s",
  9244. "ThirdPartyNotices.txt",
  9245. "dotnet_library_license.txt",
  9246. "lib/MonoAndroid10/_._",
  9247. "lib/MonoTouch10/_._",
  9248. "lib/net451/_._",
  9249. "lib/portable-net451+win81+wpa81/_._",
  9250. "lib/win81/_._",
  9251. "lib/wpa81/_._",
  9252. "lib/xamarinios10/_._",
  9253. "lib/xamarinmac20/_._",
  9254. "lib/xamarintvos10/_._",
  9255. "lib/xamarinwatchos10/_._",
  9256. "ref/MonoAndroid10/_._",
  9257. "ref/MonoTouch10/_._",
  9258. "ref/net451/_._",
  9259. "ref/netcore50/System.Threading.Timer.dll",
  9260. "ref/netcore50/System.Threading.Timer.xml",
  9261. "ref/netcore50/de/System.Threading.Timer.xml",
  9262. "ref/netcore50/es/System.Threading.Timer.xml",
  9263. "ref/netcore50/fr/System.Threading.Timer.xml",
  9264. "ref/netcore50/it/System.Threading.Timer.xml",
  9265. "ref/netcore50/ja/System.Threading.Timer.xml",
  9266. "ref/netcore50/ko/System.Threading.Timer.xml",
  9267. "ref/netcore50/ru/System.Threading.Timer.xml",
  9268. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9269. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9270. "ref/netstandard1.2/System.Threading.Timer.dll",
  9271. "ref/netstandard1.2/System.Threading.Timer.xml",
  9272. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9273. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9274. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9275. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9276. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9277. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9278. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9279. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9280. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9281. "ref/portable-net451+win81+wpa81/_._",
  9282. "ref/win81/_._",
  9283. "ref/wpa81/_._",
  9284. "ref/xamarinios10/_._",
  9285. "ref/xamarinmac20/_._",
  9286. "ref/xamarintvos10/_._",
  9287. "ref/xamarinwatchos10/_._",
  9288. "system.threading.timer.4.3.0.nupkg.sha512",
  9289. "system.threading.timer.nuspec"
  9290. ]
  9291. },
  9292. "System.Xml.ReaderWriter/4.3.1": {
  9293. "sha512": "fVU1Xp9TEOHv1neQDtcJ4hNfYJ1pjfXzKY3VFeiRZK6HTV4Af2Ihyvq1FkPLrL1hzZhXv7NTmowQnL5DgTzIKA==",
  9294. "type": "package",
  9295. "path": "system.xml.readerwriter/4.3.1",
  9296. "files": [
  9297. ".nupkg.metadata",
  9298. ".signature.p7s",
  9299. "ThirdPartyNotices.txt",
  9300. "dotnet_library_license.txt",
  9301. "lib/MonoAndroid10/_._",
  9302. "lib/MonoTouch10/_._",
  9303. "lib/net45/_._",
  9304. "lib/net46/System.Xml.ReaderWriter.dll",
  9305. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9306. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9307. "lib/portable-net45+win8+wp8+wpa81/_._",
  9308. "lib/win8/_._",
  9309. "lib/wp80/_._",
  9310. "lib/wpa81/_._",
  9311. "lib/xamarinios10/_._",
  9312. "lib/xamarinmac20/_._",
  9313. "lib/xamarintvos10/_._",
  9314. "lib/xamarinwatchos10/_._",
  9315. "ref/MonoAndroid10/_._",
  9316. "ref/MonoTouch10/_._",
  9317. "ref/net45/_._",
  9318. "ref/net46/System.Xml.ReaderWriter.dll",
  9319. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9320. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9321. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9322. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9323. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9324. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9325. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9326. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9327. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9328. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9329. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9330. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9331. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9332. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9333. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9334. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9335. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9336. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9337. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9338. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9339. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9340. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9341. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9342. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9343. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9344. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9345. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9346. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9347. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9348. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9349. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9350. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9351. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9352. "ref/portable-net45+win8+wp8+wpa81/_._",
  9353. "ref/win8/_._",
  9354. "ref/wp80/_._",
  9355. "ref/wpa81/_._",
  9356. "ref/xamarinios10/_._",
  9357. "ref/xamarinmac20/_._",
  9358. "ref/xamarintvos10/_._",
  9359. "ref/xamarinwatchos10/_._",
  9360. "system.xml.readerwriter.4.3.1.nupkg.sha512",
  9361. "system.xml.readerwriter.nuspec"
  9362. ]
  9363. },
  9364. "System.Xml.XDocument/4.3.0": {
  9365. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9366. "type": "package",
  9367. "path": "system.xml.xdocument/4.3.0",
  9368. "files": [
  9369. ".nupkg.metadata",
  9370. ".signature.p7s",
  9371. "ThirdPartyNotices.txt",
  9372. "dotnet_library_license.txt",
  9373. "lib/MonoAndroid10/_._",
  9374. "lib/MonoTouch10/_._",
  9375. "lib/net45/_._",
  9376. "lib/netcore50/System.Xml.XDocument.dll",
  9377. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9378. "lib/portable-net45+win8+wp8+wpa81/_._",
  9379. "lib/win8/_._",
  9380. "lib/wp80/_._",
  9381. "lib/wpa81/_._",
  9382. "lib/xamarinios10/_._",
  9383. "lib/xamarinmac20/_._",
  9384. "lib/xamarintvos10/_._",
  9385. "lib/xamarinwatchos10/_._",
  9386. "ref/MonoAndroid10/_._",
  9387. "ref/MonoTouch10/_._",
  9388. "ref/net45/_._",
  9389. "ref/netcore50/System.Xml.XDocument.dll",
  9390. "ref/netcore50/System.Xml.XDocument.xml",
  9391. "ref/netcore50/de/System.Xml.XDocument.xml",
  9392. "ref/netcore50/es/System.Xml.XDocument.xml",
  9393. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9394. "ref/netcore50/it/System.Xml.XDocument.xml",
  9395. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9396. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9397. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9398. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9399. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9400. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9401. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9402. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9403. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9404. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9405. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9406. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9407. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9408. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9409. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9410. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9411. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9412. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9413. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9414. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9415. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9416. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9417. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9418. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9419. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9420. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9421. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9422. "ref/portable-net45+win8+wp8+wpa81/_._",
  9423. "ref/win8/_._",
  9424. "ref/wp80/_._",
  9425. "ref/wpa81/_._",
  9426. "ref/xamarinios10/_._",
  9427. "ref/xamarinmac20/_._",
  9428. "ref/xamarintvos10/_._",
  9429. "ref/xamarinwatchos10/_._",
  9430. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9431. "system.xml.xdocument.nuspec"
  9432. ]
  9433. },
  9434. "System.Xml.XmlDocument/4.3.0": {
  9435. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  9436. "type": "package",
  9437. "path": "system.xml.xmldocument/4.3.0",
  9438. "files": [
  9439. ".nupkg.metadata",
  9440. ".signature.p7s",
  9441. "ThirdPartyNotices.txt",
  9442. "dotnet_library_license.txt",
  9443. "lib/MonoAndroid10/_._",
  9444. "lib/MonoTouch10/_._",
  9445. "lib/net46/System.Xml.XmlDocument.dll",
  9446. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9447. "lib/xamarinios10/_._",
  9448. "lib/xamarinmac20/_._",
  9449. "lib/xamarintvos10/_._",
  9450. "lib/xamarinwatchos10/_._",
  9451. "ref/MonoAndroid10/_._",
  9452. "ref/MonoTouch10/_._",
  9453. "ref/net46/System.Xml.XmlDocument.dll",
  9454. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9455. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9456. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9457. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9458. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9459. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9460. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9461. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9462. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9463. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9464. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9465. "ref/xamarinios10/_._",
  9466. "ref/xamarinmac20/_._",
  9467. "ref/xamarintvos10/_._",
  9468. "ref/xamarinwatchos10/_._",
  9469. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  9470. "system.xml.xmldocument.nuspec"
  9471. ]
  9472. },
  9473. "WebAPIBase.NetCore.BusinessCore/1.0.0": {
  9474. "type": "project",
  9475. "path": "../WebAPIBase.NetCore.BusinessCore/WebAPIBase.NetCore.BusinessCore.csproj",
  9476. "msbuildProject": "../WebAPIBase.NetCore.BusinessCore/WebAPIBase.NetCore.BusinessCore.csproj"
  9477. },
  9478. "WebAPIBase.NetCore.Enties/1.0.0": {
  9479. "type": "project",
  9480. "path": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj",
  9481. "msbuildProject": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj"
  9482. },
  9483. "WebAPIBase.Utils/1.0.0": {
  9484. "type": "project",
  9485. "path": "../Utils/WebAPIBase.Utils.csproj",
  9486. "msbuildProject": "../Utils/WebAPIBase.Utils.csproj"
  9487. }
  9488. },
  9489. "projectFileDependencyGroups": {
  9490. ".NETCoreApp,Version=v3.1": [
  9491. "MSTest.TestAdapter >= 2.1.0",
  9492. "MSTest.TestFramework >= 2.1.0",
  9493. "Microsoft.NET.Test.Sdk >= 16.5.0",
  9494. "WebAPIBase.NetCore.BusinessCore >= 1.0.0",
  9495. "coverlet.collector >= 1.2.0"
  9496. ]
  9497. },
  9498. "packageFolders": {
  9499. "C:\\Users\\lulu\\.nuget\\packages\\": {},
  9500. "D:\\Microsoft\\Xamarin\\NuGet\\": {}
  9501. },
  9502. "project": {
  9503. "version": "1.0.0",
  9504. "restore": {
  9505. "projectUniqueName": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\WebAPIBase.NetCore.BusinessCoreTests.csproj",
  9506. "projectName": "WebAPIBase.NetCore.BusinessCoreTests",
  9507. "projectPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\WebAPIBase.NetCore.BusinessCoreTests.csproj",
  9508. "packagesPath": "C:\\Users\\lulu\\.nuget\\packages\\",
  9509. "outputPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\obj\\",
  9510. "projectStyle": "PackageReference",
  9511. "fallbackFolders": [
  9512. "D:\\Microsoft\\Xamarin\\NuGet\\"
  9513. ],
  9514. "configFilePaths": [
  9515. "C:\\Users\\lulu\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9516. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
  9517. "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
  9518. ],
  9519. "originalTargetFrameworks": [
  9520. "netcoreapp3.1"
  9521. ],
  9522. "sources": {
  9523. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9524. "https://api.nuget.org/v3/index.json": {}
  9525. },
  9526. "frameworks": {
  9527. "netcoreapp3.1": {
  9528. "projectReferences": {
  9529. "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj": {
  9530. "projectPath": "D:\\北京宏信\\源码\\haodegroup\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj"
  9531. }
  9532. }
  9533. }
  9534. },
  9535. "warningProperties": {
  9536. "warnAsError": [
  9537. "NU1605"
  9538. ]
  9539. }
  9540. },
  9541. "frameworks": {
  9542. "netcoreapp3.1": {
  9543. "dependencies": {
  9544. "MSTest.TestAdapter": {
  9545. "target": "Package",
  9546. "version": "[2.1.0, )"
  9547. },
  9548. "MSTest.TestFramework": {
  9549. "target": "Package",
  9550. "version": "[2.1.0, )"
  9551. },
  9552. "Microsoft.NET.Test.Sdk": {
  9553. "target": "Package",
  9554. "version": "[16.5.0, )"
  9555. },
  9556. "coverlet.collector": {
  9557. "target": "Package",
  9558. "version": "[1.2.0, )"
  9559. }
  9560. },
  9561. "imports": [
  9562. "net461",
  9563. "net462",
  9564. "net47",
  9565. "net471",
  9566. "net472",
  9567. "net48"
  9568. ],
  9569. "assetTargetFallback": true,
  9570. "warn": true,
  9571. "frameworkReferences": {
  9572. "Microsoft.AspNetCore.App": {
  9573. "privateAssets": "none"
  9574. },
  9575. "Microsoft.NETCore.App": {
  9576. "privateAssets": "all"
  9577. }
  9578. },
  9579. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.401\\RuntimeIdentifierGraph.json"
  9580. }
  9581. }
  9582. }
  9583. }