project.assets.json 388 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "Exceptionless/4.3.2027": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
  9. "System.Reflection.Emit.Lightweight": "4.3.0"
  10. },
  11. "compile": {
  12. "lib/netstandard2.0/Exceptionless.dll": {
  13. "related": ".pdb;.xml"
  14. }
  15. },
  16. "runtime": {
  17. "lib/netstandard2.0/Exceptionless.dll": {
  18. "related": ".pdb;.xml"
  19. }
  20. }
  21. },
  22. "Microsoft.AspNetCore/2.2.0": {
  23. "type": "package",
  24. "dependencies": {
  25. "Microsoft.AspNetCore.Diagnostics": "2.2.0",
  26. "Microsoft.AspNetCore.HostFiltering": "2.2.0",
  27. "Microsoft.AspNetCore.Hosting": "2.2.0",
  28. "Microsoft.AspNetCore.Routing": "2.2.0",
  29. "Microsoft.AspNetCore.Server.IIS": "2.2.0",
  30. "Microsoft.AspNetCore.Server.IISIntegration": "2.2.0",
  31. "Microsoft.AspNetCore.Server.Kestrel": "2.2.0",
  32. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
  33. "Microsoft.Extensions.Configuration.CommandLine": "2.2.0",
  34. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
  35. "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
  36. "Microsoft.Extensions.Configuration.Json": "2.2.0",
  37. "Microsoft.Extensions.Configuration.UserSecrets": "2.2.0",
  38. "Microsoft.Extensions.Logging": "2.2.0",
  39. "Microsoft.Extensions.Logging.Configuration": "2.2.0",
  40. "Microsoft.Extensions.Logging.Console": "2.2.0",
  41. "Microsoft.Extensions.Logging.Debug": "2.2.0",
  42. "Microsoft.Extensions.Logging.EventSource": "2.2.0"
  43. },
  44. "compile": {
  45. "lib/netstandard2.0/Microsoft.AspNetCore.dll": {
  46. "related": ".xml"
  47. }
  48. },
  49. "runtime": {
  50. "lib/netstandard2.0/Microsoft.AspNetCore.dll": {
  51. "related": ".xml"
  52. }
  53. }
  54. },
  55. "Microsoft.AspNetCore.Antiforgery/2.2.0": {
  56. "type": "package",
  57. "dependencies": {
  58. "Microsoft.AspNetCore.DataProtection": "2.2.0",
  59. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  60. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  61. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  62. "Microsoft.Extensions.ObjectPool": "2.2.0"
  63. },
  64. "compile": {
  65. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
  66. "related": ".xml"
  67. }
  68. },
  69. "runtime": {
  70. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
  71. "related": ".xml"
  72. }
  73. }
  74. },
  75. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  76. "type": "package",
  77. "dependencies": {
  78. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  79. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  80. "Microsoft.Extensions.Options": "2.2.0"
  81. },
  82. "compile": {
  83. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  84. "related": ".xml"
  85. }
  86. },
  87. "runtime": {
  88. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  89. "related": ".xml"
  90. }
  91. }
  92. },
  93. "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
  94. "type": "package",
  95. "dependencies": {
  96. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  97. "Microsoft.AspNetCore.Http": "2.2.0",
  98. "Microsoft.AspNetCore.Http.Extensions": "2.2.0"
  99. },
  100. "compile": {
  101. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
  102. "related": ".xml"
  103. }
  104. },
  105. "runtime": {
  106. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
  107. "related": ".xml"
  108. }
  109. }
  110. },
  111. "Microsoft.AspNetCore.Authorization/2.2.0": {
  112. "type": "package",
  113. "dependencies": {
  114. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  115. "Microsoft.Extensions.Options": "2.2.0"
  116. },
  117. "compile": {
  118. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  119. "related": ".xml"
  120. }
  121. },
  122. "runtime": {
  123. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  124. "related": ".xml"
  125. }
  126. }
  127. },
  128. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  129. "type": "package",
  130. "dependencies": {
  131. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  132. "Microsoft.AspNetCore.Authorization": "2.2.0"
  133. },
  134. "compile": {
  135. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  136. "related": ".xml"
  137. }
  138. },
  139. "runtime": {
  140. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  141. "related": ".xml"
  142. }
  143. }
  144. },
  145. "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
  146. "type": "package",
  147. "dependencies": {
  148. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  149. "System.IO.Pipelines": "4.5.2"
  150. },
  151. "compile": {
  152. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  153. "related": ".xml"
  154. }
  155. },
  156. "runtime": {
  157. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  158. "related": ".xml"
  159. }
  160. }
  161. },
  162. "Microsoft.AspNetCore.Cors/2.2.0": {
  163. "type": "package",
  164. "dependencies": {
  165. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  166. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  167. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  168. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  169. "Microsoft.Extensions.Options": "2.2.0"
  170. },
  171. "compile": {
  172. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
  173. "related": ".xml"
  174. }
  175. },
  176. "runtime": {
  177. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
  178. "related": ".xml"
  179. }
  180. }
  181. },
  182. "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": {
  183. "type": "package",
  184. "compile": {
  185. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  186. "related": ".xml"
  187. }
  188. },
  189. "runtime": {
  190. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  191. "related": ".xml"
  192. }
  193. }
  194. },
  195. "Microsoft.AspNetCore.DataProtection/2.2.0": {
  196. "type": "package",
  197. "dependencies": {
  198. "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0",
  199. "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0",
  200. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  201. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  202. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  203. "Microsoft.Extensions.Options": "2.2.0",
  204. "Microsoft.Win32.Registry": "4.5.0",
  205. "System.Security.Cryptography.Xml": "4.5.0",
  206. "System.Security.Principal.Windows": "4.5.0"
  207. },
  208. "compile": {
  209. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
  210. "related": ".xml"
  211. }
  212. },
  213. "runtime": {
  214. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
  215. "related": ".xml"
  216. }
  217. }
  218. },
  219. "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {
  220. "type": "package",
  221. "compile": {
  222. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  223. "related": ".xml"
  224. }
  225. },
  226. "runtime": {
  227. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  228. "related": ".xml"
  229. }
  230. }
  231. },
  232. "Microsoft.AspNetCore.Diagnostics/2.2.0": {
  233. "type": "package",
  234. "dependencies": {
  235. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0",
  236. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  237. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  238. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  239. "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
  240. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  241. "Microsoft.Extensions.Options": "2.2.0",
  242. "System.Diagnostics.DiagnosticSource": "4.5.0",
  243. "System.Reflection.Metadata": "1.6.0"
  244. },
  245. "compile": {
  246. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {
  247. "related": ".xml"
  248. }
  249. },
  250. "runtime": {
  251. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {
  252. "related": ".xml"
  253. }
  254. }
  255. },
  256. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {
  257. "type": "package",
  258. "compile": {
  259. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
  260. "related": ".xml"
  261. }
  262. },
  263. "runtime": {
  264. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
  265. "related": ".xml"
  266. }
  267. }
  268. },
  269. "Microsoft.AspNetCore.HostFiltering/2.2.0": {
  270. "type": "package",
  271. "dependencies": {
  272. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  273. "Microsoft.AspNetCore.Http": "2.2.0",
  274. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  275. "Microsoft.Extensions.Options": "2.2.0"
  276. },
  277. "compile": {
  278. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {
  279. "related": ".xml"
  280. }
  281. },
  282. "runtime": {
  283. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {
  284. "related": ".xml"
  285. }
  286. }
  287. },
  288. "Microsoft.AspNetCore.Hosting/2.2.0": {
  289. "type": "package",
  290. "dependencies": {
  291. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  292. "Microsoft.AspNetCore.Http": "2.2.0",
  293. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  294. "Microsoft.Extensions.Configuration": "2.2.0",
  295. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
  296. "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
  297. "Microsoft.Extensions.DependencyInjection": "2.2.0",
  298. "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
  299. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0",
  300. "Microsoft.Extensions.Logging": "2.2.0",
  301. "Microsoft.Extensions.Options": "2.2.0",
  302. "System.Diagnostics.DiagnosticSource": "4.5.0",
  303. "System.Reflection.Metadata": "1.6.0"
  304. },
  305. "compile": {
  306. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
  307. "related": ".xml"
  308. }
  309. },
  310. "runtime": {
  311. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
  312. "related": ".xml"
  313. }
  314. }
  315. },
  316. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  317. "type": "package",
  318. "dependencies": {
  319. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  320. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  321. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  322. },
  323. "compile": {
  324. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  325. "related": ".xml"
  326. }
  327. },
  328. "runtime": {
  329. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  330. "related": ".xml"
  331. }
  332. }
  333. },
  334. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  335. "type": "package",
  336. "dependencies": {
  337. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  338. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  339. },
  340. "compile": {
  341. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  342. "related": ".xml"
  343. }
  344. },
  345. "runtime": {
  346. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  347. "related": ".xml"
  348. }
  349. }
  350. },
  351. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  352. "type": "package",
  353. "dependencies": {
  354. "System.Text.Encodings.Web": "4.5.0"
  355. },
  356. "compile": {
  357. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
  358. "related": ".xml"
  359. }
  360. },
  361. "runtime": {
  362. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
  363. "related": ".xml"
  364. }
  365. }
  366. },
  367. "Microsoft.AspNetCore.Http/2.2.0": {
  368. "type": "package",
  369. "dependencies": {
  370. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  371. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  372. "Microsoft.Extensions.ObjectPool": "2.2.0",
  373. "Microsoft.Extensions.Options": "2.2.0",
  374. "Microsoft.Net.Http.Headers": "2.2.0"
  375. },
  376. "compile": {
  377. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  378. "related": ".xml"
  379. }
  380. },
  381. "runtime": {
  382. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  383. "related": ".xml"
  384. }
  385. }
  386. },
  387. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  388. "type": "package",
  389. "dependencies": {
  390. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  391. "System.Text.Encodings.Web": "4.5.0"
  392. },
  393. "compile": {
  394. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  395. "related": ".xml"
  396. }
  397. },
  398. "runtime": {
  399. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  400. "related": ".xml"
  401. }
  402. }
  403. },
  404. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  405. "type": "package",
  406. "dependencies": {
  407. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  408. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  409. "Microsoft.Net.Http.Headers": "2.2.0",
  410. "System.Buffers": "4.5.0"
  411. },
  412. "compile": {
  413. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  414. "related": ".xml"
  415. }
  416. },
  417. "runtime": {
  418. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  419. "related": ".xml"
  420. }
  421. }
  422. },
  423. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  424. "type": "package",
  425. "dependencies": {
  426. "Microsoft.Extensions.Primitives": "2.2.0"
  427. },
  428. "compile": {
  429. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  430. "related": ".xml"
  431. }
  432. },
  433. "runtime": {
  434. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  435. "related": ".xml"
  436. }
  437. }
  438. },
  439. "Microsoft.AspNetCore.HttpOverrides/2.2.0": {
  440. "type": "package",
  441. "dependencies": {
  442. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  443. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  444. "Microsoft.Extensions.Options": "2.2.0"
  445. },
  446. "compile": {
  447. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {
  448. "related": ".xml"
  449. }
  450. },
  451. "runtime": {
  452. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {
  453. "related": ".xml"
  454. }
  455. }
  456. },
  457. "Microsoft.AspNetCore.JsonPatch/2.2.0": {
  458. "type": "package",
  459. "dependencies": {
  460. "Microsoft.CSharp": "4.5.0",
  461. "Newtonsoft.Json": "11.0.2"
  462. },
  463. "compile": {
  464. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  465. "related": ".xml"
  466. }
  467. },
  468. "runtime": {
  469. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  470. "related": ".xml"
  471. }
  472. }
  473. },
  474. "Microsoft.AspNetCore.Localization/2.2.0": {
  475. "type": "package",
  476. "dependencies": {
  477. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  478. "Microsoft.Extensions.Localization.Abstractions": "2.2.0",
  479. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  480. "Microsoft.Extensions.Options": "2.2.0"
  481. },
  482. "compile": {
  483. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
  484. "related": ".xml"
  485. }
  486. },
  487. "runtime": {
  488. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
  489. "related": ".xml"
  490. }
  491. }
  492. },
  493. "Microsoft.AspNetCore.Mvc/2.2.0": {
  494. "type": "package",
  495. "dependencies": {
  496. "Microsoft.AspNetCore.Mvc.Analyzers": "2.2.0",
  497. "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.2.0",
  498. "Microsoft.AspNetCore.Mvc.Cors": "2.2.0",
  499. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0",
  500. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0",
  501. "Microsoft.AspNetCore.Mvc.Localization": "2.2.0",
  502. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0",
  503. "Microsoft.AspNetCore.Mvc.RazorPages": "2.2.0",
  504. "Microsoft.AspNetCore.Mvc.TagHelpers": "2.2.0",
  505. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0",
  506. "Microsoft.AspNetCore.Razor.Design": "2.2.0",
  507. "Microsoft.Extensions.Caching.Memory": "2.2.0",
  508. "Microsoft.Extensions.DependencyInjection": "2.2.0"
  509. },
  510. "compile": {
  511. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
  512. "related": ".xml"
  513. }
  514. },
  515. "runtime": {
  516. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
  517. "related": ".xml"
  518. }
  519. }
  520. },
  521. "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": {
  522. "type": "package",
  523. "dependencies": {
  524. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  525. "Microsoft.Net.Http.Headers": "2.2.0"
  526. },
  527. "compile": {
  528. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
  529. "related": ".xml"
  530. }
  531. },
  532. "runtime": {
  533. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
  534. "related": ".xml"
  535. }
  536. }
  537. },
  538. "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": {
  539. "type": "package"
  540. },
  541. "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": {
  542. "type": "package",
  543. "dependencies": {
  544. "Microsoft.AspNetCore.Mvc.Core": "2.2.0"
  545. },
  546. "compile": {
  547. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
  548. "related": ".xml"
  549. }
  550. },
  551. "runtime": {
  552. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
  553. "related": ".xml"
  554. }
  555. }
  556. },
  557. "Microsoft.AspNetCore.Mvc.Core/2.2.0": {
  558. "type": "package",
  559. "dependencies": {
  560. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  561. "Microsoft.AspNetCore.Authorization.Policy": "2.2.0",
  562. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  563. "Microsoft.AspNetCore.Http": "2.2.0",
  564. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  565. "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0",
  566. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0",
  567. "Microsoft.AspNetCore.Routing": "2.2.0",
  568. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  569. "Microsoft.Extensions.DependencyInjection": "2.2.0",
  570. "Microsoft.Extensions.DependencyModel": "2.1.0",
  571. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  572. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  573. "System.Diagnostics.DiagnosticSource": "4.5.0",
  574. "System.Threading.Tasks.Extensions": "4.5.1"
  575. },
  576. "compile": {
  577. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
  578. "related": ".xml"
  579. }
  580. },
  581. "runtime": {
  582. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
  583. "related": ".xml"
  584. }
  585. }
  586. },
  587. "Microsoft.AspNetCore.Mvc.Cors/2.2.0": {
  588. "type": "package",
  589. "dependencies": {
  590. "Microsoft.AspNetCore.Cors": "2.2.0",
  591. "Microsoft.AspNetCore.Mvc.Core": "2.2.0"
  592. },
  593. "compile": {
  594. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
  595. "related": ".xml"
  596. }
  597. },
  598. "runtime": {
  599. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
  600. "related": ".xml"
  601. }
  602. }
  603. },
  604. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": {
  605. "type": "package",
  606. "dependencies": {
  607. "Microsoft.AspNetCore.Mvc.Core": "2.2.0",
  608. "Microsoft.Extensions.Localization": "2.2.0",
  609. "System.ComponentModel.Annotations": "4.5.0"
  610. },
  611. "compile": {
  612. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
  613. "related": ".xml"
  614. }
  615. },
  616. "runtime": {
  617. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
  618. "related": ".xml"
  619. }
  620. }
  621. },
  622. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": {
  623. "type": "package",
  624. "dependencies": {
  625. "Microsoft.AspNetCore.JsonPatch": "2.2.0",
  626. "Microsoft.AspNetCore.Mvc.Core": "2.2.0"
  627. },
  628. "compile": {
  629. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
  630. "related": ".xml"
  631. }
  632. },
  633. "runtime": {
  634. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
  635. "related": ".xml"
  636. }
  637. }
  638. },
  639. "Microsoft.AspNetCore.Mvc.Localization/2.2.0": {
  640. "type": "package",
  641. "dependencies": {
  642. "Microsoft.AspNetCore.Localization": "2.2.0",
  643. "Microsoft.AspNetCore.Mvc.Razor": "2.2.0",
  644. "Microsoft.Extensions.DependencyInjection": "2.2.0",
  645. "Microsoft.Extensions.Localization": "2.2.0"
  646. },
  647. "compile": {
  648. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
  649. "related": ".xml"
  650. }
  651. },
  652. "runtime": {
  653. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
  654. "related": ".xml"
  655. }
  656. }
  657. },
  658. "Microsoft.AspNetCore.Mvc.Razor/2.2.0": {
  659. "type": "package",
  660. "dependencies": {
  661. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0",
  662. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0",
  663. "Microsoft.AspNetCore.Razor.Runtime": "2.2.0",
  664. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  665. "Microsoft.CodeAnalysis.Razor": "2.2.0",
  666. "Microsoft.Extensions.Caching.Memory": "2.2.0",
  667. "Microsoft.Extensions.FileProviders.Composite": "2.2.0"
  668. },
  669. "compile": {
  670. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
  671. "related": ".xml"
  672. }
  673. },
  674. "runtime": {
  675. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
  676. "related": ".xml"
  677. }
  678. }
  679. },
  680. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": {
  681. "type": "package",
  682. "dependencies": {
  683. "Microsoft.AspNetCore.Razor.Language": "2.2.0",
  684. "Microsoft.CodeAnalysis.Razor": "2.2.0"
  685. },
  686. "compile": {
  687. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
  688. "related": ".xml"
  689. }
  690. },
  691. "runtime": {
  692. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
  693. "related": ".xml"
  694. }
  695. },
  696. "build": {
  697. "build/netstandard2.0/_._": {}
  698. }
  699. },
  700. "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": {
  701. "type": "package",
  702. "dependencies": {
  703. "Microsoft.AspNetCore.Mvc.Razor": "2.2.0"
  704. },
  705. "compile": {
  706. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
  707. "related": ".xml"
  708. }
  709. },
  710. "runtime": {
  711. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
  712. "related": ".xml"
  713. }
  714. }
  715. },
  716. "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": {
  717. "type": "package",
  718. "dependencies": {
  719. "Microsoft.AspNetCore.Mvc.Razor": "2.2.0",
  720. "Microsoft.AspNetCore.Razor.Runtime": "2.2.0",
  721. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  722. "Microsoft.Extensions.Caching.Memory": "2.2.0",
  723. "Microsoft.Extensions.FileSystemGlobbing": "2.2.0",
  724. "Microsoft.Extensions.Primitives": "2.2.0"
  725. },
  726. "compile": {
  727. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
  728. "related": ".xml"
  729. }
  730. },
  731. "runtime": {
  732. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
  733. "related": ".xml"
  734. }
  735. }
  736. },
  737. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": {
  738. "type": "package",
  739. "dependencies": {
  740. "Microsoft.AspNetCore.Antiforgery": "2.2.0",
  741. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0",
  742. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0",
  743. "Microsoft.AspNetCore.Mvc.Core": "2.2.0",
  744. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0",
  745. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0",
  746. "Microsoft.Extensions.WebEncoders": "2.2.0",
  747. "Newtonsoft.Json.Bson": "1.0.1"
  748. },
  749. "compile": {
  750. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
  751. "related": ".xml"
  752. }
  753. },
  754. "runtime": {
  755. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
  756. "related": ".xml"
  757. }
  758. }
  759. },
  760. "Microsoft.AspNetCore.Razor/2.2.0": {
  761. "type": "package",
  762. "dependencies": {
  763. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0"
  764. },
  765. "compile": {
  766. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
  767. "related": ".xml"
  768. }
  769. },
  770. "runtime": {
  771. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
  772. "related": ".xml"
  773. }
  774. }
  775. },
  776. "Microsoft.AspNetCore.Razor.Design/2.2.0": {
  777. "type": "package",
  778. "build": {
  779. "build/netstandard2.0/_._": {}
  780. },
  781. "buildMultiTargeting": {
  782. "buildMultiTargeting/_._": {}
  783. }
  784. },
  785. "Microsoft.AspNetCore.Razor.Language/2.2.0": {
  786. "type": "package",
  787. "compile": {
  788. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {
  789. "related": ".xml"
  790. }
  791. },
  792. "runtime": {
  793. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {
  794. "related": ".xml"
  795. }
  796. }
  797. },
  798. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  799. "type": "package",
  800. "dependencies": {
  801. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0",
  802. "Microsoft.AspNetCore.Razor": "2.2.0"
  803. },
  804. "compile": {
  805. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
  806. "related": ".xml"
  807. }
  808. },
  809. "runtime": {
  810. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
  811. "related": ".xml"
  812. }
  813. }
  814. },
  815. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": {
  816. "type": "package",
  817. "dependencies": {
  818. "Microsoft.Extensions.Primitives": "2.2.0"
  819. },
  820. "compile": {
  821. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
  822. "related": ".xml"
  823. }
  824. },
  825. "runtime": {
  826. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
  827. "related": ".xml"
  828. }
  829. }
  830. },
  831. "Microsoft.AspNetCore.Routing/2.2.0": {
  832. "type": "package",
  833. "dependencies": {
  834. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  835. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  836. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  837. "Microsoft.Extensions.ObjectPool": "2.2.0",
  838. "Microsoft.Extensions.Options": "2.2.0"
  839. },
  840. "compile": {
  841. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  842. "related": ".xml"
  843. }
  844. },
  845. "runtime": {
  846. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  847. "related": ".xml"
  848. }
  849. }
  850. },
  851. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  852. "type": "package",
  853. "dependencies": {
  854. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  855. },
  856. "compile": {
  857. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  858. "related": ".xml"
  859. }
  860. },
  861. "runtime": {
  862. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  863. "related": ".xml"
  864. }
  865. }
  866. },
  867. "Microsoft.AspNetCore.Server.IIS/2.2.0": {
  868. "type": "package",
  869. "dependencies": {
  870. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  871. "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0",
  872. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  873. "System.IO.Pipelines": "4.5.2",
  874. "System.Security.Principal.Windows": "4.5.0"
  875. },
  876. "compile": {
  877. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.dll": {
  878. "related": ".xml"
  879. }
  880. },
  881. "runtime": {
  882. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.dll": {
  883. "related": ".xml"
  884. }
  885. },
  886. "build": {
  887. "build/netstandard2.0/Microsoft.AspNetCore.Server.IIS.targets": {}
  888. },
  889. "runtimeTargets": {
  890. "runtimes/win-x64/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll": {
  891. "assetType": "native",
  892. "rid": "win-x64"
  893. },
  894. "runtimes/win-x86/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll": {
  895. "assetType": "native",
  896. "rid": "win-x86"
  897. }
  898. }
  899. },
  900. "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": {
  901. "type": "package",
  902. "dependencies": {
  903. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  904. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  905. "Microsoft.AspNetCore.Http": "2.2.0",
  906. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  907. "Microsoft.AspNetCore.HttpOverrides": "2.2.0",
  908. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  909. "Microsoft.Extensions.Options": "2.2.0",
  910. "System.Buffers": "4.5.0",
  911. "System.IO.Pipelines": "4.5.2",
  912. "System.Memory": "4.5.1",
  913. "System.Numerics.Vectors": "4.5.0",
  914. "System.Runtime.CompilerServices.Unsafe": "4.5.1",
  915. "System.Security.Principal.Windows": "4.5.0"
  916. },
  917. "compile": {
  918. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {
  919. "related": ".xml"
  920. }
  921. },
  922. "runtime": {
  923. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {
  924. "related": ".xml"
  925. }
  926. },
  927. "build": {
  928. "build/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.targets": {}
  929. }
  930. },
  931. "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
  932. "type": "package",
  933. "dependencies": {
  934. "Microsoft.AspNetCore.Hosting": "2.2.0",
  935. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0",
  936. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
  937. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.0"
  938. },
  939. "compile": {
  940. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
  941. "related": ".xml"
  942. }
  943. },
  944. "runtime": {
  945. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
  946. "related": ".xml"
  947. }
  948. }
  949. },
  950. "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
  951. "type": "package",
  952. "dependencies": {
  953. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  954. "Microsoft.AspNetCore.Http": "2.2.0",
  955. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
  956. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  957. "Microsoft.Extensions.Configuration.Binder": "2.2.0",
  958. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  959. "Microsoft.Extensions.Options": "2.2.0",
  960. "Microsoft.Net.Http.Headers": "2.2.0",
  961. "System.Memory": "4.5.1",
  962. "System.Numerics.Vectors": "4.5.0",
  963. "System.Runtime.CompilerServices.Unsafe": "4.5.1",
  964. "System.Security.Cryptography.Cng": "4.5.0",
  965. "System.Threading.Tasks.Extensions": "4.5.1"
  966. },
  967. "compile": {
  968. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
  969. "related": ".xml"
  970. }
  971. },
  972. "runtime": {
  973. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
  974. "related": ".xml"
  975. }
  976. }
  977. },
  978. "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
  979. "type": "package",
  980. "dependencies": {
  981. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  982. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0"
  983. },
  984. "compile": {
  985. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
  986. "related": ".xml"
  987. }
  988. },
  989. "runtime": {
  990. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
  991. "related": ".xml"
  992. }
  993. }
  994. },
  995. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
  996. "type": "package",
  997. "dependencies": {
  998. "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0"
  999. },
  1000. "compile": {
  1001. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
  1002. "related": ".xml"
  1003. }
  1004. },
  1005. "runtime": {
  1006. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
  1007. "related": ".xml"
  1008. }
  1009. }
  1010. },
  1011. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": {
  1012. "type": "package",
  1013. "dependencies": {
  1014. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  1015. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
  1016. "Microsoft.Extensions.Options": "2.2.0"
  1017. },
  1018. "compile": {
  1019. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {
  1020. "related": ".xml"
  1021. }
  1022. },
  1023. "runtime": {
  1024. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {
  1025. "related": ".xml"
  1026. }
  1027. }
  1028. },
  1029. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  1030. "type": "package",
  1031. "dependencies": {
  1032. "Microsoft.Net.Http.Headers": "2.2.0",
  1033. "System.Text.Encodings.Web": "4.5.0"
  1034. },
  1035. "compile": {
  1036. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  1037. "related": ".xml"
  1038. }
  1039. },
  1040. "runtime": {
  1041. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  1042. "related": ".xml"
  1043. }
  1044. }
  1045. },
  1046. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  1047. "type": "package"
  1048. },
  1049. "Microsoft.CodeAnalysis.Common/2.8.0": {
  1050. "type": "package",
  1051. "dependencies": {
  1052. "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
  1053. "System.AppContext": "4.3.0",
  1054. "System.Collections": "4.3.0",
  1055. "System.Collections.Concurrent": "4.3.0",
  1056. "System.Collections.Immutable": "1.3.1",
  1057. "System.Console": "4.3.0",
  1058. "System.Diagnostics.Debug": "4.3.0",
  1059. "System.Diagnostics.FileVersionInfo": "4.3.0",
  1060. "System.Diagnostics.StackTrace": "4.3.0",
  1061. "System.Diagnostics.Tools": "4.3.0",
  1062. "System.Dynamic.Runtime": "4.3.0",
  1063. "System.Globalization": "4.3.0",
  1064. "System.IO.Compression": "4.3.0",
  1065. "System.IO.FileSystem": "4.3.0",
  1066. "System.IO.FileSystem.Primitives": "4.3.0",
  1067. "System.Linq": "4.3.0",
  1068. "System.Linq.Expressions": "4.3.0",
  1069. "System.Reflection": "4.3.0",
  1070. "System.Reflection.Metadata": "1.4.2",
  1071. "System.Resources.ResourceManager": "4.3.0",
  1072. "System.Runtime": "4.3.0",
  1073. "System.Runtime.Extensions": "4.3.0",
  1074. "System.Runtime.InteropServices": "4.3.0",
  1075. "System.Runtime.Numerics": "4.3.0",
  1076. "System.Security.Cryptography.Algorithms": "4.3.0",
  1077. "System.Security.Cryptography.Encoding": "4.3.0",
  1078. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1079. "System.Text.Encoding": "4.3.0",
  1080. "System.Text.Encoding.CodePages": "4.3.0",
  1081. "System.Text.Encoding.Extensions": "4.3.0",
  1082. "System.Threading": "4.3.0",
  1083. "System.Threading.Tasks": "4.3.0",
  1084. "System.Threading.Tasks.Parallel": "4.3.0",
  1085. "System.Threading.Thread": "4.3.0",
  1086. "System.ValueTuple": "4.3.0",
  1087. "System.Xml.ReaderWriter": "4.3.0",
  1088. "System.Xml.XDocument": "4.3.0",
  1089. "System.Xml.XPath.XDocument": "4.3.0",
  1090. "System.Xml.XmlDocument": "4.3.0"
  1091. },
  1092. "compile": {
  1093. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
  1094. "related": ".pdb;.xml"
  1095. }
  1096. },
  1097. "runtime": {
  1098. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
  1099. "related": ".pdb;.xml"
  1100. }
  1101. }
  1102. },
  1103. "Microsoft.CodeAnalysis.CSharp/2.8.0": {
  1104. "type": "package",
  1105. "dependencies": {
  1106. "Microsoft.CodeAnalysis.Common": "[2.8.0]"
  1107. },
  1108. "compile": {
  1109. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
  1110. "related": ".pdb;.xml"
  1111. }
  1112. },
  1113. "runtime": {
  1114. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
  1115. "related": ".pdb;.xml"
  1116. }
  1117. }
  1118. },
  1119. "Microsoft.CodeAnalysis.Razor/2.2.0": {
  1120. "type": "package",
  1121. "dependencies": {
  1122. "Microsoft.AspNetCore.Razor.Language": "2.2.0",
  1123. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  1124. "Microsoft.CodeAnalysis.Common": "2.8.0"
  1125. },
  1126. "compile": {
  1127. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {
  1128. "related": ".xml"
  1129. }
  1130. },
  1131. "runtime": {
  1132. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {
  1133. "related": ".xml"
  1134. }
  1135. }
  1136. },
  1137. "Microsoft.CSharp/4.5.0": {
  1138. "type": "package",
  1139. "compile": {
  1140. "ref/netcoreapp2.0/_._": {}
  1141. },
  1142. "runtime": {
  1143. "lib/netcoreapp2.0/_._": {}
  1144. }
  1145. },
  1146. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  1147. "type": "package",
  1148. "dependencies": {
  1149. "System.AppContext": "4.1.0",
  1150. "System.Collections": "4.0.11",
  1151. "System.IO": "4.1.0",
  1152. "System.IO.FileSystem": "4.0.1",
  1153. "System.Reflection.TypeExtensions": "4.1.0",
  1154. "System.Runtime.Extensions": "4.1.0",
  1155. "System.Runtime.InteropServices": "4.1.0",
  1156. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  1157. },
  1158. "compile": {
  1159. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  1160. },
  1161. "runtime": {
  1162. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  1163. }
  1164. },
  1165. "Microsoft.Extensions.Caching.Abstractions/2.2.0": {
  1166. "type": "package",
  1167. "dependencies": {
  1168. "Microsoft.Extensions.Primitives": "2.2.0"
  1169. },
  1170. "compile": {
  1171. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1172. "related": ".xml"
  1173. }
  1174. },
  1175. "runtime": {
  1176. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1177. "related": ".xml"
  1178. }
  1179. }
  1180. },
  1181. "Microsoft.Extensions.Caching.Memory/2.2.0": {
  1182. "type": "package",
  1183. "dependencies": {
  1184. "Microsoft.Extensions.Caching.Abstractions": "2.2.0",
  1185. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  1186. "Microsoft.Extensions.Options": "2.2.0"
  1187. },
  1188. "compile": {
  1189. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  1190. "related": ".xml"
  1191. }
  1192. },
  1193. "runtime": {
  1194. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  1195. "related": ".xml"
  1196. }
  1197. }
  1198. },
  1199. "Microsoft.Extensions.Configuration/3.1.2": {
  1200. "type": "package",
  1201. "dependencies": {
  1202. "Microsoft.Extensions.Configuration.Abstractions": "3.1.2"
  1203. },
  1204. "compile": {
  1205. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
  1206. "related": ".xml"
  1207. }
  1208. },
  1209. "runtime": {
  1210. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
  1211. "related": ".xml"
  1212. }
  1213. }
  1214. },
  1215. "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
  1216. "type": "package",
  1217. "dependencies": {
  1218. "Microsoft.Extensions.Primitives": "3.1.2"
  1219. },
  1220. "compile": {
  1221. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1222. "related": ".xml"
  1223. }
  1224. },
  1225. "runtime": {
  1226. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1227. "related": ".xml"
  1228. }
  1229. }
  1230. },
  1231. "Microsoft.Extensions.Configuration.Binder/3.1.2": {
  1232. "type": "package",
  1233. "dependencies": {
  1234. "Microsoft.Extensions.Configuration": "3.1.2"
  1235. },
  1236. "compile": {
  1237. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
  1238. "related": ".xml"
  1239. }
  1240. },
  1241. "runtime": {
  1242. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
  1243. "related": ".xml"
  1244. }
  1245. }
  1246. },
  1247. "Microsoft.Extensions.Configuration.CommandLine/2.2.0": {
  1248. "type": "package",
  1249. "dependencies": {
  1250. "Microsoft.Extensions.Configuration": "2.2.0"
  1251. },
  1252. "compile": {
  1253. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  1254. "related": ".xml"
  1255. }
  1256. },
  1257. "runtime": {
  1258. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  1259. "related": ".xml"
  1260. }
  1261. }
  1262. },
  1263. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
  1264. "type": "package",
  1265. "dependencies": {
  1266. "Microsoft.Extensions.Configuration": "2.2.0"
  1267. },
  1268. "compile": {
  1269. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  1270. "related": ".xml"
  1271. }
  1272. },
  1273. "runtime": {
  1274. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  1275. "related": ".xml"
  1276. }
  1277. }
  1278. },
  1279. "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
  1280. "type": "package",
  1281. "dependencies": {
  1282. "Microsoft.Extensions.Configuration": "2.2.0",
  1283. "Microsoft.Extensions.FileProviders.Physical": "2.2.0"
  1284. },
  1285. "compile": {
  1286. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1287. "related": ".xml"
  1288. }
  1289. },
  1290. "runtime": {
  1291. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1292. "related": ".xml"
  1293. }
  1294. }
  1295. },
  1296. "Microsoft.Extensions.Configuration.Json/2.2.0": {
  1297. "type": "package",
  1298. "dependencies": {
  1299. "Microsoft.Extensions.Configuration": "2.2.0",
  1300. "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
  1301. "Newtonsoft.Json": "11.0.2"
  1302. },
  1303. "compile": {
  1304. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
  1305. "related": ".xml"
  1306. }
  1307. },
  1308. "runtime": {
  1309. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
  1310. "related": ".xml"
  1311. }
  1312. }
  1313. },
  1314. "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": {
  1315. "type": "package",
  1316. "dependencies": {
  1317. "Microsoft.Extensions.Configuration.Json": "2.2.0"
  1318. },
  1319. "compile": {
  1320. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  1321. "related": ".xml"
  1322. }
  1323. },
  1324. "runtime": {
  1325. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  1326. "related": ".xml"
  1327. }
  1328. },
  1329. "build": {
  1330. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
  1331. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  1332. }
  1333. },
  1334. "Microsoft.Extensions.DependencyInjection/3.1.2": {
  1335. "type": "package",
  1336. "dependencies": {
  1337. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2"
  1338. },
  1339. "compile": {
  1340. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
  1341. "related": ".xml"
  1342. }
  1343. },
  1344. "runtime": {
  1345. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
  1346. "related": ".xml"
  1347. }
  1348. }
  1349. },
  1350. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
  1351. "type": "package",
  1352. "compile": {
  1353. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1354. "related": ".xml"
  1355. }
  1356. },
  1357. "runtime": {
  1358. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1359. "related": ".xml"
  1360. }
  1361. }
  1362. },
  1363. "Microsoft.Extensions.DependencyModel/2.1.0": {
  1364. "type": "package",
  1365. "dependencies": {
  1366. "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
  1367. "Newtonsoft.Json": "9.0.1",
  1368. "System.Diagnostics.Debug": "4.0.11",
  1369. "System.Dynamic.Runtime": "4.0.11",
  1370. "System.Linq": "4.1.0"
  1371. },
  1372. "compile": {
  1373. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  1374. },
  1375. "runtime": {
  1376. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  1377. }
  1378. },
  1379. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
  1380. "type": "package",
  1381. "dependencies": {
  1382. "Microsoft.Extensions.Primitives": "2.2.0"
  1383. },
  1384. "compile": {
  1385. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1386. "related": ".xml"
  1387. }
  1388. },
  1389. "runtime": {
  1390. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1391. "related": ".xml"
  1392. }
  1393. }
  1394. },
  1395. "Microsoft.Extensions.FileProviders.Composite/2.2.0": {
  1396. "type": "package",
  1397. "dependencies": {
  1398. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0"
  1399. },
  1400. "compile": {
  1401. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1402. "related": ".xml"
  1403. }
  1404. },
  1405. "runtime": {
  1406. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1407. "related": ".xml"
  1408. }
  1409. }
  1410. },
  1411. "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
  1412. "type": "package",
  1413. "dependencies": {
  1414. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  1415. "Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
  1416. },
  1417. "compile": {
  1418. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1419. "related": ".xml"
  1420. }
  1421. },
  1422. "runtime": {
  1423. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1424. "related": ".xml"
  1425. }
  1426. }
  1427. },
  1428. "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
  1429. "type": "package",
  1430. "compile": {
  1431. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1432. "related": ".xml"
  1433. }
  1434. },
  1435. "runtime": {
  1436. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1437. "related": ".xml"
  1438. }
  1439. }
  1440. },
  1441. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  1442. "type": "package",
  1443. "dependencies": {
  1444. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  1445. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  1446. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  1447. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  1448. },
  1449. "compile": {
  1450. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1451. "related": ".xml"
  1452. }
  1453. },
  1454. "runtime": {
  1455. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1456. "related": ".xml"
  1457. }
  1458. }
  1459. },
  1460. "Microsoft.Extensions.Localization/2.2.0": {
  1461. "type": "package",
  1462. "dependencies": {
  1463. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  1464. "Microsoft.Extensions.Localization.Abstractions": "2.2.0",
  1465. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  1466. "Microsoft.Extensions.Options": "2.2.0"
  1467. },
  1468. "compile": {
  1469. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
  1470. "related": ".xml"
  1471. }
  1472. },
  1473. "runtime": {
  1474. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
  1475. "related": ".xml"
  1476. }
  1477. }
  1478. },
  1479. "Microsoft.Extensions.Localization.Abstractions/2.2.0": {
  1480. "type": "package",
  1481. "compile": {
  1482. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1483. "related": ".xml"
  1484. }
  1485. },
  1486. "runtime": {
  1487. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1488. "related": ".xml"
  1489. }
  1490. }
  1491. },
  1492. "Microsoft.Extensions.Logging/3.1.2": {
  1493. "type": "package",
  1494. "dependencies": {
  1495. "Microsoft.Extensions.Configuration.Binder": "3.1.2",
  1496. "Microsoft.Extensions.DependencyInjection": "3.1.2",
  1497. "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
  1498. "Microsoft.Extensions.Options": "3.1.2"
  1499. },
  1500. "compile": {
  1501. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
  1502. "related": ".xml"
  1503. }
  1504. },
  1505. "runtime": {
  1506. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
  1507. "related": ".xml"
  1508. }
  1509. }
  1510. },
  1511. "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
  1512. "type": "package",
  1513. "compile": {
  1514. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1515. "related": ".xml"
  1516. }
  1517. },
  1518. "runtime": {
  1519. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1520. "related": ".xml"
  1521. }
  1522. }
  1523. },
  1524. "Microsoft.Extensions.Logging.Configuration/2.2.0": {
  1525. "type": "package",
  1526. "dependencies": {
  1527. "Microsoft.Extensions.Logging": "2.2.0",
  1528. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.2.0"
  1529. },
  1530. "compile": {
  1531. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  1532. "related": ".xml"
  1533. }
  1534. },
  1535. "runtime": {
  1536. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  1537. "related": ".xml"
  1538. }
  1539. }
  1540. },
  1541. "Microsoft.Extensions.Logging.Console/2.2.0": {
  1542. "type": "package",
  1543. "dependencies": {
  1544. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  1545. "Microsoft.Extensions.Logging": "2.2.0",
  1546. "Microsoft.Extensions.Logging.Configuration": "2.2.0"
  1547. },
  1548. "compile": {
  1549. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  1550. "related": ".xml"
  1551. }
  1552. },
  1553. "runtime": {
  1554. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  1555. "related": ".xml"
  1556. }
  1557. }
  1558. },
  1559. "Microsoft.Extensions.Logging.Debug/2.2.0": {
  1560. "type": "package",
  1561. "dependencies": {
  1562. "Microsoft.Extensions.Logging": "2.2.0"
  1563. },
  1564. "compile": {
  1565. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  1566. "related": ".xml"
  1567. }
  1568. },
  1569. "runtime": {
  1570. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  1571. "related": ".xml"
  1572. }
  1573. }
  1574. },
  1575. "Microsoft.Extensions.Logging.EventSource/2.2.0": {
  1576. "type": "package",
  1577. "dependencies": {
  1578. "Microsoft.Extensions.Logging": "2.2.0",
  1579. "Newtonsoft.Json": "11.0.2"
  1580. },
  1581. "compile": {
  1582. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  1583. "related": ".xml"
  1584. }
  1585. },
  1586. "runtime": {
  1587. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  1588. "related": ".xml"
  1589. }
  1590. }
  1591. },
  1592. "Microsoft.Extensions.ObjectPool/2.2.0": {
  1593. "type": "package",
  1594. "compile": {
  1595. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1596. "related": ".xml"
  1597. }
  1598. },
  1599. "runtime": {
  1600. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1601. "related": ".xml"
  1602. }
  1603. }
  1604. },
  1605. "Microsoft.Extensions.Options/3.1.2": {
  1606. "type": "package",
  1607. "dependencies": {
  1608. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  1609. "Microsoft.Extensions.Primitives": "3.1.2"
  1610. },
  1611. "compile": {
  1612. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
  1613. "related": ".xml"
  1614. }
  1615. },
  1616. "runtime": {
  1617. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
  1618. "related": ".xml"
  1619. }
  1620. }
  1621. },
  1622. "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": {
  1623. "type": "package",
  1624. "dependencies": {
  1625. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  1626. "Microsoft.Extensions.Configuration.Binder": "2.2.0",
  1627. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  1628. "Microsoft.Extensions.Options": "2.2.0"
  1629. },
  1630. "compile": {
  1631. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1632. "related": ".xml"
  1633. }
  1634. },
  1635. "runtime": {
  1636. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1637. "related": ".xml"
  1638. }
  1639. }
  1640. },
  1641. "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
  1642. "type": "package",
  1643. "dependencies": {
  1644. "NETStandard.Library": "1.6.1",
  1645. "System.Reflection.TypeExtensions": "4.3.0"
  1646. },
  1647. "compile": {
  1648. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {
  1649. "related": ".xml"
  1650. }
  1651. },
  1652. "runtime": {
  1653. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {
  1654. "related": ".xml"
  1655. }
  1656. }
  1657. },
  1658. "Microsoft.Extensions.Primitives/3.1.2": {
  1659. "type": "package",
  1660. "compile": {
  1661. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
  1662. "related": ".xml"
  1663. }
  1664. },
  1665. "runtime": {
  1666. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
  1667. "related": ".xml"
  1668. }
  1669. }
  1670. },
  1671. "Microsoft.Extensions.WebEncoders/2.2.0": {
  1672. "type": "package",
  1673. "dependencies": {
  1674. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  1675. "Microsoft.Extensions.Options": "2.2.0",
  1676. "System.Text.Encodings.Web": "4.5.0"
  1677. },
  1678. "compile": {
  1679. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
  1680. "related": ".xml"
  1681. }
  1682. },
  1683. "runtime": {
  1684. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
  1685. "related": ".xml"
  1686. }
  1687. }
  1688. },
  1689. "Microsoft.Net.Http.Headers/2.2.0": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "Microsoft.Extensions.Primitives": "2.2.0",
  1693. "System.Buffers": "4.5.0"
  1694. },
  1695. "compile": {
  1696. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1697. "related": ".xml"
  1698. }
  1699. },
  1700. "runtime": {
  1701. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1702. "related": ".xml"
  1703. }
  1704. }
  1705. },
  1706. "Microsoft.NETCore.Platforms/5.0.0": {
  1707. "type": "package",
  1708. "compile": {
  1709. "lib/netstandard1.0/_._": {}
  1710. },
  1711. "runtime": {
  1712. "lib/netstandard1.0/_._": {}
  1713. }
  1714. },
  1715. "Microsoft.NETCore.Targets/1.1.0": {
  1716. "type": "package",
  1717. "compile": {
  1718. "lib/netstandard1.0/_._": {}
  1719. },
  1720. "runtime": {
  1721. "lib/netstandard1.0/_._": {}
  1722. }
  1723. },
  1724. "Microsoft.Win32.Primitives/4.3.0": {
  1725. "type": "package",
  1726. "dependencies": {
  1727. "Microsoft.NETCore.Platforms": "1.1.0",
  1728. "Microsoft.NETCore.Targets": "1.1.0",
  1729. "System.Runtime": "4.3.0"
  1730. },
  1731. "compile": {
  1732. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1733. "related": ".xml"
  1734. }
  1735. }
  1736. },
  1737. "Microsoft.Win32.Registry/4.5.0": {
  1738. "type": "package",
  1739. "dependencies": {
  1740. "System.Security.AccessControl": "4.5.0",
  1741. "System.Security.Principal.Windows": "4.5.0"
  1742. },
  1743. "compile": {
  1744. "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1745. "related": ".xml"
  1746. }
  1747. },
  1748. "runtime": {
  1749. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  1750. },
  1751. "runtimeTargets": {
  1752. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1753. "assetType": "runtime",
  1754. "rid": "unix"
  1755. },
  1756. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1757. "assetType": "runtime",
  1758. "rid": "win"
  1759. }
  1760. }
  1761. },
  1762. "Microsoft.Win32.SystemEvents/5.0.0": {
  1763. "type": "package",
  1764. "dependencies": {
  1765. "Microsoft.NETCore.Platforms": "5.0.0"
  1766. },
  1767. "compile": {
  1768. "ref/netstandard2.0/_._": {
  1769. "related": ".xml"
  1770. }
  1771. },
  1772. "runtime": {
  1773. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  1774. "related": ".xml"
  1775. }
  1776. },
  1777. "runtimeTargets": {
  1778. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1779. "assetType": "runtime",
  1780. "rid": "win"
  1781. }
  1782. }
  1783. },
  1784. "NETStandard.Library/1.6.1": {
  1785. "type": "package",
  1786. "dependencies": {
  1787. "Microsoft.NETCore.Platforms": "1.1.0",
  1788. "Microsoft.Win32.Primitives": "4.3.0",
  1789. "System.AppContext": "4.3.0",
  1790. "System.Collections": "4.3.0",
  1791. "System.Collections.Concurrent": "4.3.0",
  1792. "System.Console": "4.3.0",
  1793. "System.Diagnostics.Debug": "4.3.0",
  1794. "System.Diagnostics.Tools": "4.3.0",
  1795. "System.Diagnostics.Tracing": "4.3.0",
  1796. "System.Globalization": "4.3.0",
  1797. "System.Globalization.Calendars": "4.3.0",
  1798. "System.IO": "4.3.0",
  1799. "System.IO.Compression": "4.3.0",
  1800. "System.IO.Compression.ZipFile": "4.3.0",
  1801. "System.IO.FileSystem": "4.3.0",
  1802. "System.IO.FileSystem.Primitives": "4.3.0",
  1803. "System.Linq": "4.3.0",
  1804. "System.Linq.Expressions": "4.3.0",
  1805. "System.Net.Http": "4.3.0",
  1806. "System.Net.Primitives": "4.3.0",
  1807. "System.Net.Sockets": "4.3.0",
  1808. "System.ObjectModel": "4.3.0",
  1809. "System.Reflection": "4.3.0",
  1810. "System.Reflection.Extensions": "4.3.0",
  1811. "System.Reflection.Primitives": "4.3.0",
  1812. "System.Resources.ResourceManager": "4.3.0",
  1813. "System.Runtime": "4.3.0",
  1814. "System.Runtime.Extensions": "4.3.0",
  1815. "System.Runtime.Handles": "4.3.0",
  1816. "System.Runtime.InteropServices": "4.3.0",
  1817. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1818. "System.Runtime.Numerics": "4.3.0",
  1819. "System.Security.Cryptography.Algorithms": "4.3.0",
  1820. "System.Security.Cryptography.Encoding": "4.3.0",
  1821. "System.Security.Cryptography.Primitives": "4.3.0",
  1822. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1823. "System.Text.Encoding": "4.3.0",
  1824. "System.Text.Encoding.Extensions": "4.3.0",
  1825. "System.Text.RegularExpressions": "4.3.0",
  1826. "System.Threading": "4.3.0",
  1827. "System.Threading.Tasks": "4.3.0",
  1828. "System.Threading.Timer": "4.3.0",
  1829. "System.Xml.ReaderWriter": "4.3.0",
  1830. "System.Xml.XDocument": "4.3.0"
  1831. }
  1832. },
  1833. "Newtonsoft.Json/11.0.2": {
  1834. "type": "package",
  1835. "compile": {
  1836. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1837. "related": ".xml"
  1838. }
  1839. },
  1840. "runtime": {
  1841. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1842. "related": ".xml"
  1843. }
  1844. }
  1845. },
  1846. "Newtonsoft.Json.Bson/1.0.1": {
  1847. "type": "package",
  1848. "dependencies": {
  1849. "NETStandard.Library": "1.6.1",
  1850. "Newtonsoft.Json": "10.0.1"
  1851. },
  1852. "compile": {
  1853. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  1854. "related": ".xml"
  1855. }
  1856. },
  1857. "runtime": {
  1858. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  1859. "related": ".xml"
  1860. }
  1861. }
  1862. },
  1863. "Polly/7.2.0": {
  1864. "type": "package",
  1865. "compile": {
  1866. "lib/netstandard2.0/Polly.dll": {
  1867. "related": ".pdb;.xml"
  1868. }
  1869. },
  1870. "runtime": {
  1871. "lib/netstandard2.0/Polly.dll": {
  1872. "related": ".pdb;.xml"
  1873. }
  1874. }
  1875. },
  1876. "QRCoder/1.4.3": {
  1877. "type": "package",
  1878. "dependencies": {
  1879. "System.Drawing.Common": "5.0.3",
  1880. "System.Text.Encoding.CodePages": "5.0.0"
  1881. },
  1882. "compile": {
  1883. "lib/netstandard2.0/QRCoder.dll": {}
  1884. },
  1885. "runtime": {
  1886. "lib/netstandard2.0/QRCoder.dll": {}
  1887. }
  1888. },
  1889. "RabbitMQ.Client/5.1.2": {
  1890. "type": "package",
  1891. "compile": {
  1892. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1893. "related": ".xml"
  1894. }
  1895. },
  1896. "runtime": {
  1897. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1898. "related": ".xml"
  1899. }
  1900. }
  1901. },
  1902. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1903. "type": "package",
  1904. "runtimeTargets": {
  1905. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1906. "assetType": "native",
  1907. "rid": "debian.8-x64"
  1908. }
  1909. }
  1910. },
  1911. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1912. "type": "package",
  1913. "runtimeTargets": {
  1914. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1915. "assetType": "native",
  1916. "rid": "fedora.23-x64"
  1917. }
  1918. }
  1919. },
  1920. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1921. "type": "package",
  1922. "runtimeTargets": {
  1923. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1924. "assetType": "native",
  1925. "rid": "fedora.24-x64"
  1926. }
  1927. }
  1928. },
  1929. "runtime.native.System/4.3.0": {
  1930. "type": "package",
  1931. "dependencies": {
  1932. "Microsoft.NETCore.Platforms": "1.1.0",
  1933. "Microsoft.NETCore.Targets": "1.1.0"
  1934. },
  1935. "compile": {
  1936. "lib/netstandard1.0/_._": {}
  1937. },
  1938. "runtime": {
  1939. "lib/netstandard1.0/_._": {}
  1940. }
  1941. },
  1942. "runtime.native.System.IO.Compression/4.3.0": {
  1943. "type": "package",
  1944. "dependencies": {
  1945. "Microsoft.NETCore.Platforms": "1.1.0",
  1946. "Microsoft.NETCore.Targets": "1.1.0"
  1947. },
  1948. "compile": {
  1949. "lib/netstandard1.0/_._": {}
  1950. },
  1951. "runtime": {
  1952. "lib/netstandard1.0/_._": {}
  1953. }
  1954. },
  1955. "runtime.native.System.Net.Http/4.3.0": {
  1956. "type": "package",
  1957. "dependencies": {
  1958. "Microsoft.NETCore.Platforms": "1.1.0",
  1959. "Microsoft.NETCore.Targets": "1.1.0"
  1960. },
  1961. "compile": {
  1962. "lib/netstandard1.0/_._": {}
  1963. },
  1964. "runtime": {
  1965. "lib/netstandard1.0/_._": {}
  1966. }
  1967. },
  1968. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1969. "type": "package",
  1970. "dependencies": {
  1971. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1972. },
  1973. "compile": {
  1974. "lib/netstandard1.0/_._": {}
  1975. },
  1976. "runtime": {
  1977. "lib/netstandard1.0/_._": {}
  1978. }
  1979. },
  1980. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1981. "type": "package",
  1982. "dependencies": {
  1983. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1984. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1985. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1986. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1987. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1988. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1989. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1990. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1991. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1992. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1993. },
  1994. "compile": {
  1995. "lib/netstandard1.0/_._": {}
  1996. },
  1997. "runtime": {
  1998. "lib/netstandard1.0/_._": {}
  1999. }
  2000. },
  2001. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2002. "type": "package",
  2003. "runtimeTargets": {
  2004. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2005. "assetType": "native",
  2006. "rid": "opensuse.13.2-x64"
  2007. }
  2008. }
  2009. },
  2010. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2011. "type": "package",
  2012. "runtimeTargets": {
  2013. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2014. "assetType": "native",
  2015. "rid": "opensuse.42.1-x64"
  2016. }
  2017. }
  2018. },
  2019. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2020. "type": "package",
  2021. "runtimeTargets": {
  2022. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  2023. "assetType": "native",
  2024. "rid": "osx.10.10-x64"
  2025. }
  2026. }
  2027. },
  2028. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2029. "type": "package",
  2030. "runtimeTargets": {
  2031. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  2032. "assetType": "native",
  2033. "rid": "osx.10.10-x64"
  2034. }
  2035. }
  2036. },
  2037. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2038. "type": "package",
  2039. "runtimeTargets": {
  2040. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2041. "assetType": "native",
  2042. "rid": "rhel.7-x64"
  2043. }
  2044. }
  2045. },
  2046. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2047. "type": "package",
  2048. "runtimeTargets": {
  2049. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2050. "assetType": "native",
  2051. "rid": "ubuntu.14.04-x64"
  2052. }
  2053. }
  2054. },
  2055. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2056. "type": "package",
  2057. "runtimeTargets": {
  2058. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2059. "assetType": "native",
  2060. "rid": "ubuntu.16.04-x64"
  2061. }
  2062. }
  2063. },
  2064. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2065. "type": "package",
  2066. "runtimeTargets": {
  2067. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2068. "assetType": "native",
  2069. "rid": "ubuntu.16.10-x64"
  2070. }
  2071. }
  2072. },
  2073. "Swifter.Core/1.2.9.6": {
  2074. "type": "package",
  2075. "dependencies": {
  2076. "Swifter.Unsafe": "1.0.9"
  2077. },
  2078. "compile": {
  2079. "lib/netcoreapp3.0/Swifter.Core.dll": {
  2080. "related": ".xml"
  2081. }
  2082. },
  2083. "runtime": {
  2084. "lib/netcoreapp3.0/Swifter.Core.dll": {
  2085. "related": ".xml"
  2086. }
  2087. }
  2088. },
  2089. "Swifter.Json/1.2.9.6": {
  2090. "type": "package",
  2091. "dependencies": {
  2092. "Swifter.Core": "1.2.9.6"
  2093. },
  2094. "compile": {
  2095. "lib/netcoreapp3.0/Swifter.Json.dll": {
  2096. "related": ".xml"
  2097. }
  2098. },
  2099. "runtime": {
  2100. "lib/netcoreapp3.0/Swifter.Json.dll": {
  2101. "related": ".xml"
  2102. }
  2103. }
  2104. },
  2105. "Swifter.Unsafe/1.0.9": {
  2106. "type": "package",
  2107. "compile": {
  2108. "lib/netcoreapp2.0/Swifter.Unsafe.dll": {}
  2109. },
  2110. "runtime": {
  2111. "lib/netcoreapp2.0/Swifter.Unsafe.dll": {}
  2112. }
  2113. },
  2114. "System.AppContext/4.3.0": {
  2115. "type": "package",
  2116. "dependencies": {
  2117. "System.Runtime": "4.3.0"
  2118. },
  2119. "compile": {
  2120. "ref/netstandard1.6/System.AppContext.dll": {
  2121. "related": ".xml"
  2122. }
  2123. },
  2124. "runtime": {
  2125. "lib/netstandard1.6/System.AppContext.dll": {}
  2126. }
  2127. },
  2128. "System.Buffers/4.5.0": {
  2129. "type": "package",
  2130. "compile": {
  2131. "ref/netcoreapp2.0/_._": {}
  2132. },
  2133. "runtime": {
  2134. "lib/netcoreapp2.0/_._": {}
  2135. }
  2136. },
  2137. "System.Collections/4.3.0": {
  2138. "type": "package",
  2139. "dependencies": {
  2140. "Microsoft.NETCore.Platforms": "1.1.0",
  2141. "Microsoft.NETCore.Targets": "1.1.0",
  2142. "System.Runtime": "4.3.0"
  2143. },
  2144. "compile": {
  2145. "ref/netstandard1.3/System.Collections.dll": {
  2146. "related": ".xml"
  2147. }
  2148. }
  2149. },
  2150. "System.Collections.Concurrent/4.3.0": {
  2151. "type": "package",
  2152. "dependencies": {
  2153. "System.Collections": "4.3.0",
  2154. "System.Diagnostics.Debug": "4.3.0",
  2155. "System.Diagnostics.Tracing": "4.3.0",
  2156. "System.Globalization": "4.3.0",
  2157. "System.Reflection": "4.3.0",
  2158. "System.Resources.ResourceManager": "4.3.0",
  2159. "System.Runtime": "4.3.0",
  2160. "System.Runtime.Extensions": "4.3.0",
  2161. "System.Threading": "4.3.0",
  2162. "System.Threading.Tasks": "4.3.0"
  2163. },
  2164. "compile": {
  2165. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  2166. "related": ".xml"
  2167. }
  2168. },
  2169. "runtime": {
  2170. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  2171. }
  2172. },
  2173. "System.Collections.Immutable/1.3.1": {
  2174. "type": "package",
  2175. "dependencies": {
  2176. "System.Collections": "4.3.0",
  2177. "System.Diagnostics.Debug": "4.3.0",
  2178. "System.Globalization": "4.3.0",
  2179. "System.Linq": "4.3.0",
  2180. "System.Resources.ResourceManager": "4.3.0",
  2181. "System.Runtime": "4.3.0",
  2182. "System.Runtime.Extensions": "4.3.0",
  2183. "System.Threading": "4.3.0"
  2184. },
  2185. "compile": {
  2186. "lib/netstandard1.0/System.Collections.Immutable.dll": {
  2187. "related": ".xml"
  2188. }
  2189. },
  2190. "runtime": {
  2191. "lib/netstandard1.0/System.Collections.Immutable.dll": {
  2192. "related": ".xml"
  2193. }
  2194. }
  2195. },
  2196. "System.ComponentModel.Annotations/4.5.0": {
  2197. "type": "package",
  2198. "compile": {
  2199. "ref/netcoreapp2.0/_._": {}
  2200. },
  2201. "runtime": {
  2202. "lib/netcoreapp2.0/_._": {}
  2203. }
  2204. },
  2205. "System.Console/4.3.0": {
  2206. "type": "package",
  2207. "dependencies": {
  2208. "Microsoft.NETCore.Platforms": "1.1.0",
  2209. "Microsoft.NETCore.Targets": "1.1.0",
  2210. "System.IO": "4.3.0",
  2211. "System.Runtime": "4.3.0",
  2212. "System.Text.Encoding": "4.3.0"
  2213. },
  2214. "compile": {
  2215. "ref/netstandard1.3/System.Console.dll": {
  2216. "related": ".xml"
  2217. }
  2218. }
  2219. },
  2220. "System.Diagnostics.Debug/4.3.0": {
  2221. "type": "package",
  2222. "dependencies": {
  2223. "Microsoft.NETCore.Platforms": "1.1.0",
  2224. "Microsoft.NETCore.Targets": "1.1.0",
  2225. "System.Runtime": "4.3.0"
  2226. },
  2227. "compile": {
  2228. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  2229. "related": ".xml"
  2230. }
  2231. }
  2232. },
  2233. "System.Diagnostics.DiagnosticSource/4.5.0": {
  2234. "type": "package",
  2235. "compile": {
  2236. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  2237. "related": ".xml"
  2238. }
  2239. },
  2240. "runtime": {
  2241. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  2242. "related": ".xml"
  2243. }
  2244. }
  2245. },
  2246. "System.Diagnostics.FileVersionInfo/4.3.0": {
  2247. "type": "package",
  2248. "dependencies": {
  2249. "Microsoft.NETCore.Platforms": "1.1.0",
  2250. "System.Globalization": "4.3.0",
  2251. "System.IO": "4.3.0",
  2252. "System.IO.FileSystem": "4.3.0",
  2253. "System.IO.FileSystem.Primitives": "4.3.0",
  2254. "System.Reflection.Metadata": "1.4.1",
  2255. "System.Runtime": "4.3.0",
  2256. "System.Runtime.Extensions": "4.3.0",
  2257. "System.Runtime.InteropServices": "4.3.0"
  2258. },
  2259. "compile": {
  2260. "ref/netstandard1.3/_._": {
  2261. "related": ".xml"
  2262. }
  2263. },
  2264. "runtimeTargets": {
  2265. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  2266. "assetType": "runtime",
  2267. "rid": "unix"
  2268. },
  2269. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  2270. "assetType": "runtime",
  2271. "rid": "win"
  2272. }
  2273. }
  2274. },
  2275. "System.Diagnostics.StackTrace/4.3.0": {
  2276. "type": "package",
  2277. "dependencies": {
  2278. "System.IO.FileSystem": "4.3.0",
  2279. "System.Reflection": "4.3.0",
  2280. "System.Reflection.Metadata": "1.4.1",
  2281. "System.Runtime": "4.3.0"
  2282. },
  2283. "compile": {
  2284. "ref/netstandard1.3/_._": {
  2285. "related": ".xml"
  2286. }
  2287. },
  2288. "runtime": {
  2289. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
  2290. }
  2291. },
  2292. "System.Diagnostics.Tools/4.3.0": {
  2293. "type": "package",
  2294. "dependencies": {
  2295. "Microsoft.NETCore.Platforms": "1.1.0",
  2296. "Microsoft.NETCore.Targets": "1.1.0",
  2297. "System.Runtime": "4.3.0"
  2298. },
  2299. "compile": {
  2300. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2301. "related": ".xml"
  2302. }
  2303. }
  2304. },
  2305. "System.Diagnostics.Tracing/4.3.0": {
  2306. "type": "package",
  2307. "dependencies": {
  2308. "Microsoft.NETCore.Platforms": "1.1.0",
  2309. "Microsoft.NETCore.Targets": "1.1.0",
  2310. "System.Runtime": "4.3.0"
  2311. },
  2312. "compile": {
  2313. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2314. "related": ".xml"
  2315. }
  2316. }
  2317. },
  2318. "System.Drawing.Common/5.0.3": {
  2319. "type": "package",
  2320. "dependencies": {
  2321. "Microsoft.Win32.SystemEvents": "5.0.0"
  2322. },
  2323. "compile": {
  2324. "ref/netcoreapp3.0/System.Drawing.Common.dll": {
  2325. "related": ".xml"
  2326. }
  2327. },
  2328. "runtime": {
  2329. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2330. "related": ".xml"
  2331. }
  2332. },
  2333. "runtimeTargets": {
  2334. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2335. "assetType": "runtime",
  2336. "rid": "unix"
  2337. },
  2338. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2339. "assetType": "runtime",
  2340. "rid": "win"
  2341. }
  2342. }
  2343. },
  2344. "System.Dynamic.Runtime/4.3.0": {
  2345. "type": "package",
  2346. "dependencies": {
  2347. "System.Collections": "4.3.0",
  2348. "System.Diagnostics.Debug": "4.3.0",
  2349. "System.Linq": "4.3.0",
  2350. "System.Linq.Expressions": "4.3.0",
  2351. "System.ObjectModel": "4.3.0",
  2352. "System.Reflection": "4.3.0",
  2353. "System.Reflection.Emit": "4.3.0",
  2354. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2355. "System.Reflection.Primitives": "4.3.0",
  2356. "System.Reflection.TypeExtensions": "4.3.0",
  2357. "System.Resources.ResourceManager": "4.3.0",
  2358. "System.Runtime": "4.3.0",
  2359. "System.Runtime.Extensions": "4.3.0",
  2360. "System.Threading": "4.3.0"
  2361. },
  2362. "compile": {
  2363. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2364. "related": ".xml"
  2365. }
  2366. },
  2367. "runtime": {
  2368. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2369. }
  2370. },
  2371. "System.Globalization/4.3.0": {
  2372. "type": "package",
  2373. "dependencies": {
  2374. "Microsoft.NETCore.Platforms": "1.1.0",
  2375. "Microsoft.NETCore.Targets": "1.1.0",
  2376. "System.Runtime": "4.3.0"
  2377. },
  2378. "compile": {
  2379. "ref/netstandard1.3/System.Globalization.dll": {
  2380. "related": ".xml"
  2381. }
  2382. }
  2383. },
  2384. "System.Globalization.Calendars/4.3.0": {
  2385. "type": "package",
  2386. "dependencies": {
  2387. "Microsoft.NETCore.Platforms": "1.1.0",
  2388. "Microsoft.NETCore.Targets": "1.1.0",
  2389. "System.Globalization": "4.3.0",
  2390. "System.Runtime": "4.3.0"
  2391. },
  2392. "compile": {
  2393. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2394. "related": ".xml"
  2395. }
  2396. }
  2397. },
  2398. "System.Globalization.Extensions/4.3.0": {
  2399. "type": "package",
  2400. "dependencies": {
  2401. "Microsoft.NETCore.Platforms": "1.1.0",
  2402. "System.Globalization": "4.3.0",
  2403. "System.Resources.ResourceManager": "4.3.0",
  2404. "System.Runtime": "4.3.0",
  2405. "System.Runtime.Extensions": "4.3.0",
  2406. "System.Runtime.InteropServices": "4.3.0"
  2407. },
  2408. "compile": {
  2409. "ref/netstandard1.3/_._": {
  2410. "related": ".xml"
  2411. }
  2412. },
  2413. "runtimeTargets": {
  2414. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2415. "assetType": "runtime",
  2416. "rid": "unix"
  2417. },
  2418. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2419. "assetType": "runtime",
  2420. "rid": "win"
  2421. }
  2422. }
  2423. },
  2424. "System.IO/4.3.0": {
  2425. "type": "package",
  2426. "dependencies": {
  2427. "Microsoft.NETCore.Platforms": "1.1.0",
  2428. "Microsoft.NETCore.Targets": "1.1.0",
  2429. "System.Runtime": "4.3.0",
  2430. "System.Text.Encoding": "4.3.0",
  2431. "System.Threading.Tasks": "4.3.0"
  2432. },
  2433. "compile": {
  2434. "ref/netstandard1.5/System.IO.dll": {
  2435. "related": ".xml"
  2436. }
  2437. }
  2438. },
  2439. "System.IO.Compression/4.3.0": {
  2440. "type": "package",
  2441. "dependencies": {
  2442. "Microsoft.NETCore.Platforms": "1.1.0",
  2443. "System.Buffers": "4.3.0",
  2444. "System.Collections": "4.3.0",
  2445. "System.Diagnostics.Debug": "4.3.0",
  2446. "System.IO": "4.3.0",
  2447. "System.Resources.ResourceManager": "4.3.0",
  2448. "System.Runtime": "4.3.0",
  2449. "System.Runtime.Extensions": "4.3.0",
  2450. "System.Runtime.Handles": "4.3.0",
  2451. "System.Runtime.InteropServices": "4.3.0",
  2452. "System.Text.Encoding": "4.3.0",
  2453. "System.Threading": "4.3.0",
  2454. "System.Threading.Tasks": "4.3.0",
  2455. "runtime.native.System": "4.3.0",
  2456. "runtime.native.System.IO.Compression": "4.3.0"
  2457. },
  2458. "compile": {
  2459. "ref/netstandard1.3/System.IO.Compression.dll": {
  2460. "related": ".xml"
  2461. }
  2462. },
  2463. "runtimeTargets": {
  2464. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2465. "assetType": "runtime",
  2466. "rid": "unix"
  2467. },
  2468. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2469. "assetType": "runtime",
  2470. "rid": "win"
  2471. }
  2472. }
  2473. },
  2474. "System.IO.Compression.ZipFile/4.3.0": {
  2475. "type": "package",
  2476. "dependencies": {
  2477. "System.Buffers": "4.3.0",
  2478. "System.IO": "4.3.0",
  2479. "System.IO.Compression": "4.3.0",
  2480. "System.IO.FileSystem": "4.3.0",
  2481. "System.IO.FileSystem.Primitives": "4.3.0",
  2482. "System.Resources.ResourceManager": "4.3.0",
  2483. "System.Runtime": "4.3.0",
  2484. "System.Runtime.Extensions": "4.3.0",
  2485. "System.Text.Encoding": "4.3.0"
  2486. },
  2487. "compile": {
  2488. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2489. "related": ".xml"
  2490. }
  2491. },
  2492. "runtime": {
  2493. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2494. }
  2495. },
  2496. "System.IO.FileSystem/4.3.0": {
  2497. "type": "package",
  2498. "dependencies": {
  2499. "Microsoft.NETCore.Platforms": "1.1.0",
  2500. "Microsoft.NETCore.Targets": "1.1.0",
  2501. "System.IO": "4.3.0",
  2502. "System.IO.FileSystem.Primitives": "4.3.0",
  2503. "System.Runtime": "4.3.0",
  2504. "System.Runtime.Handles": "4.3.0",
  2505. "System.Text.Encoding": "4.3.0",
  2506. "System.Threading.Tasks": "4.3.0"
  2507. },
  2508. "compile": {
  2509. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2510. "related": ".xml"
  2511. }
  2512. }
  2513. },
  2514. "System.IO.FileSystem.Primitives/4.3.0": {
  2515. "type": "package",
  2516. "dependencies": {
  2517. "System.Runtime": "4.3.0"
  2518. },
  2519. "compile": {
  2520. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2521. "related": ".xml"
  2522. }
  2523. },
  2524. "runtime": {
  2525. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2526. }
  2527. },
  2528. "System.IO.Pipelines/4.5.2": {
  2529. "type": "package",
  2530. "compile": {
  2531. "ref/netstandard1.3/System.IO.Pipelines.dll": {}
  2532. },
  2533. "runtime": {
  2534. "lib/netcoreapp2.1/System.IO.Pipelines.dll": {
  2535. "related": ".xml"
  2536. }
  2537. }
  2538. },
  2539. "System.Linq/4.3.0": {
  2540. "type": "package",
  2541. "dependencies": {
  2542. "System.Collections": "4.3.0",
  2543. "System.Diagnostics.Debug": "4.3.0",
  2544. "System.Resources.ResourceManager": "4.3.0",
  2545. "System.Runtime": "4.3.0",
  2546. "System.Runtime.Extensions": "4.3.0"
  2547. },
  2548. "compile": {
  2549. "ref/netstandard1.6/System.Linq.dll": {
  2550. "related": ".xml"
  2551. }
  2552. },
  2553. "runtime": {
  2554. "lib/netstandard1.6/System.Linq.dll": {}
  2555. }
  2556. },
  2557. "System.Linq.Expressions/4.3.0": {
  2558. "type": "package",
  2559. "dependencies": {
  2560. "System.Collections": "4.3.0",
  2561. "System.Diagnostics.Debug": "4.3.0",
  2562. "System.Globalization": "4.3.0",
  2563. "System.IO": "4.3.0",
  2564. "System.Linq": "4.3.0",
  2565. "System.ObjectModel": "4.3.0",
  2566. "System.Reflection": "4.3.0",
  2567. "System.Reflection.Emit": "4.3.0",
  2568. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2569. "System.Reflection.Emit.Lightweight": "4.3.0",
  2570. "System.Reflection.Extensions": "4.3.0",
  2571. "System.Reflection.Primitives": "4.3.0",
  2572. "System.Reflection.TypeExtensions": "4.3.0",
  2573. "System.Resources.ResourceManager": "4.3.0",
  2574. "System.Runtime": "4.3.0",
  2575. "System.Runtime.Extensions": "4.3.0",
  2576. "System.Threading": "4.3.0"
  2577. },
  2578. "compile": {
  2579. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2580. "related": ".xml"
  2581. }
  2582. },
  2583. "runtime": {
  2584. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2585. }
  2586. },
  2587. "System.Memory/4.5.1": {
  2588. "type": "package",
  2589. "compile": {
  2590. "ref/netcoreapp2.1/_._": {}
  2591. },
  2592. "runtime": {
  2593. "lib/netcoreapp2.1/_._": {}
  2594. }
  2595. },
  2596. "System.Net.Http/4.3.0": {
  2597. "type": "package",
  2598. "dependencies": {
  2599. "Microsoft.NETCore.Platforms": "1.1.0",
  2600. "System.Collections": "4.3.0",
  2601. "System.Diagnostics.Debug": "4.3.0",
  2602. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2603. "System.Diagnostics.Tracing": "4.3.0",
  2604. "System.Globalization": "4.3.0",
  2605. "System.Globalization.Extensions": "4.3.0",
  2606. "System.IO": "4.3.0",
  2607. "System.IO.FileSystem": "4.3.0",
  2608. "System.Net.Primitives": "4.3.0",
  2609. "System.Resources.ResourceManager": "4.3.0",
  2610. "System.Runtime": "4.3.0",
  2611. "System.Runtime.Extensions": "4.3.0",
  2612. "System.Runtime.Handles": "4.3.0",
  2613. "System.Runtime.InteropServices": "4.3.0",
  2614. "System.Security.Cryptography.Algorithms": "4.3.0",
  2615. "System.Security.Cryptography.Encoding": "4.3.0",
  2616. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2617. "System.Security.Cryptography.Primitives": "4.3.0",
  2618. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2619. "System.Text.Encoding": "4.3.0",
  2620. "System.Threading": "4.3.0",
  2621. "System.Threading.Tasks": "4.3.0",
  2622. "runtime.native.System": "4.3.0",
  2623. "runtime.native.System.Net.Http": "4.3.0",
  2624. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2625. },
  2626. "compile": {
  2627. "ref/netstandard1.3/System.Net.Http.dll": {
  2628. "related": ".xml"
  2629. }
  2630. },
  2631. "runtimeTargets": {
  2632. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2633. "assetType": "runtime",
  2634. "rid": "unix"
  2635. },
  2636. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2637. "assetType": "runtime",
  2638. "rid": "win"
  2639. }
  2640. }
  2641. },
  2642. "System.Net.Primitives/4.3.0": {
  2643. "type": "package",
  2644. "dependencies": {
  2645. "Microsoft.NETCore.Platforms": "1.1.0",
  2646. "Microsoft.NETCore.Targets": "1.1.0",
  2647. "System.Runtime": "4.3.0",
  2648. "System.Runtime.Handles": "4.3.0"
  2649. },
  2650. "compile": {
  2651. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2652. "related": ".xml"
  2653. }
  2654. }
  2655. },
  2656. "System.Net.Sockets/4.3.0": {
  2657. "type": "package",
  2658. "dependencies": {
  2659. "Microsoft.NETCore.Platforms": "1.1.0",
  2660. "Microsoft.NETCore.Targets": "1.1.0",
  2661. "System.IO": "4.3.0",
  2662. "System.Net.Primitives": "4.3.0",
  2663. "System.Runtime": "4.3.0",
  2664. "System.Threading.Tasks": "4.3.0"
  2665. },
  2666. "compile": {
  2667. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2668. "related": ".xml"
  2669. }
  2670. }
  2671. },
  2672. "System.Numerics.Vectors/4.5.0": {
  2673. "type": "package",
  2674. "compile": {
  2675. "ref/netcoreapp2.0/_._": {}
  2676. },
  2677. "runtime": {
  2678. "lib/netcoreapp2.0/_._": {}
  2679. }
  2680. },
  2681. "System.ObjectModel/4.3.0": {
  2682. "type": "package",
  2683. "dependencies": {
  2684. "System.Collections": "4.3.0",
  2685. "System.Diagnostics.Debug": "4.3.0",
  2686. "System.Resources.ResourceManager": "4.3.0",
  2687. "System.Runtime": "4.3.0",
  2688. "System.Threading": "4.3.0"
  2689. },
  2690. "compile": {
  2691. "ref/netstandard1.3/System.ObjectModel.dll": {
  2692. "related": ".xml"
  2693. }
  2694. },
  2695. "runtime": {
  2696. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2697. }
  2698. },
  2699. "System.Reflection/4.3.0": {
  2700. "type": "package",
  2701. "dependencies": {
  2702. "Microsoft.NETCore.Platforms": "1.1.0",
  2703. "Microsoft.NETCore.Targets": "1.1.0",
  2704. "System.IO": "4.3.0",
  2705. "System.Reflection.Primitives": "4.3.0",
  2706. "System.Runtime": "4.3.0"
  2707. },
  2708. "compile": {
  2709. "ref/netstandard1.5/System.Reflection.dll": {
  2710. "related": ".xml"
  2711. }
  2712. }
  2713. },
  2714. "System.Reflection.Emit/4.3.0": {
  2715. "type": "package",
  2716. "dependencies": {
  2717. "System.IO": "4.3.0",
  2718. "System.Reflection": "4.3.0",
  2719. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2720. "System.Reflection.Primitives": "4.3.0",
  2721. "System.Runtime": "4.3.0"
  2722. },
  2723. "compile": {
  2724. "ref/netstandard1.1/_._": {
  2725. "related": ".xml"
  2726. }
  2727. },
  2728. "runtime": {
  2729. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2730. }
  2731. },
  2732. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2733. "type": "package",
  2734. "dependencies": {
  2735. "System.Reflection": "4.3.0",
  2736. "System.Reflection.Primitives": "4.3.0",
  2737. "System.Runtime": "4.3.0"
  2738. },
  2739. "compile": {
  2740. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2741. "related": ".xml"
  2742. }
  2743. },
  2744. "runtime": {
  2745. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2746. }
  2747. },
  2748. "System.Reflection.Emit.Lightweight/4.3.0": {
  2749. "type": "package",
  2750. "dependencies": {
  2751. "System.Reflection": "4.3.0",
  2752. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2753. "System.Reflection.Primitives": "4.3.0",
  2754. "System.Runtime": "4.3.0"
  2755. },
  2756. "compile": {
  2757. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2758. "related": ".xml"
  2759. }
  2760. },
  2761. "runtime": {
  2762. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2763. }
  2764. },
  2765. "System.Reflection.Extensions/4.3.0": {
  2766. "type": "package",
  2767. "dependencies": {
  2768. "Microsoft.NETCore.Platforms": "1.1.0",
  2769. "Microsoft.NETCore.Targets": "1.1.0",
  2770. "System.Reflection": "4.3.0",
  2771. "System.Runtime": "4.3.0"
  2772. },
  2773. "compile": {
  2774. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2775. "related": ".xml"
  2776. }
  2777. }
  2778. },
  2779. "System.Reflection.Metadata/1.6.0": {
  2780. "type": "package",
  2781. "compile": {
  2782. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2783. "related": ".xml"
  2784. }
  2785. },
  2786. "runtime": {
  2787. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2788. "related": ".xml"
  2789. }
  2790. }
  2791. },
  2792. "System.Reflection.Primitives/4.3.0": {
  2793. "type": "package",
  2794. "dependencies": {
  2795. "Microsoft.NETCore.Platforms": "1.1.0",
  2796. "Microsoft.NETCore.Targets": "1.1.0",
  2797. "System.Runtime": "4.3.0"
  2798. },
  2799. "compile": {
  2800. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2801. "related": ".xml"
  2802. }
  2803. }
  2804. },
  2805. "System.Reflection.TypeExtensions/4.3.0": {
  2806. "type": "package",
  2807. "dependencies": {
  2808. "System.Reflection": "4.3.0",
  2809. "System.Runtime": "4.3.0"
  2810. },
  2811. "compile": {
  2812. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2813. "related": ".xml"
  2814. }
  2815. },
  2816. "runtime": {
  2817. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2818. }
  2819. },
  2820. "System.Resources.ResourceManager/4.3.0": {
  2821. "type": "package",
  2822. "dependencies": {
  2823. "Microsoft.NETCore.Platforms": "1.1.0",
  2824. "Microsoft.NETCore.Targets": "1.1.0",
  2825. "System.Globalization": "4.3.0",
  2826. "System.Reflection": "4.3.0",
  2827. "System.Runtime": "4.3.0"
  2828. },
  2829. "compile": {
  2830. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2831. "related": ".xml"
  2832. }
  2833. }
  2834. },
  2835. "System.Runtime/4.3.0": {
  2836. "type": "package",
  2837. "dependencies": {
  2838. "Microsoft.NETCore.Platforms": "1.1.0",
  2839. "Microsoft.NETCore.Targets": "1.1.0"
  2840. },
  2841. "compile": {
  2842. "ref/netstandard1.5/System.Runtime.dll": {
  2843. "related": ".xml"
  2844. }
  2845. }
  2846. },
  2847. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2848. "type": "package",
  2849. "compile": {
  2850. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2851. "related": ".xml"
  2852. }
  2853. },
  2854. "runtime": {
  2855. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2856. "related": ".xml"
  2857. }
  2858. }
  2859. },
  2860. "System.Runtime.Extensions/4.3.0": {
  2861. "type": "package",
  2862. "dependencies": {
  2863. "Microsoft.NETCore.Platforms": "1.1.0",
  2864. "Microsoft.NETCore.Targets": "1.1.0",
  2865. "System.Runtime": "4.3.0"
  2866. },
  2867. "compile": {
  2868. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2869. "related": ".xml"
  2870. }
  2871. }
  2872. },
  2873. "System.Runtime.Handles/4.3.0": {
  2874. "type": "package",
  2875. "dependencies": {
  2876. "Microsoft.NETCore.Platforms": "1.1.0",
  2877. "Microsoft.NETCore.Targets": "1.1.0",
  2878. "System.Runtime": "4.3.0"
  2879. },
  2880. "compile": {
  2881. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2882. "related": ".xml"
  2883. }
  2884. }
  2885. },
  2886. "System.Runtime.InteropServices/4.3.0": {
  2887. "type": "package",
  2888. "dependencies": {
  2889. "Microsoft.NETCore.Platforms": "1.1.0",
  2890. "Microsoft.NETCore.Targets": "1.1.0",
  2891. "System.Reflection": "4.3.0",
  2892. "System.Reflection.Primitives": "4.3.0",
  2893. "System.Runtime": "4.3.0",
  2894. "System.Runtime.Handles": "4.3.0"
  2895. },
  2896. "compile": {
  2897. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2898. }
  2899. },
  2900. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2901. "type": "package",
  2902. "dependencies": {
  2903. "System.Reflection": "4.3.0",
  2904. "System.Reflection.Extensions": "4.3.0",
  2905. "System.Resources.ResourceManager": "4.3.0",
  2906. "System.Runtime": "4.3.0",
  2907. "System.Runtime.InteropServices": "4.3.0",
  2908. "System.Threading": "4.3.0",
  2909. "runtime.native.System": "4.3.0"
  2910. },
  2911. "compile": {
  2912. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2913. },
  2914. "runtime": {
  2915. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2916. },
  2917. "runtimeTargets": {
  2918. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2919. "assetType": "runtime",
  2920. "rid": "unix"
  2921. },
  2922. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2923. "assetType": "runtime",
  2924. "rid": "win"
  2925. }
  2926. }
  2927. },
  2928. "System.Runtime.Loader/4.3.0": {
  2929. "type": "package",
  2930. "dependencies": {
  2931. "System.IO": "4.3.0",
  2932. "System.Reflection": "4.3.0",
  2933. "System.Runtime": "4.3.0"
  2934. },
  2935. "compile": {
  2936. "ref/netstandard1.5/System.Runtime.Loader.dll": {
  2937. "related": ".xml"
  2938. }
  2939. },
  2940. "runtime": {
  2941. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  2942. }
  2943. },
  2944. "System.Runtime.Numerics/4.3.0": {
  2945. "type": "package",
  2946. "dependencies": {
  2947. "System.Globalization": "4.3.0",
  2948. "System.Resources.ResourceManager": "4.3.0",
  2949. "System.Runtime": "4.3.0",
  2950. "System.Runtime.Extensions": "4.3.0"
  2951. },
  2952. "compile": {
  2953. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2954. "related": ".xml"
  2955. }
  2956. },
  2957. "runtime": {
  2958. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2959. }
  2960. },
  2961. "System.Security.AccessControl/4.5.0": {
  2962. "type": "package",
  2963. "dependencies": {
  2964. "Microsoft.NETCore.Platforms": "2.0.0",
  2965. "System.Security.Principal.Windows": "4.5.0"
  2966. },
  2967. "compile": {
  2968. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2969. "related": ".xml"
  2970. }
  2971. },
  2972. "runtime": {
  2973. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2974. },
  2975. "runtimeTargets": {
  2976. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2977. "assetType": "runtime",
  2978. "rid": "win"
  2979. }
  2980. }
  2981. },
  2982. "System.Security.Cryptography.Algorithms/4.3.0": {
  2983. "type": "package",
  2984. "dependencies": {
  2985. "Microsoft.NETCore.Platforms": "1.1.0",
  2986. "System.Collections": "4.3.0",
  2987. "System.IO": "4.3.0",
  2988. "System.Resources.ResourceManager": "4.3.0",
  2989. "System.Runtime": "4.3.0",
  2990. "System.Runtime.Extensions": "4.3.0",
  2991. "System.Runtime.Handles": "4.3.0",
  2992. "System.Runtime.InteropServices": "4.3.0",
  2993. "System.Runtime.Numerics": "4.3.0",
  2994. "System.Security.Cryptography.Encoding": "4.3.0",
  2995. "System.Security.Cryptography.Primitives": "4.3.0",
  2996. "System.Text.Encoding": "4.3.0",
  2997. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2998. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2999. },
  3000. "compile": {
  3001. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  3002. },
  3003. "runtimeTargets": {
  3004. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3005. "assetType": "runtime",
  3006. "rid": "osx"
  3007. },
  3008. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3009. "assetType": "runtime",
  3010. "rid": "unix"
  3011. },
  3012. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3013. "assetType": "runtime",
  3014. "rid": "win"
  3015. }
  3016. }
  3017. },
  3018. "System.Security.Cryptography.Cng/4.5.0": {
  3019. "type": "package",
  3020. "compile": {
  3021. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  3022. "related": ".xml"
  3023. }
  3024. },
  3025. "runtime": {
  3026. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  3027. },
  3028. "runtimeTargets": {
  3029. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  3030. "assetType": "runtime",
  3031. "rid": "win"
  3032. }
  3033. }
  3034. },
  3035. "System.Security.Cryptography.Csp/4.3.0": {
  3036. "type": "package",
  3037. "dependencies": {
  3038. "Microsoft.NETCore.Platforms": "1.1.0",
  3039. "System.IO": "4.3.0",
  3040. "System.Reflection": "4.3.0",
  3041. "System.Resources.ResourceManager": "4.3.0",
  3042. "System.Runtime": "4.3.0",
  3043. "System.Runtime.Extensions": "4.3.0",
  3044. "System.Runtime.Handles": "4.3.0",
  3045. "System.Runtime.InteropServices": "4.3.0",
  3046. "System.Security.Cryptography.Algorithms": "4.3.0",
  3047. "System.Security.Cryptography.Encoding": "4.3.0",
  3048. "System.Security.Cryptography.Primitives": "4.3.0",
  3049. "System.Text.Encoding": "4.3.0",
  3050. "System.Threading": "4.3.0"
  3051. },
  3052. "compile": {
  3053. "ref/netstandard1.3/_._": {}
  3054. },
  3055. "runtimeTargets": {
  3056. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3057. "assetType": "runtime",
  3058. "rid": "unix"
  3059. },
  3060. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3061. "assetType": "runtime",
  3062. "rid": "win"
  3063. }
  3064. }
  3065. },
  3066. "System.Security.Cryptography.Encoding/4.3.0": {
  3067. "type": "package",
  3068. "dependencies": {
  3069. "Microsoft.NETCore.Platforms": "1.1.0",
  3070. "System.Collections": "4.3.0",
  3071. "System.Collections.Concurrent": "4.3.0",
  3072. "System.Linq": "4.3.0",
  3073. "System.Resources.ResourceManager": "4.3.0",
  3074. "System.Runtime": "4.3.0",
  3075. "System.Runtime.Extensions": "4.3.0",
  3076. "System.Runtime.Handles": "4.3.0",
  3077. "System.Runtime.InteropServices": "4.3.0",
  3078. "System.Security.Cryptography.Primitives": "4.3.0",
  3079. "System.Text.Encoding": "4.3.0",
  3080. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3081. },
  3082. "compile": {
  3083. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3084. "related": ".xml"
  3085. }
  3086. },
  3087. "runtimeTargets": {
  3088. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3089. "assetType": "runtime",
  3090. "rid": "unix"
  3091. },
  3092. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3093. "assetType": "runtime",
  3094. "rid": "win"
  3095. }
  3096. }
  3097. },
  3098. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3099. "type": "package",
  3100. "dependencies": {
  3101. "System.Collections": "4.3.0",
  3102. "System.IO": "4.3.0",
  3103. "System.Resources.ResourceManager": "4.3.0",
  3104. "System.Runtime": "4.3.0",
  3105. "System.Runtime.Extensions": "4.3.0",
  3106. "System.Runtime.Handles": "4.3.0",
  3107. "System.Runtime.InteropServices": "4.3.0",
  3108. "System.Runtime.Numerics": "4.3.0",
  3109. "System.Security.Cryptography.Algorithms": "4.3.0",
  3110. "System.Security.Cryptography.Encoding": "4.3.0",
  3111. "System.Security.Cryptography.Primitives": "4.3.0",
  3112. "System.Text.Encoding": "4.3.0",
  3113. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3114. },
  3115. "compile": {
  3116. "ref/netstandard1.6/_._": {}
  3117. },
  3118. "runtime": {
  3119. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3120. },
  3121. "runtimeTargets": {
  3122. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3123. "assetType": "runtime",
  3124. "rid": "unix"
  3125. }
  3126. }
  3127. },
  3128. "System.Security.Cryptography.Pkcs/4.5.0": {
  3129. "type": "package",
  3130. "dependencies": {
  3131. "System.Security.Cryptography.Cng": "4.5.0"
  3132. },
  3133. "compile": {
  3134. "ref/netcoreapp2.1/_._": {
  3135. "related": ".xml"
  3136. }
  3137. },
  3138. "runtime": {
  3139. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {}
  3140. },
  3141. "runtimeTargets": {
  3142. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {
  3143. "assetType": "runtime",
  3144. "rid": "win"
  3145. }
  3146. }
  3147. },
  3148. "System.Security.Cryptography.Primitives/4.3.0": {
  3149. "type": "package",
  3150. "dependencies": {
  3151. "System.Diagnostics.Debug": "4.3.0",
  3152. "System.Globalization": "4.3.0",
  3153. "System.IO": "4.3.0",
  3154. "System.Resources.ResourceManager": "4.3.0",
  3155. "System.Runtime": "4.3.0",
  3156. "System.Threading": "4.3.0",
  3157. "System.Threading.Tasks": "4.3.0"
  3158. },
  3159. "compile": {
  3160. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3161. },
  3162. "runtime": {
  3163. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3164. }
  3165. },
  3166. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3167. "type": "package",
  3168. "dependencies": {
  3169. "Microsoft.NETCore.Platforms": "1.1.0",
  3170. "System.Collections": "4.3.0",
  3171. "System.Diagnostics.Debug": "4.3.0",
  3172. "System.Globalization": "4.3.0",
  3173. "System.Globalization.Calendars": "4.3.0",
  3174. "System.IO": "4.3.0",
  3175. "System.IO.FileSystem": "4.3.0",
  3176. "System.IO.FileSystem.Primitives": "4.3.0",
  3177. "System.Resources.ResourceManager": "4.3.0",
  3178. "System.Runtime": "4.3.0",
  3179. "System.Runtime.Extensions": "4.3.0",
  3180. "System.Runtime.Handles": "4.3.0",
  3181. "System.Runtime.InteropServices": "4.3.0",
  3182. "System.Runtime.Numerics": "4.3.0",
  3183. "System.Security.Cryptography.Algorithms": "4.3.0",
  3184. "System.Security.Cryptography.Cng": "4.3.0",
  3185. "System.Security.Cryptography.Csp": "4.3.0",
  3186. "System.Security.Cryptography.Encoding": "4.3.0",
  3187. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3188. "System.Security.Cryptography.Primitives": "4.3.0",
  3189. "System.Text.Encoding": "4.3.0",
  3190. "System.Threading": "4.3.0",
  3191. "runtime.native.System": "4.3.0",
  3192. "runtime.native.System.Net.Http": "4.3.0",
  3193. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3194. },
  3195. "compile": {
  3196. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3197. "related": ".xml"
  3198. }
  3199. },
  3200. "runtimeTargets": {
  3201. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3202. "assetType": "runtime",
  3203. "rid": "unix"
  3204. },
  3205. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3206. "assetType": "runtime",
  3207. "rid": "win"
  3208. }
  3209. }
  3210. },
  3211. "System.Security.Cryptography.Xml/4.5.0": {
  3212. "type": "package",
  3213. "dependencies": {
  3214. "System.Security.Cryptography.Pkcs": "4.5.0",
  3215. "System.Security.Permissions": "4.5.0"
  3216. },
  3217. "compile": {
  3218. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {
  3219. "related": ".xml"
  3220. }
  3221. },
  3222. "runtime": {
  3223. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {}
  3224. }
  3225. },
  3226. "System.Security.Permissions/4.5.0": {
  3227. "type": "package",
  3228. "dependencies": {
  3229. "System.Security.AccessControl": "4.5.0"
  3230. },
  3231. "compile": {
  3232. "ref/netstandard2.0/System.Security.Permissions.dll": {
  3233. "related": ".xml"
  3234. }
  3235. },
  3236. "runtime": {
  3237. "lib/netstandard2.0/System.Security.Permissions.dll": {}
  3238. }
  3239. },
  3240. "System.Security.Principal.Windows/4.5.0": {
  3241. "type": "package",
  3242. "dependencies": {
  3243. "Microsoft.NETCore.Platforms": "2.0.0"
  3244. },
  3245. "compile": {
  3246. "ref/netstandard2.0/System.Security.Principal.Windows.dll": {
  3247. "related": ".xml"
  3248. }
  3249. },
  3250. "runtime": {
  3251. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  3252. },
  3253. "runtimeTargets": {
  3254. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  3255. "assetType": "runtime",
  3256. "rid": "unix"
  3257. },
  3258. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  3259. "assetType": "runtime",
  3260. "rid": "win"
  3261. }
  3262. }
  3263. },
  3264. "System.Text.Encoding/4.3.0": {
  3265. "type": "package",
  3266. "dependencies": {
  3267. "Microsoft.NETCore.Platforms": "1.1.0",
  3268. "Microsoft.NETCore.Targets": "1.1.0",
  3269. "System.Runtime": "4.3.0"
  3270. },
  3271. "compile": {
  3272. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3273. "related": ".xml"
  3274. }
  3275. }
  3276. },
  3277. "System.Text.Encoding.CodePages/5.0.0": {
  3278. "type": "package",
  3279. "dependencies": {
  3280. "Microsoft.NETCore.Platforms": "5.0.0",
  3281. "System.Runtime.CompilerServices.Unsafe": "5.0.0"
  3282. },
  3283. "compile": {
  3284. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3285. "related": ".xml"
  3286. }
  3287. },
  3288. "runtime": {
  3289. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3290. "related": ".xml"
  3291. }
  3292. },
  3293. "runtimeTargets": {
  3294. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3295. "assetType": "runtime",
  3296. "rid": "win"
  3297. }
  3298. }
  3299. },
  3300. "System.Text.Encoding.Extensions/4.3.0": {
  3301. "type": "package",
  3302. "dependencies": {
  3303. "Microsoft.NETCore.Platforms": "1.1.0",
  3304. "Microsoft.NETCore.Targets": "1.1.0",
  3305. "System.Runtime": "4.3.0",
  3306. "System.Text.Encoding": "4.3.0"
  3307. },
  3308. "compile": {
  3309. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3310. "related": ".xml"
  3311. }
  3312. }
  3313. },
  3314. "System.Text.Encodings.Web/4.5.0": {
  3315. "type": "package",
  3316. "compile": {
  3317. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3318. "related": ".xml"
  3319. }
  3320. },
  3321. "runtime": {
  3322. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3323. "related": ".xml"
  3324. }
  3325. }
  3326. },
  3327. "System.Text.RegularExpressions/4.3.0": {
  3328. "type": "package",
  3329. "dependencies": {
  3330. "System.Runtime": "4.3.0"
  3331. },
  3332. "compile": {
  3333. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3334. },
  3335. "runtime": {
  3336. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3337. }
  3338. },
  3339. "System.Threading/4.3.0": {
  3340. "type": "package",
  3341. "dependencies": {
  3342. "System.Runtime": "4.3.0",
  3343. "System.Threading.Tasks": "4.3.0"
  3344. },
  3345. "compile": {
  3346. "ref/netstandard1.3/System.Threading.dll": {
  3347. "related": ".xml"
  3348. }
  3349. },
  3350. "runtime": {
  3351. "lib/netstandard1.3/System.Threading.dll": {}
  3352. }
  3353. },
  3354. "System.Threading.Tasks/4.3.0": {
  3355. "type": "package",
  3356. "dependencies": {
  3357. "Microsoft.NETCore.Platforms": "1.1.0",
  3358. "Microsoft.NETCore.Targets": "1.1.0",
  3359. "System.Runtime": "4.3.0"
  3360. },
  3361. "compile": {
  3362. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3363. "related": ".xml"
  3364. }
  3365. }
  3366. },
  3367. "System.Threading.Tasks.Extensions/4.5.1": {
  3368. "type": "package",
  3369. "compile": {
  3370. "ref/netcoreapp2.1/_._": {}
  3371. },
  3372. "runtime": {
  3373. "lib/netcoreapp2.1/_._": {}
  3374. }
  3375. },
  3376. "System.Threading.Tasks.Parallel/4.3.0": {
  3377. "type": "package",
  3378. "dependencies": {
  3379. "System.Collections.Concurrent": "4.3.0",
  3380. "System.Diagnostics.Debug": "4.3.0",
  3381. "System.Diagnostics.Tracing": "4.3.0",
  3382. "System.Resources.ResourceManager": "4.3.0",
  3383. "System.Runtime": "4.3.0",
  3384. "System.Runtime.Extensions": "4.3.0",
  3385. "System.Threading": "4.3.0",
  3386. "System.Threading.Tasks": "4.3.0"
  3387. },
  3388. "compile": {
  3389. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {
  3390. "related": ".xml"
  3391. }
  3392. },
  3393. "runtime": {
  3394. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
  3395. }
  3396. },
  3397. "System.Threading.Thread/4.3.0": {
  3398. "type": "package",
  3399. "dependencies": {
  3400. "System.Runtime": "4.3.0"
  3401. },
  3402. "compile": {
  3403. "ref/netstandard1.3/_._": {
  3404. "related": ".xml"
  3405. }
  3406. },
  3407. "runtime": {
  3408. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3409. }
  3410. },
  3411. "System.Threading.Timer/4.3.0": {
  3412. "type": "package",
  3413. "dependencies": {
  3414. "Microsoft.NETCore.Platforms": "1.1.0",
  3415. "Microsoft.NETCore.Targets": "1.1.0",
  3416. "System.Runtime": "4.3.0"
  3417. },
  3418. "compile": {
  3419. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3420. "related": ".xml"
  3421. }
  3422. }
  3423. },
  3424. "System.ValueTuple/4.3.0": {
  3425. "type": "package",
  3426. "dependencies": {
  3427. "System.Collections": "4.3.0",
  3428. "System.Resources.ResourceManager": "4.3.0",
  3429. "System.Runtime": "4.3.0"
  3430. },
  3431. "compile": {
  3432. "lib/netstandard1.0/System.ValueTuple.dll": {}
  3433. },
  3434. "runtime": {
  3435. "lib/netstandard1.0/System.ValueTuple.dll": {}
  3436. }
  3437. },
  3438. "System.Xml.ReaderWriter/4.3.0": {
  3439. "type": "package",
  3440. "dependencies": {
  3441. "System.Collections": "4.3.0",
  3442. "System.Diagnostics.Debug": "4.3.0",
  3443. "System.Globalization": "4.3.0",
  3444. "System.IO": "4.3.0",
  3445. "System.IO.FileSystem": "4.3.0",
  3446. "System.IO.FileSystem.Primitives": "4.3.0",
  3447. "System.Resources.ResourceManager": "4.3.0",
  3448. "System.Runtime": "4.3.0",
  3449. "System.Runtime.Extensions": "4.3.0",
  3450. "System.Runtime.InteropServices": "4.3.0",
  3451. "System.Text.Encoding": "4.3.0",
  3452. "System.Text.Encoding.Extensions": "4.3.0",
  3453. "System.Text.RegularExpressions": "4.3.0",
  3454. "System.Threading.Tasks": "4.3.0",
  3455. "System.Threading.Tasks.Extensions": "4.3.0"
  3456. },
  3457. "compile": {
  3458. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3459. "related": ".xml"
  3460. }
  3461. },
  3462. "runtime": {
  3463. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3464. }
  3465. },
  3466. "System.Xml.XDocument/4.3.0": {
  3467. "type": "package",
  3468. "dependencies": {
  3469. "System.Collections": "4.3.0",
  3470. "System.Diagnostics.Debug": "4.3.0",
  3471. "System.Diagnostics.Tools": "4.3.0",
  3472. "System.Globalization": "4.3.0",
  3473. "System.IO": "4.3.0",
  3474. "System.Reflection": "4.3.0",
  3475. "System.Resources.ResourceManager": "4.3.0",
  3476. "System.Runtime": "4.3.0",
  3477. "System.Runtime.Extensions": "4.3.0",
  3478. "System.Text.Encoding": "4.3.0",
  3479. "System.Threading": "4.3.0",
  3480. "System.Xml.ReaderWriter": "4.3.0"
  3481. },
  3482. "compile": {
  3483. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3484. "related": ".xml"
  3485. }
  3486. },
  3487. "runtime": {
  3488. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3489. }
  3490. },
  3491. "System.Xml.XmlDocument/4.3.0": {
  3492. "type": "package",
  3493. "dependencies": {
  3494. "System.Collections": "4.3.0",
  3495. "System.Diagnostics.Debug": "4.3.0",
  3496. "System.Globalization": "4.3.0",
  3497. "System.IO": "4.3.0",
  3498. "System.Resources.ResourceManager": "4.3.0",
  3499. "System.Runtime": "4.3.0",
  3500. "System.Runtime.Extensions": "4.3.0",
  3501. "System.Text.Encoding": "4.3.0",
  3502. "System.Threading": "4.3.0",
  3503. "System.Xml.ReaderWriter": "4.3.0"
  3504. },
  3505. "compile": {
  3506. "ref/netstandard1.3/_._": {
  3507. "related": ".xml"
  3508. }
  3509. },
  3510. "runtime": {
  3511. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3512. }
  3513. },
  3514. "System.Xml.XPath/4.3.0": {
  3515. "type": "package",
  3516. "dependencies": {
  3517. "System.Collections": "4.3.0",
  3518. "System.Diagnostics.Debug": "4.3.0",
  3519. "System.Globalization": "4.3.0",
  3520. "System.IO": "4.3.0",
  3521. "System.Resources.ResourceManager": "4.3.0",
  3522. "System.Runtime": "4.3.0",
  3523. "System.Runtime.Extensions": "4.3.0",
  3524. "System.Threading": "4.3.0",
  3525. "System.Xml.ReaderWriter": "4.3.0"
  3526. },
  3527. "compile": {
  3528. "ref/netstandard1.3/_._": {
  3529. "related": ".xml"
  3530. }
  3531. },
  3532. "runtime": {
  3533. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  3534. }
  3535. },
  3536. "System.Xml.XPath.XDocument/4.3.0": {
  3537. "type": "package",
  3538. "dependencies": {
  3539. "System.Diagnostics.Debug": "4.3.0",
  3540. "System.Linq": "4.3.0",
  3541. "System.Resources.ResourceManager": "4.3.0",
  3542. "System.Runtime": "4.3.0",
  3543. "System.Runtime.Extensions": "4.3.0",
  3544. "System.Threading": "4.3.0",
  3545. "System.Xml.ReaderWriter": "4.3.0",
  3546. "System.Xml.XDocument": "4.3.0",
  3547. "System.Xml.XPath": "4.3.0"
  3548. },
  3549. "compile": {
  3550. "ref/netstandard1.3/_._": {
  3551. "related": ".xml"
  3552. }
  3553. },
  3554. "runtime": {
  3555. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {}
  3556. }
  3557. },
  3558. "Core.RabbitMQBus/1.2.0": {
  3559. "type": "project",
  3560. "framework": ".NETStandard,Version=v2.1",
  3561. "dependencies": {
  3562. "Core.RabbitMQBus.Common": "1.0.0",
  3563. "Exceptionless": "4.3.2027",
  3564. "Microsoft.AspNetCore.Mvc": "2.2.0",
  3565. "Microsoft.Extensions.Logging": "3.1.2",
  3566. "Microsoft.Extensions.Options": "3.1.2",
  3567. "Polly": "7.2.0",
  3568. "RabbitMQ.Client": "5.1.2",
  3569. "Swifter.Json": "1.2.9.6",
  3570. "System.Runtime.Loader": "4.3.0"
  3571. },
  3572. "compile": {
  3573. "bin/placeholder/Core.RabbitMQBus.dll": {}
  3574. },
  3575. "runtime": {
  3576. "bin/placeholder/Core.RabbitMQBus.dll": {}
  3577. }
  3578. },
  3579. "Core.RabbitMQBus.Common/1.0.0": {
  3580. "type": "project",
  3581. "framework": ".NETStandard,Version=v2.1",
  3582. "compile": {
  3583. "bin/placeholder/Core.RabbitMQBus.Common.dll": {}
  3584. },
  3585. "runtime": {
  3586. "bin/placeholder/Core.RabbitMQBus.Common.dll": {}
  3587. }
  3588. }
  3589. }
  3590. },
  3591. "libraries": {
  3592. "Exceptionless/4.3.2027": {
  3593. "sha512": "b+XSF/qEmiMbUyAaO42kfbBBMmbFGaKsUoXyfiQ9uY3rVqk5cP49KN3U3G14yESg2404TaktcWseJ3TG5ch+3g==",
  3594. "type": "package",
  3595. "path": "exceptionless/4.3.2027",
  3596. "hasTools": true,
  3597. "files": [
  3598. ".nupkg.metadata",
  3599. ".signature.p7s",
  3600. "exceptionless.4.3.2027.nupkg.sha512",
  3601. "exceptionless.nuspec",
  3602. "lib/net45/Exceptionless.dll",
  3603. "lib/net45/Exceptionless.pdb",
  3604. "lib/net45/Exceptionless.xml",
  3605. "lib/netstandard1.2/Exceptionless.dll",
  3606. "lib/netstandard1.2/Exceptionless.pdb",
  3607. "lib/netstandard1.2/Exceptionless.xml",
  3608. "lib/netstandard1.3/Exceptionless.dll",
  3609. "lib/netstandard1.3/Exceptionless.pdb",
  3610. "lib/netstandard1.3/Exceptionless.xml",
  3611. "lib/netstandard1.4/Exceptionless.dll",
  3612. "lib/netstandard1.4/Exceptionless.pdb",
  3613. "lib/netstandard1.4/Exceptionless.xml",
  3614. "lib/netstandard1.5/Exceptionless.dll",
  3615. "lib/netstandard1.5/Exceptionless.pdb",
  3616. "lib/netstandard1.5/Exceptionless.xml",
  3617. "lib/netstandard2.0/Exceptionless.dll",
  3618. "lib/netstandard2.0/Exceptionless.pdb",
  3619. "lib/netstandard2.0/Exceptionless.xml",
  3620. "lib/portable46-net451+win81+wpa81/Exceptionless.dll",
  3621. "lib/portable46-net451+win81+wpa81/Exceptionless.pdb",
  3622. "lib/portable46-net451+win81+wpa81/Exceptionless.xml",
  3623. "readme.txt",
  3624. "tools/exceptionless.psm1",
  3625. "tools/install.ps1",
  3626. "tools/uninstall.ps1"
  3627. ]
  3628. },
  3629. "Microsoft.AspNetCore/2.2.0": {
  3630. "sha512": "Bs75iht4lXS8uVWy/Cbsr9i0m2jRtnrfPEWU+6t0dQTZcJEfF9b7G2F7XvstLFWkAKSgYRzFkAwi/KypY0Qtew==",
  3631. "type": "package",
  3632. "path": "microsoft.aspnetcore/2.2.0",
  3633. "files": [
  3634. ".nupkg.metadata",
  3635. ".signature.p7s",
  3636. "lib/netstandard2.0/Microsoft.AspNetCore.dll",
  3637. "lib/netstandard2.0/Microsoft.AspNetCore.xml",
  3638. "microsoft.aspnetcore.2.2.0.nupkg.sha512",
  3639. "microsoft.aspnetcore.nuspec"
  3640. ]
  3641. },
  3642. "Microsoft.AspNetCore.Antiforgery/2.2.0": {
  3643. "sha512": "fVQsSXNZz38Ysx8iKwwqfOLHhLrAeKEMBS5Ia3Lh7BJjOC2vPV28/yk08AovOMsB3SNQPGnE7bv+lsIBTmAkvw==",
  3644. "type": "package",
  3645. "path": "microsoft.aspnetcore.antiforgery/2.2.0",
  3646. "files": [
  3647. ".nupkg.metadata",
  3648. ".signature.p7s",
  3649. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll",
  3650. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.xml",
  3651. "microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512",
  3652. "microsoft.aspnetcore.antiforgery.nuspec"
  3653. ]
  3654. },
  3655. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  3656. "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
  3657. "type": "package",
  3658. "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
  3659. "files": [
  3660. ".nupkg.metadata",
  3661. ".signature.p7s",
  3662. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll",
  3663. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml",
  3664. "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512",
  3665. "microsoft.aspnetcore.authentication.abstractions.nuspec"
  3666. ]
  3667. },
  3668. "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
  3669. "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==",
  3670. "type": "package",
  3671. "path": "microsoft.aspnetcore.authentication.core/2.2.0",
  3672. "files": [
  3673. ".nupkg.metadata",
  3674. ".signature.p7s",
  3675. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll",
  3676. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml",
  3677. "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512",
  3678. "microsoft.aspnetcore.authentication.core.nuspec"
  3679. ]
  3680. },
  3681. "Microsoft.AspNetCore.Authorization/2.2.0": {
  3682. "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==",
  3683. "type": "package",
  3684. "path": "microsoft.aspnetcore.authorization/2.2.0",
  3685. "files": [
  3686. ".nupkg.metadata",
  3687. ".signature.p7s",
  3688. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  3689. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  3690. "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512",
  3691. "microsoft.aspnetcore.authorization.nuspec"
  3692. ]
  3693. },
  3694. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  3695. "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==",
  3696. "type": "package",
  3697. "path": "microsoft.aspnetcore.authorization.policy/2.2.0",
  3698. "files": [
  3699. ".nupkg.metadata",
  3700. ".signature.p7s",
  3701. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll",
  3702. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml",
  3703. "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512",
  3704. "microsoft.aspnetcore.authorization.policy.nuspec"
  3705. ]
  3706. },
  3707. "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
  3708. "sha512": "Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==",
  3709. "type": "package",
  3710. "path": "microsoft.aspnetcore.connections.abstractions/2.2.0",
  3711. "files": [
  3712. ".nupkg.metadata",
  3713. ".signature.p7s",
  3714. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll",
  3715. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml",
  3716. "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512",
  3717. "microsoft.aspnetcore.connections.abstractions.nuspec"
  3718. ]
  3719. },
  3720. "Microsoft.AspNetCore.Cors/2.2.0": {
  3721. "sha512": "LFlTM3ThS3ZCILuKnjy8HyK9/IlDh3opogdbCVx6tMGyDzTQBgMPXLjGDLtMk5QmLDCcP3l1TO3z/+1viA8GUg==",
  3722. "type": "package",
  3723. "path": "microsoft.aspnetcore.cors/2.2.0",
  3724. "files": [
  3725. ".nupkg.metadata",
  3726. ".signature.p7s",
  3727. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll",
  3728. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.xml",
  3729. "microsoft.aspnetcore.cors.2.2.0.nupkg.sha512",
  3730. "microsoft.aspnetcore.cors.nuspec"
  3731. ]
  3732. },
  3733. "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": {
  3734. "sha512": "GXmMD8/vuTLPLvKzKEPz/4vapC5e0cwx1tUVd83ePRyWF9CCrn/pg4/1I+tGkQqFLPvi3nlI2QtPtC6MQN8Nww==",
  3735. "type": "package",
  3736. "path": "microsoft.aspnetcore.cryptography.internal/2.2.0",
  3737. "files": [
  3738. ".nupkg.metadata",
  3739. ".signature.p7s",
  3740. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3741. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3742. "microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512",
  3743. "microsoft.aspnetcore.cryptography.internal.nuspec"
  3744. ]
  3745. },
  3746. "Microsoft.AspNetCore.DataProtection/2.2.0": {
  3747. "sha512": "G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==",
  3748. "type": "package",
  3749. "path": "microsoft.aspnetcore.dataprotection/2.2.0",
  3750. "files": [
  3751. ".nupkg.metadata",
  3752. ".signature.p7s",
  3753. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll",
  3754. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml",
  3755. "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512",
  3756. "microsoft.aspnetcore.dataprotection.nuspec"
  3757. ]
  3758. },
  3759. "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {
  3760. "sha512": "seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==",
  3761. "type": "package",
  3762. "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0",
  3763. "files": [
  3764. ".nupkg.metadata",
  3765. ".signature.p7s",
  3766. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  3767. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  3768. "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512",
  3769. "microsoft.aspnetcore.dataprotection.abstractions.nuspec"
  3770. ]
  3771. },
  3772. "Microsoft.AspNetCore.Diagnostics/2.2.0": {
  3773. "sha512": "RobNuZecn/eefWVApOE+OWAZXCdgfzm8pB7tBvJkahsjWfn1a+bLM9I2cuKlp/9aFBok1O/oDXlgYSvaQYu/yg==",
  3774. "type": "package",
  3775. "path": "microsoft.aspnetcore.diagnostics/2.2.0",
  3776. "files": [
  3777. ".nupkg.metadata",
  3778. ".signature.p7s",
  3779. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll",
  3780. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.xml",
  3781. "microsoft.aspnetcore.diagnostics.2.2.0.nupkg.sha512",
  3782. "microsoft.aspnetcore.diagnostics.nuspec"
  3783. ]
  3784. },
  3785. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {
  3786. "sha512": "pva9ggfUDtnJIKzv0+wxwTX7LduDx6xLSpMqWwdOJkW52L0t31PI78+v+WqqMpUtMzcKug24jGs3nTFpAmA/2g==",
  3787. "type": "package",
  3788. "path": "microsoft.aspnetcore.diagnostics.abstractions/2.2.0",
  3789. "files": [
  3790. ".nupkg.metadata",
  3791. ".signature.p7s",
  3792. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
  3793. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml",
  3794. "microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512",
  3795. "microsoft.aspnetcore.diagnostics.abstractions.nuspec"
  3796. ]
  3797. },
  3798. "Microsoft.AspNetCore.HostFiltering/2.2.0": {
  3799. "sha512": "JSX6ZlVWDkokZ+xCKDhUVQNqbmFn1lHQNzJc8K4Y/uTUocZS83+b/8Q7y/yx3oJ362etGMVy0keAvmCdqbP8nA==",
  3800. "type": "package",
  3801. "path": "microsoft.aspnetcore.hostfiltering/2.2.0",
  3802. "files": [
  3803. ".nupkg.metadata",
  3804. ".signature.p7s",
  3805. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll",
  3806. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.xml",
  3807. "microsoft.aspnetcore.hostfiltering.2.2.0.nupkg.sha512",
  3808. "microsoft.aspnetcore.hostfiltering.nuspec"
  3809. ]
  3810. },
  3811. "Microsoft.AspNetCore.Hosting/2.2.0": {
  3812. "sha512": "7t4RbUGugpHtQmzAkc9fpDdYJg6t/jcB2VVnjensVYbZFnLDU8pNrG0hrekk1DQG7P2UzpSqKLzDsFF0/lkkbw==",
  3813. "type": "package",
  3814. "path": "microsoft.aspnetcore.hosting/2.2.0",
  3815. "files": [
  3816. ".nupkg.metadata",
  3817. ".signature.p7s",
  3818. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll",
  3819. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.xml",
  3820. "microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512",
  3821. "microsoft.aspnetcore.hosting.nuspec"
  3822. ]
  3823. },
  3824. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  3825. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  3826. "type": "package",
  3827. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  3828. "files": [
  3829. ".nupkg.metadata",
  3830. ".signature.p7s",
  3831. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  3832. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  3833. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  3834. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  3835. ]
  3836. },
  3837. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  3838. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  3839. "type": "package",
  3840. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  3841. "files": [
  3842. ".nupkg.metadata",
  3843. ".signature.p7s",
  3844. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  3845. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  3846. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  3847. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  3848. ]
  3849. },
  3850. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  3851. "sha512": "Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==",
  3852. "type": "package",
  3853. "path": "microsoft.aspnetcore.html.abstractions/2.2.0",
  3854. "files": [
  3855. ".nupkg.metadata",
  3856. ".signature.p7s",
  3857. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll",
  3858. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml",
  3859. "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512",
  3860. "microsoft.aspnetcore.html.abstractions.nuspec"
  3861. ]
  3862. },
  3863. "Microsoft.AspNetCore.Http/2.2.0": {
  3864. "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
  3865. "type": "package",
  3866. "path": "microsoft.aspnetcore.http/2.2.0",
  3867. "files": [
  3868. ".nupkg.metadata",
  3869. ".signature.p7s",
  3870. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
  3871. "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
  3872. "microsoft.aspnetcore.http.2.2.0.nupkg.sha512",
  3873. "microsoft.aspnetcore.http.nuspec"
  3874. ]
  3875. },
  3876. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3877. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3878. "type": "package",
  3879. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3880. "files": [
  3881. ".nupkg.metadata",
  3882. ".signature.p7s",
  3883. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3884. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3885. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3886. "microsoft.aspnetcore.http.abstractions.nuspec"
  3887. ]
  3888. },
  3889. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  3890. "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
  3891. "type": "package",
  3892. "path": "microsoft.aspnetcore.http.extensions/2.2.0",
  3893. "files": [
  3894. ".nupkg.metadata",
  3895. ".signature.p7s",
  3896. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll",
  3897. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml",
  3898. "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
  3899. "microsoft.aspnetcore.http.extensions.nuspec"
  3900. ]
  3901. },
  3902. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  3903. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  3904. "type": "package",
  3905. "path": "microsoft.aspnetcore.http.features/2.2.0",
  3906. "files": [
  3907. ".nupkg.metadata",
  3908. ".signature.p7s",
  3909. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3910. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3911. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  3912. "microsoft.aspnetcore.http.features.nuspec"
  3913. ]
  3914. },
  3915. "Microsoft.AspNetCore.HttpOverrides/2.2.0": {
  3916. "sha512": "pOlLQyNKQduGbtbgB55RyTHFeshSfKi3DmofrVjk+UBQjyp+Tm0RNNJFQf+sv34hlFsel+VnD79QyO9Zk/c3oA==",
  3917. "type": "package",
  3918. "path": "microsoft.aspnetcore.httpoverrides/2.2.0",
  3919. "files": [
  3920. ".nupkg.metadata",
  3921. ".signature.p7s",
  3922. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll",
  3923. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.xml",
  3924. "microsoft.aspnetcore.httpoverrides.2.2.0.nupkg.sha512",
  3925. "microsoft.aspnetcore.httpoverrides.nuspec"
  3926. ]
  3927. },
  3928. "Microsoft.AspNetCore.JsonPatch/2.2.0": {
  3929. "sha512": "o9BB9hftnCsyJalz9IT0DUFxz8Xvgh3TOfGWolpuf19duxB4FySq7c25XDYBmBMS+sun5/PsEUAi58ra4iJAoA==",
  3930. "type": "package",
  3931. "path": "microsoft.aspnetcore.jsonpatch/2.2.0",
  3932. "files": [
  3933. ".nupkg.metadata",
  3934. ".signature.p7s",
  3935. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  3936. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  3937. "microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512",
  3938. "microsoft.aspnetcore.jsonpatch.nuspec"
  3939. ]
  3940. },
  3941. "Microsoft.AspNetCore.Localization/2.2.0": {
  3942. "sha512": "+PGX1mEfq19EVvskBBb9XBQrXZpZrh6hYhX0x3FkPTEqr+rDM2ZmsEwAAMRmzcidmlDM1/7cyDSU/WhkecU8tA==",
  3943. "type": "package",
  3944. "path": "microsoft.aspnetcore.localization/2.2.0",
  3945. "files": [
  3946. ".nupkg.metadata",
  3947. ".signature.p7s",
  3948. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll",
  3949. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.xml",
  3950. "microsoft.aspnetcore.localization.2.2.0.nupkg.sha512",
  3951. "microsoft.aspnetcore.localization.nuspec"
  3952. ]
  3953. },
  3954. "Microsoft.AspNetCore.Mvc/2.2.0": {
  3955. "sha512": "noun9xcrEvOs/ubczt2OluY9/bOOM2erv1D/gyyYtfS2sfyx2uGknUIAWoqmqc401TvQDysyx8S4M9j5zPIVBw==",
  3956. "type": "package",
  3957. "path": "microsoft.aspnetcore.mvc/2.2.0",
  3958. "files": [
  3959. ".nupkg.metadata",
  3960. ".signature.p7s",
  3961. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll",
  3962. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.xml",
  3963. "microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512",
  3964. "microsoft.aspnetcore.mvc.nuspec"
  3965. ]
  3966. },
  3967. "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": {
  3968. "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==",
  3969. "type": "package",
  3970. "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0",
  3971. "files": [
  3972. ".nupkg.metadata",
  3973. ".signature.p7s",
  3974. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  3975. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml",
  3976. "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512",
  3977. "microsoft.aspnetcore.mvc.abstractions.nuspec"
  3978. ]
  3979. },
  3980. "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": {
  3981. "sha512": "Wxxt1rFVHITp4MDaGQP/wyl+ROVVVeQCTWI6C8hxI8X66C4u6gcxvelqgnmsn+dISMCdE/7FQOwgiMx1HxuZqA==",
  3982. "type": "package",
  3983. "path": "microsoft.aspnetcore.mvc.analyzers/2.2.0",
  3984. "files": [
  3985. ".nupkg.metadata",
  3986. ".signature.p7s",
  3987. "analyzers/dotnet/cs/Microsoft.AspNetCore.Mvc.Analyzers.dll",
  3988. "microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512",
  3989. "microsoft.aspnetcore.mvc.analyzers.nuspec"
  3990. ]
  3991. },
  3992. "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": {
  3993. "sha512": "iSREQct43Xg2t3KiQ2648e064al/HSLPXpI5yO9VPeTGDspWKHW23XFHRKPN1YjIQHHfBj8ytXbiF0XcSxp5pg==",
  3994. "type": "package",
  3995. "path": "microsoft.aspnetcore.mvc.apiexplorer/2.2.0",
  3996. "files": [
  3997. ".nupkg.metadata",
  3998. ".signature.p7s",
  3999. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
  4000. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
  4001. "microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512",
  4002. "microsoft.aspnetcore.mvc.apiexplorer.nuspec"
  4003. ]
  4004. },
  4005. "Microsoft.AspNetCore.Mvc.Core/2.2.0": {
  4006. "sha512": "ALiY4a6BYsghw8PT5+VU593Kqp911U3w9f/dH9/ZoI3ezDsDAGiObqPu/HP1oXK80Ceu0XdQ3F0bx5AXBeuN/Q==",
  4007. "type": "package",
  4008. "path": "microsoft.aspnetcore.mvc.core/2.2.0",
  4009. "files": [
  4010. ".nupkg.metadata",
  4011. ".signature.p7s",
  4012. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll",
  4013. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml",
  4014. "microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512",
  4015. "microsoft.aspnetcore.mvc.core.nuspec"
  4016. ]
  4017. },
  4018. "Microsoft.AspNetCore.Mvc.Cors/2.2.0": {
  4019. "sha512": "oINjMqhU7yzT2T9AMuvktlWlMd40i0do8E1aYslJS+c5fof+EMhjnwTh6cHN1dfrgjkoXJ/gutxn5Qaqf/81Kg==",
  4020. "type": "package",
  4021. "path": "microsoft.aspnetcore.mvc.cors/2.2.0",
  4022. "files": [
  4023. ".nupkg.metadata",
  4024. ".signature.p7s",
  4025. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll",
  4026. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.xml",
  4027. "microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512",
  4028. "microsoft.aspnetcore.mvc.cors.nuspec"
  4029. ]
  4030. },
  4031. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": {
  4032. "sha512": "WOw4SA3oT47aiU7ZjN/88j+b79YU6VftmHmxK29Km3PTI7WZdmw675QTcgWfsjEX4joCB82v7TvarO3D0oqOyw==",
  4033. "type": "package",
  4034. "path": "microsoft.aspnetcore.mvc.dataannotations/2.2.0",
  4035. "files": [
  4036. ".nupkg.metadata",
  4037. ".signature.p7s",
  4038. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  4039. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
  4040. "microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512",
  4041. "microsoft.aspnetcore.mvc.dataannotations.nuspec"
  4042. ]
  4043. },
  4044. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": {
  4045. "sha512": "ScWwXrkAvw6PekWUFkIr5qa9NKn4uZGRvxtt3DvtUrBYW5Iu2y4SS/vx79JN0XDHNYgAJ81nVs+4M7UE1Y/O+g==",
  4046. "type": "package",
  4047. "path": "microsoft.aspnetcore.mvc.formatters.json/2.2.0",
  4048. "files": [
  4049. ".nupkg.metadata",
  4050. ".signature.p7s",
  4051. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  4052. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
  4053. "microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512",
  4054. "microsoft.aspnetcore.mvc.formatters.json.nuspec"
  4055. ]
  4056. },
  4057. "Microsoft.AspNetCore.Mvc.Localization/2.2.0": {
  4058. "sha512": "H1L4pP124mrN6duwOtNVIJUqy4CczC2/ah4MXarRt9ZRpJd2zNp1j3tJCgyEQpqai6zNVP6Vp2ZRMQcNDcNAKA==",
  4059. "type": "package",
  4060. "path": "microsoft.aspnetcore.mvc.localization/2.2.0",
  4061. "files": [
  4062. ".nupkg.metadata",
  4063. ".signature.p7s",
  4064. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll",
  4065. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.xml",
  4066. "microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512",
  4067. "microsoft.aspnetcore.mvc.localization.nuspec"
  4068. ]
  4069. },
  4070. "Microsoft.AspNetCore.Mvc.Razor/2.2.0": {
  4071. "sha512": "TXvEOjp3r6qDEjmDtv3pXjQr/Zia9PpoGkl1MyTEqKqrUehBTpAdCjA8APXFwun19lH20OuyU+e4zDYv9g134w==",
  4072. "type": "package",
  4073. "path": "microsoft.aspnetcore.mvc.razor/2.2.0",
  4074. "files": [
  4075. ".nupkg.metadata",
  4076. ".signature.p7s",
  4077. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll",
  4078. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.xml",
  4079. "microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512",
  4080. "microsoft.aspnetcore.mvc.razor.nuspec"
  4081. ]
  4082. },
  4083. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": {
  4084. "sha512": "Sei/0moqBDQKaAYT9PtOeRtvYgHQQLyw/jm3exHw2w9VdzejiMEqCQrN2d63Dk4y7IY0Irr/P9JUFkoVURRcNw==",
  4085. "type": "package",
  4086. "path": "microsoft.aspnetcore.mvc.razor.extensions/2.2.0",
  4087. "files": [
  4088. ".nupkg.metadata",
  4089. ".signature.p7s",
  4090. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props",
  4091. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets",
  4092. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  4093. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
  4094. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  4095. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
  4096. "microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512",
  4097. "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
  4098. ]
  4099. },
  4100. "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": {
  4101. "sha512": "GsMs4QKCf5VgdGZq9/nfAVkMJ/8uE4ie0Iugv4FtxbHBmMdpPQQBfTFKoUpwMbgIRw7hzV8xy2HPPU5o58PsdQ==",
  4102. "type": "package",
  4103. "path": "microsoft.aspnetcore.mvc.razorpages/2.2.0",
  4104. "files": [
  4105. ".nupkg.metadata",
  4106. ".signature.p7s",
  4107. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll",
  4108. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml",
  4109. "microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512",
  4110. "microsoft.aspnetcore.mvc.razorpages.nuspec"
  4111. ]
  4112. },
  4113. "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": {
  4114. "sha512": "hsrm/dLx7ztfWV+WEE7O8YqEePW7TmUwFwR7JsOUSTKaV9uSeghdmoOsYuk0HeoTiMhRxH8InQVE9/BgBj+jog==",
  4115. "type": "package",
  4116. "path": "microsoft.aspnetcore.mvc.taghelpers/2.2.0",
  4117. "files": [
  4118. ".nupkg.metadata",
  4119. ".signature.p7s",
  4120. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
  4121. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
  4122. "microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512",
  4123. "microsoft.aspnetcore.mvc.taghelpers.nuspec"
  4124. ]
  4125. },
  4126. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": {
  4127. "sha512": "dt7MGkzCFVTAD5oesI8UeVVeiSgaZ0tPdFstQjG6YLJSCiq1koOUSHMpf0PASGdOW/H9hxXkolIBhT5dWqJi7g==",
  4128. "type": "package",
  4129. "path": "microsoft.aspnetcore.mvc.viewfeatures/2.2.0",
  4130. "files": [
  4131. ".nupkg.metadata",
  4132. ".signature.p7s",
  4133. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  4134. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
  4135. "microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512",
  4136. "microsoft.aspnetcore.mvc.viewfeatures.nuspec"
  4137. ]
  4138. },
  4139. "Microsoft.AspNetCore.Razor/2.2.0": {
  4140. "sha512": "V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==",
  4141. "type": "package",
  4142. "path": "microsoft.aspnetcore.razor/2.2.0",
  4143. "files": [
  4144. ".nupkg.metadata",
  4145. ".signature.p7s",
  4146. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll",
  4147. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml",
  4148. "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512",
  4149. "microsoft.aspnetcore.razor.nuspec"
  4150. ]
  4151. },
  4152. "Microsoft.AspNetCore.Razor.Design/2.2.0": {
  4153. "sha512": "VLWK+ZtMMNukY6XjxYHc7mz33vkquoEzQJHm/LCF5REVxIaexLr+UTImljRRJBdUDJluDAQwU+59IX0rFDfURA==",
  4154. "type": "package",
  4155. "path": "microsoft.aspnetcore.razor.design/2.2.0",
  4156. "hasTools": true,
  4157. "files": [
  4158. ".nupkg.metadata",
  4159. ".signature.p7s",
  4160. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets",
  4161. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props",
  4162. "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props",
  4163. "microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512",
  4164. "microsoft.aspnetcore.razor.design.nuspec",
  4165. "tools/Microsoft.AspNetCore.Razor.Language.dll",
  4166. "tools/Microsoft.CodeAnalysis.CSharp.dll",
  4167. "tools/Microsoft.CodeAnalysis.Razor.dll",
  4168. "tools/Microsoft.CodeAnalysis.dll",
  4169. "tools/Newtonsoft.Json.dll",
  4170. "tools/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  4171. "tools/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  4172. "tools/rzc.deps.json",
  4173. "tools/rzc.dll",
  4174. "tools/rzc.runtimeconfig.json"
  4175. ]
  4176. },
  4177. "Microsoft.AspNetCore.Razor.Language/2.2.0": {
  4178. "sha512": "IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==",
  4179. "type": "package",
  4180. "path": "microsoft.aspnetcore.razor.language/2.2.0",
  4181. "files": [
  4182. ".nupkg.metadata",
  4183. ".signature.p7s",
  4184. "lib/net46/Microsoft.AspNetCore.Razor.Language.dll",
  4185. "lib/net46/Microsoft.AspNetCore.Razor.Language.xml",
  4186. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  4187. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml",
  4188. "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512",
  4189. "microsoft.aspnetcore.razor.language.nuspec"
  4190. ]
  4191. },
  4192. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  4193. "sha512": "7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==",
  4194. "type": "package",
  4195. "path": "microsoft.aspnetcore.razor.runtime/2.2.0",
  4196. "files": [
  4197. ".nupkg.metadata",
  4198. ".signature.p7s",
  4199. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll",
  4200. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml",
  4201. "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512",
  4202. "microsoft.aspnetcore.razor.runtime.nuspec"
  4203. ]
  4204. },
  4205. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": {
  4206. "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==",
  4207. "type": "package",
  4208. "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0",
  4209. "files": [
  4210. ".nupkg.metadata",
  4211. ".signature.p7s",
  4212. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
  4213. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
  4214. "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512",
  4215. "microsoft.aspnetcore.responsecaching.abstractions.nuspec"
  4216. ]
  4217. },
  4218. "Microsoft.AspNetCore.Routing/2.2.0": {
  4219. "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
  4220. "type": "package",
  4221. "path": "microsoft.aspnetcore.routing/2.2.0",
  4222. "files": [
  4223. ".nupkg.metadata",
  4224. ".signature.p7s",
  4225. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll",
  4226. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml",
  4227. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll",
  4228. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml",
  4229. "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
  4230. "microsoft.aspnetcore.routing.nuspec"
  4231. ]
  4232. },
  4233. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  4234. "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
  4235. "type": "package",
  4236. "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
  4237. "files": [
  4238. ".nupkg.metadata",
  4239. ".signature.p7s",
  4240. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4241. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
  4242. "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
  4243. "microsoft.aspnetcore.routing.abstractions.nuspec"
  4244. ]
  4245. },
  4246. "Microsoft.AspNetCore.Server.IIS/2.2.0": {
  4247. "sha512": "6NEwFAJFrnZ0f5eJB1ReIpgPM1ZRDj3IE3Rda01nD3vJANCyJFjZ4SGW3Ckn1AmMi225fGflWzpCKLb7/l43jw==",
  4248. "type": "package",
  4249. "path": "microsoft.aspnetcore.server.iis/2.2.0",
  4250. "files": [
  4251. ".nupkg.metadata",
  4252. ".signature.p7s",
  4253. "build/netstandard2.0/Microsoft.AspNetCore.Server.IIS.targets",
  4254. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.dll",
  4255. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IIS.xml",
  4256. "microsoft.aspnetcore.server.iis.2.2.0.nupkg.sha512",
  4257. "microsoft.aspnetcore.server.iis.nuspec",
  4258. "runtimes/win-x64/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll",
  4259. "runtimes/win-x86/nativeassets/netcoreapp2.2/aspnetcorev2_inprocess.dll"
  4260. ]
  4261. },
  4262. "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": {
  4263. "sha512": "iVjgAg+doTTrTFCOq6kZRpebXq94YGCx9efMIwO5QhwdY/sHAjfrVz2lXzji63G96YjJVK3ZRrlpgS2fd49ABw==",
  4264. "type": "package",
  4265. "path": "microsoft.aspnetcore.server.iisintegration/2.2.0",
  4266. "files": [
  4267. ".nupkg.metadata",
  4268. ".signature.p7s",
  4269. "build/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.targets",
  4270. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll",
  4271. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.xml",
  4272. "microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg.sha512",
  4273. "microsoft.aspnetcore.server.iisintegration.nuspec"
  4274. ]
  4275. },
  4276. "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
  4277. "sha512": "D0vGB8Tp0UNMiAhT+pwAVeqDDx2OFrfpu/plwm0WhA+1DZvTLc99eDwGISL6LAY8x7a12lhl9w7/m+VdoyDu8Q==",
  4278. "type": "package",
  4279. "path": "microsoft.aspnetcore.server.kestrel/2.2.0",
  4280. "files": [
  4281. ".nupkg.metadata",
  4282. ".signature.p7s",
  4283. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll",
  4284. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.xml",
  4285. "microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512",
  4286. "microsoft.aspnetcore.server.kestrel.nuspec"
  4287. ]
  4288. },
  4289. "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
  4290. "sha512": "F6/Vesd3ODq/ISbHfcvfRf7IzRtTvrNX8VA36Knm5e7bteJhoRA2GKQUVQ+neoO1njLvaQKnjcA3rdCZ6AF6cg==",
  4291. "type": "package",
  4292. "path": "microsoft.aspnetcore.server.kestrel.core/2.2.0",
  4293. "files": [
  4294. ".nupkg.metadata",
  4295. ".signature.p7s",
  4296. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll",
  4297. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.xml",
  4298. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll",
  4299. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.xml",
  4300. "microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512",
  4301. "microsoft.aspnetcore.server.kestrel.core.nuspec"
  4302. ]
  4303. },
  4304. "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
  4305. "sha512": "nEH5mU6idUYS3/+9BKw2stMOM25ZdGwIH4P4kyj6PVkMPgQUTkBQ7l/ScPkepdhejcOlPa+g3+M4dYsSYPUJ8g==",
  4306. "type": "package",
  4307. "path": "microsoft.aspnetcore.server.kestrel.https/2.2.0",
  4308. "files": [
  4309. ".nupkg.metadata",
  4310. ".signature.p7s",
  4311. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll",
  4312. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.xml",
  4313. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll",
  4314. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.xml",
  4315. "microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512",
  4316. "microsoft.aspnetcore.server.kestrel.https.nuspec"
  4317. ]
  4318. },
  4319. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
  4320. "sha512": "j1ai2CG8BGp4mYf2TWSFjjy1pRgW9XbqhdR4EOVvrlFVbcpEPfXNIPEdjkcgK+txWCupGzkFnFF8oZsASMtmyw==",
  4321. "type": "package",
  4322. "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.2.0",
  4323. "files": [
  4324. ".nupkg.metadata",
  4325. ".signature.p7s",
  4326. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll",
  4327. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.xml",
  4328. "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512",
  4329. "microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec"
  4330. ]
  4331. },
  4332. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": {
  4333. "sha512": "qTACI0wePgAKCH+YKrMgChyfqJpjwgGZEtSuwBw6TjWLQ66THGasleia/7EZz2t2eAjwWxw8RA/D8ODrBqpj9A==",
  4334. "type": "package",
  4335. "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.2.0",
  4336. "files": [
  4337. ".nupkg.metadata",
  4338. ".signature.p7s",
  4339. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll",
  4340. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml",
  4341. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll",
  4342. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml",
  4343. "microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg.sha512",
  4344. "microsoft.aspnetcore.server.kestrel.transport.sockets.nuspec"
  4345. ]
  4346. },
  4347. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  4348. "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
  4349. "type": "package",
  4350. "path": "microsoft.aspnetcore.webutilities/2.2.0",
  4351. "files": [
  4352. ".nupkg.metadata",
  4353. ".signature.p7s",
  4354. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  4355. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  4356. "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512",
  4357. "microsoft.aspnetcore.webutilities.nuspec"
  4358. ]
  4359. },
  4360. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  4361. "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
  4362. "type": "package",
  4363. "path": "microsoft.codeanalysis.analyzers/1.1.0",
  4364. "hasTools": true,
  4365. "files": [
  4366. ".nupkg.metadata",
  4367. ".signature.p7s",
  4368. "ThirdPartyNotices.rtf",
  4369. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  4370. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  4371. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  4372. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  4373. "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512",
  4374. "microsoft.codeanalysis.analyzers.nuspec",
  4375. "tools/install.ps1",
  4376. "tools/uninstall.ps1"
  4377. ]
  4378. },
  4379. "Microsoft.CodeAnalysis.Common/2.8.0": {
  4380. "sha512": "06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==",
  4381. "type": "package",
  4382. "path": "microsoft.codeanalysis.common/2.8.0",
  4383. "files": [
  4384. ".nupkg.metadata",
  4385. ".signature.p7s",
  4386. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll",
  4387. "lib/netstandard1.3/Microsoft.CodeAnalysis.pdb",
  4388. "lib/netstandard1.3/Microsoft.CodeAnalysis.xml",
  4389. "microsoft.codeanalysis.common.2.8.0.nupkg.sha512",
  4390. "microsoft.codeanalysis.common.nuspec"
  4391. ]
  4392. },
  4393. "Microsoft.CodeAnalysis.CSharp/2.8.0": {
  4394. "sha512": "RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==",
  4395. "type": "package",
  4396. "path": "microsoft.codeanalysis.csharp/2.8.0",
  4397. "files": [
  4398. ".nupkg.metadata",
  4399. ".signature.p7s",
  4400. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll",
  4401. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.pdb",
  4402. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml",
  4403. "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512",
  4404. "microsoft.codeanalysis.csharp.nuspec"
  4405. ]
  4406. },
  4407. "Microsoft.CodeAnalysis.Razor/2.2.0": {
  4408. "sha512": "2qL0Qyu5qHzg6/JzF80mLgsqn9NP/Q0mQwjH+Z+DiqcuODJx8segjN4un2Tnz6bEAWv8FCRFNXR/s5wzlxqA8A==",
  4409. "type": "package",
  4410. "path": "microsoft.codeanalysis.razor/2.2.0",
  4411. "files": [
  4412. ".nupkg.metadata",
  4413. ".signature.p7s",
  4414. "lib/net46/Microsoft.CodeAnalysis.Razor.dll",
  4415. "lib/net46/Microsoft.CodeAnalysis.Razor.xml",
  4416. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  4417. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml",
  4418. "microsoft.codeanalysis.razor.2.2.0.nupkg.sha512",
  4419. "microsoft.codeanalysis.razor.nuspec"
  4420. ]
  4421. },
  4422. "Microsoft.CSharp/4.5.0": {
  4423. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  4424. "type": "package",
  4425. "path": "microsoft.csharp/4.5.0",
  4426. "files": [
  4427. ".nupkg.metadata",
  4428. ".signature.p7s",
  4429. "LICENSE.TXT",
  4430. "THIRD-PARTY-NOTICES.TXT",
  4431. "lib/MonoAndroid10/_._",
  4432. "lib/MonoTouch10/_._",
  4433. "lib/net45/_._",
  4434. "lib/netcore50/Microsoft.CSharp.dll",
  4435. "lib/netcoreapp2.0/_._",
  4436. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4437. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4438. "lib/portable-net45+win8+wp8+wpa81/_._",
  4439. "lib/uap10.0.16299/_._",
  4440. "lib/win8/_._",
  4441. "lib/wp80/_._",
  4442. "lib/wpa81/_._",
  4443. "lib/xamarinios10/_._",
  4444. "lib/xamarinmac20/_._",
  4445. "lib/xamarintvos10/_._",
  4446. "lib/xamarinwatchos10/_._",
  4447. "microsoft.csharp.4.5.0.nupkg.sha512",
  4448. "microsoft.csharp.nuspec",
  4449. "ref/MonoAndroid10/_._",
  4450. "ref/MonoTouch10/_._",
  4451. "ref/net45/_._",
  4452. "ref/netcore50/Microsoft.CSharp.dll",
  4453. "ref/netcore50/Microsoft.CSharp.xml",
  4454. "ref/netcore50/de/Microsoft.CSharp.xml",
  4455. "ref/netcore50/es/Microsoft.CSharp.xml",
  4456. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4457. "ref/netcore50/it/Microsoft.CSharp.xml",
  4458. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4459. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4460. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4461. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4462. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4463. "ref/netcoreapp2.0/_._",
  4464. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4465. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4466. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4467. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4468. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4469. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4470. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4471. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4472. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4473. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4474. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4475. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4476. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4477. "ref/portable-net45+win8+wp8+wpa81/_._",
  4478. "ref/uap10.0.16299/_._",
  4479. "ref/win8/_._",
  4480. "ref/wp80/_._",
  4481. "ref/wpa81/_._",
  4482. "ref/xamarinios10/_._",
  4483. "ref/xamarinmac20/_._",
  4484. "ref/xamarintvos10/_._",
  4485. "ref/xamarinwatchos10/_._",
  4486. "useSharedDesignerContext.txt",
  4487. "version.txt"
  4488. ]
  4489. },
  4490. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  4491. "sha512": "9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==",
  4492. "type": "package",
  4493. "path": "microsoft.dotnet.platformabstractions/2.1.0",
  4494. "files": [
  4495. ".nupkg.metadata",
  4496. ".signature.p7s",
  4497. "LICENSE.TXT",
  4498. "THIRD-PARTY-NOTICES.TXT",
  4499. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll",
  4500. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll",
  4501. "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512",
  4502. "microsoft.dotnet.platformabstractions.nuspec"
  4503. ]
  4504. },
  4505. "Microsoft.Extensions.Caching.Abstractions/2.2.0": {
  4506. "sha512": "spsJkYo8gGJapaxTSQFN/wqA+ghpJMLwB4ZyTB+fSdpd7AmMFP/YSpIcGmczcw4KggpxLGhLk7lCkSIlgvHaqQ==",
  4507. "type": "package",
  4508. "path": "microsoft.extensions.caching.abstractions/2.2.0",
  4509. "files": [
  4510. ".nupkg.metadata",
  4511. ".signature.p7s",
  4512. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4513. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4514. "microsoft.extensions.caching.abstractions.2.2.0.nupkg.sha512",
  4515. "microsoft.extensions.caching.abstractions.nuspec"
  4516. ]
  4517. },
  4518. "Microsoft.Extensions.Caching.Memory/2.2.0": {
  4519. "sha512": "yFs44RzB2Pzfoj4uk+mEz3MTTQKyeWb8gDhv5GyVPfHnLv0eQhGwzbw/5WpxAcVyOgG/H3/0ULY6g0/7/B+r7w==",
  4520. "type": "package",
  4521. "path": "microsoft.extensions.caching.memory/2.2.0",
  4522. "files": [
  4523. ".nupkg.metadata",
  4524. ".signature.p7s",
  4525. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4526. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4527. "microsoft.extensions.caching.memory.2.2.0.nupkg.sha512",
  4528. "microsoft.extensions.caching.memory.nuspec"
  4529. ]
  4530. },
  4531. "Microsoft.Extensions.Configuration/3.1.2": {
  4532. "sha512": "BxwRSBab309SYMCDCFyB6eSc7FnX5m9kOJQHw2IQIyb5PEtpfslhscTw63Gwhl3dPnaM1VGFXIyI0BVgpiLgOw==",
  4533. "type": "package",
  4534. "path": "microsoft.extensions.configuration/3.1.2",
  4535. "files": [
  4536. ".nupkg.metadata",
  4537. ".signature.p7s",
  4538. "Icon.png",
  4539. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  4540. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  4541. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  4542. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  4543. "microsoft.extensions.configuration.3.1.2.nupkg.sha512",
  4544. "microsoft.extensions.configuration.nuspec"
  4545. ]
  4546. },
  4547. "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
  4548. "sha512": "xmfdVdazTslWJ8od7uNS9QSPqn1wBC84RLprPrFS20EdAqd3lV0g0IZAitYbCiiICpjktnhzbUb85aLHNZ3RQw==",
  4549. "type": "package",
  4550. "path": "microsoft.extensions.configuration.abstractions/3.1.2",
  4551. "files": [
  4552. ".nupkg.metadata",
  4553. ".signature.p7s",
  4554. "Icon.png",
  4555. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  4556. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  4557. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4558. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4559. "microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512",
  4560. "microsoft.extensions.configuration.abstractions.nuspec"
  4561. ]
  4562. },
  4563. "Microsoft.Extensions.Configuration.Binder/3.1.2": {
  4564. "sha512": "IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
  4565. "type": "package",
  4566. "path": "microsoft.extensions.configuration.binder/3.1.2",
  4567. "files": [
  4568. ".nupkg.metadata",
  4569. ".signature.p7s",
  4570. "Icon.png",
  4571. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  4572. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  4573. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  4574. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  4575. "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512",
  4576. "microsoft.extensions.configuration.binder.nuspec"
  4577. ]
  4578. },
  4579. "Microsoft.Extensions.Configuration.CommandLine/2.2.0": {
  4580. "sha512": "4kJIGOSRqD1Ccqerst4t/zsNs51plR7BIxbdKO1J/9rL+2DuNT+ieAuEv+HROelqTam3yOpKFR7TtHBt3oLpOA==",
  4581. "type": "package",
  4582. "path": "microsoft.extensions.configuration.commandline/2.2.0",
  4583. "files": [
  4584. ".nupkg.metadata",
  4585. ".signature.p7s",
  4586. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  4587. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  4588. "microsoft.extensions.configuration.commandline.2.2.0.nupkg.sha512",
  4589. "microsoft.extensions.configuration.commandline.nuspec"
  4590. ]
  4591. },
  4592. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
  4593. "sha512": "gIqt9PkKO01hZ0zmHnWrZ1E45MDreZTVoyDbL1kMWKtDgxxWTJpYtESTEcgpvR1uB1iex1zKGYzJpOMgmuP5TQ==",
  4594. "type": "package",
  4595. "path": "microsoft.extensions.configuration.environmentvariables/2.2.0",
  4596. "files": [
  4597. ".nupkg.metadata",
  4598. ".signature.p7s",
  4599. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  4600. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  4601. "microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512",
  4602. "microsoft.extensions.configuration.environmentvariables.nuspec"
  4603. ]
  4604. },
  4605. "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
  4606. "sha512": "H1qCpWBC8Ed4tguTR/qYkbb3F6DI5Su3t8xyFo3/5MzAd8PwPpHzgX8X04KbBxKmk173Pb64x7xMHarczVFQUA==",
  4607. "type": "package",
  4608. "path": "microsoft.extensions.configuration.fileextensions/2.2.0",
  4609. "files": [
  4610. ".nupkg.metadata",
  4611. ".signature.p7s",
  4612. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  4613. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  4614. "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512",
  4615. "microsoft.extensions.configuration.fileextensions.nuspec"
  4616. ]
  4617. },
  4618. "Microsoft.Extensions.Configuration.Json/2.2.0": {
  4619. "sha512": "jUDdmLyFmLf9V3mqnMzSAzAv4QigJ67tZh5Q7HBXeBnESL2UyeesNG6jSBti+b63JpxZf+EDyn+anx3gyrNxug==",
  4620. "type": "package",
  4621. "path": "microsoft.extensions.configuration.json/2.2.0",
  4622. "files": [
  4623. ".nupkg.metadata",
  4624. ".signature.p7s",
  4625. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  4626. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  4627. "microsoft.extensions.configuration.json.2.2.0.nupkg.sha512",
  4628. "microsoft.extensions.configuration.json.nuspec"
  4629. ]
  4630. },
  4631. "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": {
  4632. "sha512": "2/N2xo6/sNbVshnKktmq5lwaQbsAR2SrzCVrJEeMP8OKZVI7SzT8P6/WXZF8/YC7dTYsMe3nrHzgl1cF9i5ZKQ==",
  4633. "type": "package",
  4634. "path": "microsoft.extensions.configuration.usersecrets/2.2.0",
  4635. "files": [
  4636. ".nupkg.metadata",
  4637. ".signature.p7s",
  4638. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  4639. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  4640. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  4641. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  4642. "microsoft.extensions.configuration.usersecrets.2.2.0.nupkg.sha512",
  4643. "microsoft.extensions.configuration.usersecrets.nuspec"
  4644. ]
  4645. },
  4646. "Microsoft.Extensions.DependencyInjection/3.1.2": {
  4647. "sha512": "e+F6/wjQPOFHB/sGWTAqC8FX/C6+JZWWLpryXTAQYIS3tr+17lByADdP9Y6RtxfJ4kW/IPrU6RuxTNZNdAQz1A==",
  4648. "type": "package",
  4649. "path": "microsoft.extensions.dependencyinjection/3.1.2",
  4650. "files": [
  4651. ".nupkg.metadata",
  4652. ".signature.p7s",
  4653. "Icon.png",
  4654. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4655. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4656. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
  4657. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
  4658. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4659. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4660. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4661. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4662. "microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512",
  4663. "microsoft.extensions.dependencyinjection.nuspec"
  4664. ]
  4665. },
  4666. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
  4667. "sha512": "/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
  4668. "type": "package",
  4669. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
  4670. "files": [
  4671. ".nupkg.metadata",
  4672. ".signature.p7s",
  4673. "Icon.png",
  4674. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4675. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4676. "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
  4677. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  4678. ]
  4679. },
  4680. "Microsoft.Extensions.DependencyModel/2.1.0": {
  4681. "sha512": "nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==",
  4682. "type": "package",
  4683. "path": "microsoft.extensions.dependencymodel/2.1.0",
  4684. "files": [
  4685. ".nupkg.metadata",
  4686. ".signature.p7s",
  4687. "LICENSE.TXT",
  4688. "THIRD-PARTY-NOTICES.TXT",
  4689. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  4690. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  4691. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  4692. "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512",
  4693. "microsoft.extensions.dependencymodel.nuspec"
  4694. ]
  4695. },
  4696. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
  4697. "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==",
  4698. "type": "package",
  4699. "path": "microsoft.extensions.fileproviders.abstractions/2.2.0",
  4700. "files": [
  4701. ".nupkg.metadata",
  4702. ".signature.p7s",
  4703. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4704. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4705. "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512",
  4706. "microsoft.extensions.fileproviders.abstractions.nuspec"
  4707. ]
  4708. },
  4709. "Microsoft.Extensions.FileProviders.Composite/2.2.0": {
  4710. "sha512": "Az/RxWB+UlyVN/TvQFaGXx8XAXVZN5WQnnuJOsjwBzghSJc1i8zqNjIypPHOedcuIXs2XSWgOSL6YQ3BlCnoJA==",
  4711. "type": "package",
  4712. "path": "microsoft.extensions.fileproviders.composite/2.2.0",
  4713. "files": [
  4714. ".nupkg.metadata",
  4715. ".signature.p7s",
  4716. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
  4717. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
  4718. "microsoft.extensions.fileproviders.composite.2.2.0.nupkg.sha512",
  4719. "microsoft.extensions.fileproviders.composite.nuspec"
  4720. ]
  4721. },
  4722. "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
  4723. "sha512": "tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==",
  4724. "type": "package",
  4725. "path": "microsoft.extensions.fileproviders.physical/2.2.0",
  4726. "files": [
  4727. ".nupkg.metadata",
  4728. ".signature.p7s",
  4729. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  4730. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  4731. "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512",
  4732. "microsoft.extensions.fileproviders.physical.nuspec"
  4733. ]
  4734. },
  4735. "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
  4736. "sha512": "ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==",
  4737. "type": "package",
  4738. "path": "microsoft.extensions.filesystemglobbing/2.2.0",
  4739. "files": [
  4740. ".nupkg.metadata",
  4741. ".signature.p7s",
  4742. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  4743. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  4744. "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512",
  4745. "microsoft.extensions.filesystemglobbing.nuspec"
  4746. ]
  4747. },
  4748. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  4749. "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  4750. "type": "package",
  4751. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  4752. "files": [
  4753. ".nupkg.metadata",
  4754. ".signature.p7s",
  4755. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  4756. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  4757. "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
  4758. "microsoft.extensions.hosting.abstractions.nuspec"
  4759. ]
  4760. },
  4761. "Microsoft.Extensions.Localization/2.2.0": {
  4762. "sha512": "3nBQLeBrcd4Rgd9vQi4gF5NgAWxnQrHekjjwlgww4wyLNfJDizjiex2resOLoAuAgy3y2IIAWjOpbr0UKR2ykw==",
  4763. "type": "package",
  4764. "path": "microsoft.extensions.localization/2.2.0",
  4765. "files": [
  4766. ".nupkg.metadata",
  4767. ".signature.p7s",
  4768. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
  4769. "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
  4770. "microsoft.extensions.localization.2.2.0.nupkg.sha512",
  4771. "microsoft.extensions.localization.nuspec"
  4772. ]
  4773. },
  4774. "Microsoft.Extensions.Localization.Abstractions/2.2.0": {
  4775. "sha512": "FQzXG/lYR9UOM2zHpqsjTRpp3EghIYo3FCsQpfmtbp+glPaU0WXZfNmMjyqBRmMj1Sq93fPnC+G9zzYRauuRQA==",
  4776. "type": "package",
  4777. "path": "microsoft.extensions.localization.abstractions/2.2.0",
  4778. "files": [
  4779. ".nupkg.metadata",
  4780. ".signature.p7s",
  4781. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
  4782. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
  4783. "microsoft.extensions.localization.abstractions.2.2.0.nupkg.sha512",
  4784. "microsoft.extensions.localization.abstractions.nuspec"
  4785. ]
  4786. },
  4787. "Microsoft.Extensions.Logging/3.1.2": {
  4788. "sha512": "AIIRgKamzEqJNLZsHd37VogFX9YpxgrBmf/b3dznD7S0qjxWQnAs498ulLV1n6AKJ8XVjTCBNzsvQiSwCa7dIw==",
  4789. "type": "package",
  4790. "path": "microsoft.extensions.logging/3.1.2",
  4791. "files": [
  4792. ".nupkg.metadata",
  4793. ".signature.p7s",
  4794. "Icon.png",
  4795. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
  4796. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
  4797. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4798. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4799. "microsoft.extensions.logging.3.1.2.nupkg.sha512",
  4800. "microsoft.extensions.logging.nuspec"
  4801. ]
  4802. },
  4803. "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
  4804. "sha512": "cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
  4805. "type": "package",
  4806. "path": "microsoft.extensions.logging.abstractions/3.1.2",
  4807. "files": [
  4808. ".nupkg.metadata",
  4809. ".signature.p7s",
  4810. "Icon.png",
  4811. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4812. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4813. "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
  4814. "microsoft.extensions.logging.abstractions.nuspec"
  4815. ]
  4816. },
  4817. "Microsoft.Extensions.Logging.Configuration/2.2.0": {
  4818. "sha512": "ukU1mQGX9+xBsEzpNd13yl4deFVYI+fxxnmKpOhvNZsF+/trCrAUQh+9QM5pPGHbfYkz3lLQ4BXfKCP0502dLw==",
  4819. "type": "package",
  4820. "path": "microsoft.extensions.logging.configuration/2.2.0",
  4821. "files": [
  4822. ".nupkg.metadata",
  4823. ".signature.p7s",
  4824. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  4825. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  4826. "microsoft.extensions.logging.configuration.2.2.0.nupkg.sha512",
  4827. "microsoft.extensions.logging.configuration.nuspec"
  4828. ]
  4829. },
  4830. "Microsoft.Extensions.Logging.Console/2.2.0": {
  4831. "sha512": "1eGgcOJ++PMxW6sn++j6U7wsWvhEBm/5ScqBUUBGLRE8M7AHahi9tsxivDMqEXVM3F0/pshHl3kEpMXtw4BeFg==",
  4832. "type": "package",
  4833. "path": "microsoft.extensions.logging.console/2.2.0",
  4834. "files": [
  4835. ".nupkg.metadata",
  4836. ".signature.p7s",
  4837. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  4838. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  4839. "microsoft.extensions.logging.console.2.2.0.nupkg.sha512",
  4840. "microsoft.extensions.logging.console.nuspec"
  4841. ]
  4842. },
  4843. "Microsoft.Extensions.Logging.Debug/2.2.0": {
  4844. "sha512": "JjqWtshxUujSnxslFccCRAaH8uFOciqXkYdRw+h5MwpC4sUc+ju9yZzvVi6PA5vW09ckv26EkasEvXrofGiaJg==",
  4845. "type": "package",
  4846. "path": "microsoft.extensions.logging.debug/2.2.0",
  4847. "files": [
  4848. ".nupkg.metadata",
  4849. ".signature.p7s",
  4850. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  4851. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  4852. "microsoft.extensions.logging.debug.2.2.0.nupkg.sha512",
  4853. "microsoft.extensions.logging.debug.nuspec"
  4854. ]
  4855. },
  4856. "Microsoft.Extensions.Logging.EventSource/2.2.0": {
  4857. "sha512": "oOa5H+vdNgpsxE6vgtX4U/godKtX2edVi+QjlWb2PBQfavGIQ3WxtjxN+B0DQAjwBNdV4mW8cgOiDEZ8KdR7Ig==",
  4858. "type": "package",
  4859. "path": "microsoft.extensions.logging.eventsource/2.2.0",
  4860. "files": [
  4861. ".nupkg.metadata",
  4862. ".signature.p7s",
  4863. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  4864. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  4865. "microsoft.extensions.logging.eventsource.2.2.0.nupkg.sha512",
  4866. "microsoft.extensions.logging.eventsource.nuspec"
  4867. ]
  4868. },
  4869. "Microsoft.Extensions.ObjectPool/2.2.0": {
  4870. "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
  4871. "type": "package",
  4872. "path": "microsoft.extensions.objectpool/2.2.0",
  4873. "files": [
  4874. ".nupkg.metadata",
  4875. ".signature.p7s",
  4876. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
  4877. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
  4878. "microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
  4879. "microsoft.extensions.objectpool.nuspec"
  4880. ]
  4881. },
  4882. "Microsoft.Extensions.Options/3.1.2": {
  4883. "sha512": "6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
  4884. "type": "package",
  4885. "path": "microsoft.extensions.options/3.1.2",
  4886. "files": [
  4887. ".nupkg.metadata",
  4888. ".signature.p7s",
  4889. "Icon.png",
  4890. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  4891. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  4892. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4893. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4894. "microsoft.extensions.options.3.1.2.nupkg.sha512",
  4895. "microsoft.extensions.options.nuspec"
  4896. ]
  4897. },
  4898. "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": {
  4899. "sha512": "d4WS6yVXaw43ffiUnHj8oG1t2B6RbDDiQcgdA+Eq//NlPa3Wd+GTJFKj4OM4eDF3GjVumGr/CEVRS/jcYoF5LA==",
  4900. "type": "package",
  4901. "path": "microsoft.extensions.options.configurationextensions/2.2.0",
  4902. "files": [
  4903. ".nupkg.metadata",
  4904. ".signature.p7s",
  4905. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  4906. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  4907. "microsoft.extensions.options.configurationextensions.2.2.0.nupkg.sha512",
  4908. "microsoft.extensions.options.configurationextensions.nuspec"
  4909. ]
  4910. },
  4911. "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
  4912. "sha512": "H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
  4913. "type": "package",
  4914. "path": "microsoft.extensions.platformabstractions/1.1.0",
  4915. "files": [
  4916. ".nupkg.metadata",
  4917. ".signature.p7s",
  4918. "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
  4919. "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
  4920. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll",
  4921. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml",
  4922. "microsoft.extensions.platformabstractions.1.1.0.nupkg.sha512",
  4923. "microsoft.extensions.platformabstractions.nuspec"
  4924. ]
  4925. },
  4926. "Microsoft.Extensions.Primitives/3.1.2": {
  4927. "sha512": "WGtoFWY9yc9HGMG6ObDNQPz9dBP+xz/GqFe2dKjdE/cSdXFEKxCFTyYCzL/e8kxVkc/Bq9qjOsXRWydvn0g9Uw==",
  4928. "type": "package",
  4929. "path": "microsoft.extensions.primitives/3.1.2",
  4930. "files": [
  4931. ".nupkg.metadata",
  4932. ".signature.p7s",
  4933. "Icon.png",
  4934. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  4935. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  4936. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4937. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4938. "microsoft.extensions.primitives.3.1.2.nupkg.sha512",
  4939. "microsoft.extensions.primitives.nuspec"
  4940. ]
  4941. },
  4942. "Microsoft.Extensions.WebEncoders/2.2.0": {
  4943. "sha512": "V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==",
  4944. "type": "package",
  4945. "path": "microsoft.extensions.webencoders/2.2.0",
  4946. "files": [
  4947. ".nupkg.metadata",
  4948. ".signature.p7s",
  4949. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll",
  4950. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.xml",
  4951. "microsoft.extensions.webencoders.2.2.0.nupkg.sha512",
  4952. "microsoft.extensions.webencoders.nuspec"
  4953. ]
  4954. },
  4955. "Microsoft.Net.Http.Headers/2.2.0": {
  4956. "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
  4957. "type": "package",
  4958. "path": "microsoft.net.http.headers/2.2.0",
  4959. "files": [
  4960. ".nupkg.metadata",
  4961. ".signature.p7s",
  4962. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  4963. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  4964. "microsoft.net.http.headers.2.2.0.nupkg.sha512",
  4965. "microsoft.net.http.headers.nuspec"
  4966. ]
  4967. },
  4968. "Microsoft.NETCore.Platforms/5.0.0": {
  4969. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4970. "type": "package",
  4971. "path": "microsoft.netcore.platforms/5.0.0",
  4972. "files": [
  4973. ".nupkg.metadata",
  4974. ".signature.p7s",
  4975. "Icon.png",
  4976. "LICENSE.TXT",
  4977. "THIRD-PARTY-NOTICES.TXT",
  4978. "lib/netstandard1.0/_._",
  4979. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  4980. "microsoft.netcore.platforms.nuspec",
  4981. "runtime.json",
  4982. "useSharedDesignerContext.txt",
  4983. "version.txt"
  4984. ]
  4985. },
  4986. "Microsoft.NETCore.Targets/1.1.0": {
  4987. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4988. "type": "package",
  4989. "path": "microsoft.netcore.targets/1.1.0",
  4990. "files": [
  4991. ".nupkg.metadata",
  4992. ".signature.p7s",
  4993. "ThirdPartyNotices.txt",
  4994. "dotnet_library_license.txt",
  4995. "lib/netstandard1.0/_._",
  4996. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4997. "microsoft.netcore.targets.nuspec",
  4998. "runtime.json"
  4999. ]
  5000. },
  5001. "Microsoft.Win32.Primitives/4.3.0": {
  5002. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  5003. "type": "package",
  5004. "path": "microsoft.win32.primitives/4.3.0",
  5005. "files": [
  5006. ".nupkg.metadata",
  5007. ".signature.p7s",
  5008. "ThirdPartyNotices.txt",
  5009. "dotnet_library_license.txt",
  5010. "lib/MonoAndroid10/_._",
  5011. "lib/MonoTouch10/_._",
  5012. "lib/net46/Microsoft.Win32.Primitives.dll",
  5013. "lib/xamarinios10/_._",
  5014. "lib/xamarinmac20/_._",
  5015. "lib/xamarintvos10/_._",
  5016. "lib/xamarinwatchos10/_._",
  5017. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  5018. "microsoft.win32.primitives.nuspec",
  5019. "ref/MonoAndroid10/_._",
  5020. "ref/MonoTouch10/_._",
  5021. "ref/net46/Microsoft.Win32.Primitives.dll",
  5022. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5023. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5024. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5025. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5026. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5027. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5028. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5029. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5030. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5031. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5032. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5033. "ref/xamarinios10/_._",
  5034. "ref/xamarinmac20/_._",
  5035. "ref/xamarintvos10/_._",
  5036. "ref/xamarinwatchos10/_._"
  5037. ]
  5038. },
  5039. "Microsoft.Win32.Registry/4.5.0": {
  5040. "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
  5041. "type": "package",
  5042. "path": "microsoft.win32.registry/4.5.0",
  5043. "files": [
  5044. ".nupkg.metadata",
  5045. ".signature.p7s",
  5046. "LICENSE.TXT",
  5047. "THIRD-PARTY-NOTICES.TXT",
  5048. "lib/net46/Microsoft.Win32.Registry.dll",
  5049. "lib/net461/Microsoft.Win32.Registry.dll",
  5050. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5051. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5052. "microsoft.win32.registry.4.5.0.nupkg.sha512",
  5053. "microsoft.win32.registry.nuspec",
  5054. "ref/net46/Microsoft.Win32.Registry.dll",
  5055. "ref/net461/Microsoft.Win32.Registry.dll",
  5056. "ref/net461/Microsoft.Win32.Registry.xml",
  5057. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  5058. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  5059. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  5060. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  5061. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  5062. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  5063. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  5064. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  5065. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  5066. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  5067. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  5068. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  5069. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  5070. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5071. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  5072. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  5073. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5074. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5075. "useSharedDesignerContext.txt",
  5076. "version.txt"
  5077. ]
  5078. },
  5079. "Microsoft.Win32.SystemEvents/5.0.0": {
  5080. "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  5081. "type": "package",
  5082. "path": "microsoft.win32.systemevents/5.0.0",
  5083. "files": [
  5084. ".nupkg.metadata",
  5085. ".signature.p7s",
  5086. "Icon.png",
  5087. "LICENSE.TXT",
  5088. "THIRD-PARTY-NOTICES.TXT",
  5089. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5090. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5091. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5092. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5093. "microsoft.win32.systemevents.5.0.0.nupkg.sha512",
  5094. "microsoft.win32.systemevents.nuspec",
  5095. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  5096. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  5097. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5098. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5099. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  5100. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  5101. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  5102. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  5103. "useSharedDesignerContext.txt",
  5104. "version.txt"
  5105. ]
  5106. },
  5107. "NETStandard.Library/1.6.1": {
  5108. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5109. "type": "package",
  5110. "path": "netstandard.library/1.6.1",
  5111. "files": [
  5112. ".nupkg.metadata",
  5113. ".signature.p7s",
  5114. "ThirdPartyNotices.txt",
  5115. "dotnet_library_license.txt",
  5116. "netstandard.library.1.6.1.nupkg.sha512",
  5117. "netstandard.library.nuspec"
  5118. ]
  5119. },
  5120. "Newtonsoft.Json/11.0.2": {
  5121. "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
  5122. "type": "package",
  5123. "path": "newtonsoft.json/11.0.2",
  5124. "files": [
  5125. ".nupkg.metadata",
  5126. ".signature.p7s",
  5127. "LICENSE.md",
  5128. "lib/net20/Newtonsoft.Json.dll",
  5129. "lib/net20/Newtonsoft.Json.xml",
  5130. "lib/net35/Newtonsoft.Json.dll",
  5131. "lib/net35/Newtonsoft.Json.xml",
  5132. "lib/net40/Newtonsoft.Json.dll",
  5133. "lib/net40/Newtonsoft.Json.xml",
  5134. "lib/net45/Newtonsoft.Json.dll",
  5135. "lib/net45/Newtonsoft.Json.xml",
  5136. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5137. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5138. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5139. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5140. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5141. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5142. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  5143. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  5144. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  5145. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  5146. "newtonsoft.json.11.0.2.nupkg.sha512",
  5147. "newtonsoft.json.nuspec"
  5148. ]
  5149. },
  5150. "Newtonsoft.Json.Bson/1.0.1": {
  5151. "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
  5152. "type": "package",
  5153. "path": "newtonsoft.json.bson/1.0.1",
  5154. "files": [
  5155. ".nupkg.metadata",
  5156. ".signature.p7s",
  5157. "lib/net45/Newtonsoft.Json.Bson.dll",
  5158. "lib/net45/Newtonsoft.Json.Bson.xml",
  5159. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  5160. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  5161. "newtonsoft.json.bson.1.0.1.nupkg.sha512",
  5162. "newtonsoft.json.bson.nuspec"
  5163. ]
  5164. },
  5165. "Polly/7.2.0": {
  5166. "sha512": "fbtSRyqVSd5AS7O4Pm2Mnw7zKKJk7Z3rOfNnKSTfPkTxM8Z1JJFZzzjqLAOTG6AyUkormSWMO2AhdlygF/384Q==",
  5167. "type": "package",
  5168. "path": "polly/7.2.0",
  5169. "files": [
  5170. ".nupkg.metadata",
  5171. ".signature.p7s",
  5172. "lib/net461/Polly.dll",
  5173. "lib/net461/Polly.pdb",
  5174. "lib/net461/Polly.xml",
  5175. "lib/net472/Polly.dll",
  5176. "lib/net472/Polly.pdb",
  5177. "lib/net472/Polly.xml",
  5178. "lib/netstandard1.1/Polly.dll",
  5179. "lib/netstandard1.1/Polly.pdb",
  5180. "lib/netstandard1.1/Polly.xml",
  5181. "lib/netstandard2.0/Polly.dll",
  5182. "lib/netstandard2.0/Polly.pdb",
  5183. "lib/netstandard2.0/Polly.xml",
  5184. "polly.7.2.0.nupkg.sha512",
  5185. "polly.nuspec"
  5186. ]
  5187. },
  5188. "QRCoder/1.4.3": {
  5189. "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  5190. "type": "package",
  5191. "path": "qrcoder/1.4.3",
  5192. "files": [
  5193. ".nupkg.metadata",
  5194. ".signature.p7s",
  5195. "lib/net35/QRCoder.dll",
  5196. "lib/net40/QRCoder.dll",
  5197. "lib/net5.0-windows7.0/QRCoder.dll",
  5198. "lib/net5.0/QRCoder.dll",
  5199. "lib/net6.0-windows7.0/QRCoder.dll",
  5200. "lib/net6.0/QRCoder.dll",
  5201. "lib/netstandard1.3/QRCoder.dll",
  5202. "lib/netstandard2.0/QRCoder.dll",
  5203. "nuget-icon.png",
  5204. "nuget-readme.md",
  5205. "qrcoder.1.4.3.nupkg.sha512",
  5206. "qrcoder.nuspec"
  5207. ]
  5208. },
  5209. "RabbitMQ.Client/5.1.2": {
  5210. "sha512": "Xhj+un0pw4N7h37SZWptxl/NEv7f1RLHwZhXjqzkCm3w3IdbFJh+HjVyPaciD848BUYLGoEQzadx90nShsbs4Q==",
  5211. "type": "package",
  5212. "path": "rabbitmq.client/5.1.2",
  5213. "files": [
  5214. ".nupkg.metadata",
  5215. ".signature.p7s",
  5216. "lib/net451/RabbitMQ.Client.dll",
  5217. "lib/net451/RabbitMQ.Client.xml",
  5218. "lib/netstandard1.5/RabbitMQ.Client.dll",
  5219. "lib/netstandard1.5/RabbitMQ.Client.xml",
  5220. "lib/netstandard2.0/RabbitMQ.Client.dll",
  5221. "lib/netstandard2.0/RabbitMQ.Client.xml",
  5222. "rabbitmq.client.5.1.2.nupkg.sha512",
  5223. "rabbitmq.client.nuspec"
  5224. ]
  5225. },
  5226. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5227. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5228. "type": "package",
  5229. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5230. "files": [
  5231. ".nupkg.metadata",
  5232. ".signature.p7s",
  5233. "ThirdPartyNotices.txt",
  5234. "dotnet_library_license.txt",
  5235. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5236. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5237. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5238. ]
  5239. },
  5240. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5241. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5242. "type": "package",
  5243. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5244. "files": [
  5245. ".nupkg.metadata",
  5246. ".signature.p7s",
  5247. "ThirdPartyNotices.txt",
  5248. "dotnet_library_license.txt",
  5249. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5250. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5251. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5252. ]
  5253. },
  5254. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5255. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5256. "type": "package",
  5257. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5258. "files": [
  5259. ".nupkg.metadata",
  5260. ".signature.p7s",
  5261. "ThirdPartyNotices.txt",
  5262. "dotnet_library_license.txt",
  5263. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5264. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5265. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5266. ]
  5267. },
  5268. "runtime.native.System/4.3.0": {
  5269. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5270. "type": "package",
  5271. "path": "runtime.native.system/4.3.0",
  5272. "files": [
  5273. ".nupkg.metadata",
  5274. ".signature.p7s",
  5275. "ThirdPartyNotices.txt",
  5276. "dotnet_library_license.txt",
  5277. "lib/netstandard1.0/_._",
  5278. "runtime.native.system.4.3.0.nupkg.sha512",
  5279. "runtime.native.system.nuspec"
  5280. ]
  5281. },
  5282. "runtime.native.System.IO.Compression/4.3.0": {
  5283. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5284. "type": "package",
  5285. "path": "runtime.native.system.io.compression/4.3.0",
  5286. "files": [
  5287. ".nupkg.metadata",
  5288. ".signature.p7s",
  5289. "ThirdPartyNotices.txt",
  5290. "dotnet_library_license.txt",
  5291. "lib/netstandard1.0/_._",
  5292. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5293. "runtime.native.system.io.compression.nuspec"
  5294. ]
  5295. },
  5296. "runtime.native.System.Net.Http/4.3.0": {
  5297. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5298. "type": "package",
  5299. "path": "runtime.native.system.net.http/4.3.0",
  5300. "files": [
  5301. ".nupkg.metadata",
  5302. ".signature.p7s",
  5303. "ThirdPartyNotices.txt",
  5304. "dotnet_library_license.txt",
  5305. "lib/netstandard1.0/_._",
  5306. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5307. "runtime.native.system.net.http.nuspec"
  5308. ]
  5309. },
  5310. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5311. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5312. "type": "package",
  5313. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5314. "files": [
  5315. ".nupkg.metadata",
  5316. ".signature.p7s",
  5317. "ThirdPartyNotices.txt",
  5318. "dotnet_library_license.txt",
  5319. "lib/netstandard1.0/_._",
  5320. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5321. "runtime.native.system.security.cryptography.apple.nuspec"
  5322. ]
  5323. },
  5324. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5325. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  5326. "type": "package",
  5327. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  5328. "files": [
  5329. ".nupkg.metadata",
  5330. ".signature.p7s",
  5331. "ThirdPartyNotices.txt",
  5332. "dotnet_library_license.txt",
  5333. "lib/netstandard1.0/_._",
  5334. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5335. "runtime.native.system.security.cryptography.openssl.nuspec"
  5336. ]
  5337. },
  5338. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5339. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  5340. "type": "package",
  5341. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5342. "files": [
  5343. ".nupkg.metadata",
  5344. ".signature.p7s",
  5345. "ThirdPartyNotices.txt",
  5346. "dotnet_library_license.txt",
  5347. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5348. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5349. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5350. ]
  5351. },
  5352. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5353. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  5354. "type": "package",
  5355. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5356. "files": [
  5357. ".nupkg.metadata",
  5358. ".signature.p7s",
  5359. "ThirdPartyNotices.txt",
  5360. "dotnet_library_license.txt",
  5361. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5362. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5363. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5364. ]
  5365. },
  5366. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5367. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5368. "type": "package",
  5369. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5370. "files": [
  5371. ".nupkg.metadata",
  5372. ".signature.p7s",
  5373. "ThirdPartyNotices.txt",
  5374. "dotnet_library_license.txt",
  5375. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5376. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5377. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5378. ]
  5379. },
  5380. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5381. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  5382. "type": "package",
  5383. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5384. "files": [
  5385. ".nupkg.metadata",
  5386. ".signature.p7s",
  5387. "ThirdPartyNotices.txt",
  5388. "dotnet_library_license.txt",
  5389. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5390. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5391. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5392. ]
  5393. },
  5394. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5395. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  5396. "type": "package",
  5397. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5398. "files": [
  5399. ".nupkg.metadata",
  5400. ".signature.p7s",
  5401. "ThirdPartyNotices.txt",
  5402. "dotnet_library_license.txt",
  5403. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5404. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5405. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5406. ]
  5407. },
  5408. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5409. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  5410. "type": "package",
  5411. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5412. "files": [
  5413. ".nupkg.metadata",
  5414. ".signature.p7s",
  5415. "ThirdPartyNotices.txt",
  5416. "dotnet_library_license.txt",
  5417. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5418. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5419. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5420. ]
  5421. },
  5422. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5423. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  5424. "type": "package",
  5425. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5426. "files": [
  5427. ".nupkg.metadata",
  5428. ".signature.p7s",
  5429. "ThirdPartyNotices.txt",
  5430. "dotnet_library_license.txt",
  5431. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5432. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5433. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5434. ]
  5435. },
  5436. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5437. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  5438. "type": "package",
  5439. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5440. "files": [
  5441. ".nupkg.metadata",
  5442. ".signature.p7s",
  5443. "ThirdPartyNotices.txt",
  5444. "dotnet_library_license.txt",
  5445. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5446. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5447. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5448. ]
  5449. },
  5450. "Swifter.Core/1.2.9.6": {
  5451. "sha512": "UoCMb/SoxQnRdQA4sno9hS3fqJcu4JrxpyGIpZV4Az8zVJhJG/+VXdHPdwXlx2DnBUPBIbLQiU/wWghwnoyHdg==",
  5452. "type": "package",
  5453. "path": "swifter.core/1.2.9.6",
  5454. "files": [
  5455. ".nupkg.metadata",
  5456. ".signature.p7s",
  5457. "LICENSE",
  5458. "lib/net20/Swifter.Core.dll",
  5459. "lib/net20/Swifter.Core.xml",
  5460. "lib/net30/Swifter.Core.dll",
  5461. "lib/net30/Swifter.Core.xml",
  5462. "lib/net35/Swifter.Core.dll",
  5463. "lib/net35/Swifter.Core.xml",
  5464. "lib/net40/Swifter.Core.dll",
  5465. "lib/net40/Swifter.Core.xml",
  5466. "lib/net45/Swifter.Core.dll",
  5467. "lib/net45/Swifter.Core.xml",
  5468. "lib/net451/Swifter.Core.dll",
  5469. "lib/net451/Swifter.Core.xml",
  5470. "lib/net47/Swifter.Core.dll",
  5471. "lib/net47/Swifter.Core.xml",
  5472. "lib/net471/Swifter.Core.dll",
  5473. "lib/net471/Swifter.Core.xml",
  5474. "lib/netcoreapp2.0/Swifter.Core.dll",
  5475. "lib/netcoreapp2.0/Swifter.Core.xml",
  5476. "lib/netcoreapp2.1/Swifter.Core.dll",
  5477. "lib/netcoreapp2.1/Swifter.Core.xml",
  5478. "lib/netcoreapp3.0/Swifter.Core.dll",
  5479. "lib/netcoreapp3.0/Swifter.Core.xml",
  5480. "lib/netstandard2.0/Swifter.Core.dll",
  5481. "lib/netstandard2.0/Swifter.Core.xml",
  5482. "swifter.core.1.2.9.6.nupkg.sha512",
  5483. "swifter.core.nuspec"
  5484. ]
  5485. },
  5486. "Swifter.Json/1.2.9.6": {
  5487. "sha512": "GEaYblZa7FdFIcq47ImGpOYX3he1Qp6g9+3IXDMnLminSd+sUDZl9k2pNeM9zXsGhmmiVdlj8VyVr+TkCg7KAA==",
  5488. "type": "package",
  5489. "path": "swifter.json/1.2.9.6",
  5490. "files": [
  5491. ".nupkg.metadata",
  5492. ".signature.p7s",
  5493. "LICENSE",
  5494. "lib/net20/Swifter.Json.dll",
  5495. "lib/net20/Swifter.Json.xml",
  5496. "lib/net30/Swifter.Json.dll",
  5497. "lib/net30/Swifter.Json.xml",
  5498. "lib/net35/Swifter.Json.dll",
  5499. "lib/net35/Swifter.Json.xml",
  5500. "lib/net40/Swifter.Json.dll",
  5501. "lib/net40/Swifter.Json.xml",
  5502. "lib/net45/Swifter.Json.dll",
  5503. "lib/net45/Swifter.Json.xml",
  5504. "lib/net451/Swifter.Json.dll",
  5505. "lib/net451/Swifter.Json.xml",
  5506. "lib/net47/Swifter.Json.dll",
  5507. "lib/net47/Swifter.Json.xml",
  5508. "lib/net471/Swifter.Json.dll",
  5509. "lib/net471/Swifter.Json.xml",
  5510. "lib/netcoreapp2.0/Swifter.Json.dll",
  5511. "lib/netcoreapp2.0/Swifter.Json.xml",
  5512. "lib/netcoreapp2.1/Swifter.Json.dll",
  5513. "lib/netcoreapp2.1/Swifter.Json.xml",
  5514. "lib/netcoreapp3.0/Swifter.Json.dll",
  5515. "lib/netcoreapp3.0/Swifter.Json.xml",
  5516. "lib/netstandard2.0/Swifter.Json.dll",
  5517. "lib/netstandard2.0/Swifter.Json.xml",
  5518. "swifter.json.1.2.9.6.nupkg.sha512",
  5519. "swifter.json.nuspec"
  5520. ]
  5521. },
  5522. "Swifter.Unsafe/1.0.9": {
  5523. "sha512": "K0gw/5LpItw213rF50Gxvr8NTui5Y3ssJtSaq3T7e3QqBh1S3GxByP01WWggYVaC9ttNYOMAAiPJO+8E2SMpYg==",
  5524. "type": "package",
  5525. "path": "swifter.unsafe/1.0.9",
  5526. "files": [
  5527. ".nupkg.metadata",
  5528. ".signature.p7s",
  5529. "lib/net20/Swifter.Unsafe.dll",
  5530. "lib/netcoreapp2.0/Swifter.Unsafe.dll",
  5531. "lib/netstandard1.0/Swifter.Unsafe.dll",
  5532. "lib/netstandard2.0/Swifter.Unsafe.dll",
  5533. "swifter.unsafe.1.0.9.nupkg.sha512",
  5534. "swifter.unsafe.nuspec"
  5535. ]
  5536. },
  5537. "System.AppContext/4.3.0": {
  5538. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5539. "type": "package",
  5540. "path": "system.appcontext/4.3.0",
  5541. "files": [
  5542. ".nupkg.metadata",
  5543. ".signature.p7s",
  5544. "ThirdPartyNotices.txt",
  5545. "dotnet_library_license.txt",
  5546. "lib/MonoAndroid10/_._",
  5547. "lib/MonoTouch10/_._",
  5548. "lib/net46/System.AppContext.dll",
  5549. "lib/net463/System.AppContext.dll",
  5550. "lib/netcore50/System.AppContext.dll",
  5551. "lib/netstandard1.6/System.AppContext.dll",
  5552. "lib/xamarinios10/_._",
  5553. "lib/xamarinmac20/_._",
  5554. "lib/xamarintvos10/_._",
  5555. "lib/xamarinwatchos10/_._",
  5556. "ref/MonoAndroid10/_._",
  5557. "ref/MonoTouch10/_._",
  5558. "ref/net46/System.AppContext.dll",
  5559. "ref/net463/System.AppContext.dll",
  5560. "ref/netstandard/_._",
  5561. "ref/netstandard1.3/System.AppContext.dll",
  5562. "ref/netstandard1.3/System.AppContext.xml",
  5563. "ref/netstandard1.3/de/System.AppContext.xml",
  5564. "ref/netstandard1.3/es/System.AppContext.xml",
  5565. "ref/netstandard1.3/fr/System.AppContext.xml",
  5566. "ref/netstandard1.3/it/System.AppContext.xml",
  5567. "ref/netstandard1.3/ja/System.AppContext.xml",
  5568. "ref/netstandard1.3/ko/System.AppContext.xml",
  5569. "ref/netstandard1.3/ru/System.AppContext.xml",
  5570. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5571. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5572. "ref/netstandard1.6/System.AppContext.dll",
  5573. "ref/netstandard1.6/System.AppContext.xml",
  5574. "ref/netstandard1.6/de/System.AppContext.xml",
  5575. "ref/netstandard1.6/es/System.AppContext.xml",
  5576. "ref/netstandard1.6/fr/System.AppContext.xml",
  5577. "ref/netstandard1.6/it/System.AppContext.xml",
  5578. "ref/netstandard1.6/ja/System.AppContext.xml",
  5579. "ref/netstandard1.6/ko/System.AppContext.xml",
  5580. "ref/netstandard1.6/ru/System.AppContext.xml",
  5581. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5582. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5583. "ref/xamarinios10/_._",
  5584. "ref/xamarinmac20/_._",
  5585. "ref/xamarintvos10/_._",
  5586. "ref/xamarinwatchos10/_._",
  5587. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5588. "system.appcontext.4.3.0.nupkg.sha512",
  5589. "system.appcontext.nuspec"
  5590. ]
  5591. },
  5592. "System.Buffers/4.5.0": {
  5593. "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  5594. "type": "package",
  5595. "path": "system.buffers/4.5.0",
  5596. "files": [
  5597. ".nupkg.metadata",
  5598. ".signature.p7s",
  5599. "LICENSE.TXT",
  5600. "THIRD-PARTY-NOTICES.TXT",
  5601. "lib/netcoreapp2.0/_._",
  5602. "lib/netstandard1.1/System.Buffers.dll",
  5603. "lib/netstandard1.1/System.Buffers.xml",
  5604. "lib/netstandard2.0/System.Buffers.dll",
  5605. "lib/netstandard2.0/System.Buffers.xml",
  5606. "lib/uap10.0.16299/_._",
  5607. "ref/net45/System.Buffers.dll",
  5608. "ref/net45/System.Buffers.xml",
  5609. "ref/netcoreapp2.0/_._",
  5610. "ref/netstandard1.1/System.Buffers.dll",
  5611. "ref/netstandard1.1/System.Buffers.xml",
  5612. "ref/netstandard2.0/System.Buffers.dll",
  5613. "ref/netstandard2.0/System.Buffers.xml",
  5614. "ref/uap10.0.16299/_._",
  5615. "system.buffers.4.5.0.nupkg.sha512",
  5616. "system.buffers.nuspec",
  5617. "useSharedDesignerContext.txt",
  5618. "version.txt"
  5619. ]
  5620. },
  5621. "System.Collections/4.3.0": {
  5622. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5623. "type": "package",
  5624. "path": "system.collections/4.3.0",
  5625. "files": [
  5626. ".nupkg.metadata",
  5627. ".signature.p7s",
  5628. "ThirdPartyNotices.txt",
  5629. "dotnet_library_license.txt",
  5630. "lib/MonoAndroid10/_._",
  5631. "lib/MonoTouch10/_._",
  5632. "lib/net45/_._",
  5633. "lib/portable-net45+win8+wp8+wpa81/_._",
  5634. "lib/win8/_._",
  5635. "lib/wp80/_._",
  5636. "lib/wpa81/_._",
  5637. "lib/xamarinios10/_._",
  5638. "lib/xamarinmac20/_._",
  5639. "lib/xamarintvos10/_._",
  5640. "lib/xamarinwatchos10/_._",
  5641. "ref/MonoAndroid10/_._",
  5642. "ref/MonoTouch10/_._",
  5643. "ref/net45/_._",
  5644. "ref/netcore50/System.Collections.dll",
  5645. "ref/netcore50/System.Collections.xml",
  5646. "ref/netcore50/de/System.Collections.xml",
  5647. "ref/netcore50/es/System.Collections.xml",
  5648. "ref/netcore50/fr/System.Collections.xml",
  5649. "ref/netcore50/it/System.Collections.xml",
  5650. "ref/netcore50/ja/System.Collections.xml",
  5651. "ref/netcore50/ko/System.Collections.xml",
  5652. "ref/netcore50/ru/System.Collections.xml",
  5653. "ref/netcore50/zh-hans/System.Collections.xml",
  5654. "ref/netcore50/zh-hant/System.Collections.xml",
  5655. "ref/netstandard1.0/System.Collections.dll",
  5656. "ref/netstandard1.0/System.Collections.xml",
  5657. "ref/netstandard1.0/de/System.Collections.xml",
  5658. "ref/netstandard1.0/es/System.Collections.xml",
  5659. "ref/netstandard1.0/fr/System.Collections.xml",
  5660. "ref/netstandard1.0/it/System.Collections.xml",
  5661. "ref/netstandard1.0/ja/System.Collections.xml",
  5662. "ref/netstandard1.0/ko/System.Collections.xml",
  5663. "ref/netstandard1.0/ru/System.Collections.xml",
  5664. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5665. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5666. "ref/netstandard1.3/System.Collections.dll",
  5667. "ref/netstandard1.3/System.Collections.xml",
  5668. "ref/netstandard1.3/de/System.Collections.xml",
  5669. "ref/netstandard1.3/es/System.Collections.xml",
  5670. "ref/netstandard1.3/fr/System.Collections.xml",
  5671. "ref/netstandard1.3/it/System.Collections.xml",
  5672. "ref/netstandard1.3/ja/System.Collections.xml",
  5673. "ref/netstandard1.3/ko/System.Collections.xml",
  5674. "ref/netstandard1.3/ru/System.Collections.xml",
  5675. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5676. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5677. "ref/portable-net45+win8+wp8+wpa81/_._",
  5678. "ref/win8/_._",
  5679. "ref/wp80/_._",
  5680. "ref/wpa81/_._",
  5681. "ref/xamarinios10/_._",
  5682. "ref/xamarinmac20/_._",
  5683. "ref/xamarintvos10/_._",
  5684. "ref/xamarinwatchos10/_._",
  5685. "system.collections.4.3.0.nupkg.sha512",
  5686. "system.collections.nuspec"
  5687. ]
  5688. },
  5689. "System.Collections.Concurrent/4.3.0": {
  5690. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5691. "type": "package",
  5692. "path": "system.collections.concurrent/4.3.0",
  5693. "files": [
  5694. ".nupkg.metadata",
  5695. ".signature.p7s",
  5696. "ThirdPartyNotices.txt",
  5697. "dotnet_library_license.txt",
  5698. "lib/MonoAndroid10/_._",
  5699. "lib/MonoTouch10/_._",
  5700. "lib/net45/_._",
  5701. "lib/netcore50/System.Collections.Concurrent.dll",
  5702. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5703. "lib/portable-net45+win8+wpa81/_._",
  5704. "lib/win8/_._",
  5705. "lib/wpa81/_._",
  5706. "lib/xamarinios10/_._",
  5707. "lib/xamarinmac20/_._",
  5708. "lib/xamarintvos10/_._",
  5709. "lib/xamarinwatchos10/_._",
  5710. "ref/MonoAndroid10/_._",
  5711. "ref/MonoTouch10/_._",
  5712. "ref/net45/_._",
  5713. "ref/netcore50/System.Collections.Concurrent.dll",
  5714. "ref/netcore50/System.Collections.Concurrent.xml",
  5715. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5716. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5717. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5718. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5719. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5720. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5721. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5722. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5723. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5724. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5725. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5726. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5727. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5728. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5729. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5730. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5731. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5732. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5733. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5734. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5735. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5736. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5737. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5738. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5739. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5740. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5741. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5742. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5743. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5744. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5745. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5746. "ref/portable-net45+win8+wpa81/_._",
  5747. "ref/win8/_._",
  5748. "ref/wpa81/_._",
  5749. "ref/xamarinios10/_._",
  5750. "ref/xamarinmac20/_._",
  5751. "ref/xamarintvos10/_._",
  5752. "ref/xamarinwatchos10/_._",
  5753. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5754. "system.collections.concurrent.nuspec"
  5755. ]
  5756. },
  5757. "System.Collections.Immutable/1.3.1": {
  5758. "sha512": "n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==",
  5759. "type": "package",
  5760. "path": "system.collections.immutable/1.3.1",
  5761. "files": [
  5762. ".nupkg.metadata",
  5763. ".signature.p7s",
  5764. "ThirdPartyNotices.txt",
  5765. "dotnet_library_license.txt",
  5766. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5767. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5768. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5769. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5770. "system.collections.immutable.1.3.1.nupkg.sha512",
  5771. "system.collections.immutable.nuspec"
  5772. ]
  5773. },
  5774. "System.ComponentModel.Annotations/4.5.0": {
  5775. "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
  5776. "type": "package",
  5777. "path": "system.componentmodel.annotations/4.5.0",
  5778. "files": [
  5779. ".nupkg.metadata",
  5780. ".signature.p7s",
  5781. "LICENSE.TXT",
  5782. "THIRD-PARTY-NOTICES.TXT",
  5783. "lib/MonoAndroid10/_._",
  5784. "lib/MonoTouch10/_._",
  5785. "lib/net45/_._",
  5786. "lib/net461/System.ComponentModel.Annotations.dll",
  5787. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5788. "lib/netcoreapp2.0/_._",
  5789. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5790. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5791. "lib/portable-net45+win8/_._",
  5792. "lib/uap10.0.16299/_._",
  5793. "lib/win8/_._",
  5794. "lib/xamarinios10/_._",
  5795. "lib/xamarinmac20/_._",
  5796. "lib/xamarintvos10/_._",
  5797. "lib/xamarinwatchos10/_._",
  5798. "ref/MonoAndroid10/_._",
  5799. "ref/MonoTouch10/_._",
  5800. "ref/net45/_._",
  5801. "ref/net461/System.ComponentModel.Annotations.dll",
  5802. "ref/net461/System.ComponentModel.Annotations.xml",
  5803. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5804. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5805. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5806. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5807. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5808. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5809. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5810. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5811. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5812. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5813. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5814. "ref/netcoreapp2.0/_._",
  5815. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5816. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5817. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5818. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5819. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5820. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5821. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5822. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5823. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5824. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5825. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5826. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5827. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5828. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5829. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5830. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5831. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5832. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5833. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5834. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5835. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5836. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5837. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5838. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5839. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5840. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5841. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5842. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5843. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5844. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5845. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5846. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5847. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5848. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5849. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5850. "ref/portable-net45+win8/_._",
  5851. "ref/uap10.0.16299/_._",
  5852. "ref/win8/_._",
  5853. "ref/xamarinios10/_._",
  5854. "ref/xamarinmac20/_._",
  5855. "ref/xamarintvos10/_._",
  5856. "ref/xamarinwatchos10/_._",
  5857. "system.componentmodel.annotations.4.5.0.nupkg.sha512",
  5858. "system.componentmodel.annotations.nuspec",
  5859. "useSharedDesignerContext.txt",
  5860. "version.txt"
  5861. ]
  5862. },
  5863. "System.Console/4.3.0": {
  5864. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5865. "type": "package",
  5866. "path": "system.console/4.3.0",
  5867. "files": [
  5868. ".nupkg.metadata",
  5869. ".signature.p7s",
  5870. "ThirdPartyNotices.txt",
  5871. "dotnet_library_license.txt",
  5872. "lib/MonoAndroid10/_._",
  5873. "lib/MonoTouch10/_._",
  5874. "lib/net46/System.Console.dll",
  5875. "lib/xamarinios10/_._",
  5876. "lib/xamarinmac20/_._",
  5877. "lib/xamarintvos10/_._",
  5878. "lib/xamarinwatchos10/_._",
  5879. "ref/MonoAndroid10/_._",
  5880. "ref/MonoTouch10/_._",
  5881. "ref/net46/System.Console.dll",
  5882. "ref/netstandard1.3/System.Console.dll",
  5883. "ref/netstandard1.3/System.Console.xml",
  5884. "ref/netstandard1.3/de/System.Console.xml",
  5885. "ref/netstandard1.3/es/System.Console.xml",
  5886. "ref/netstandard1.3/fr/System.Console.xml",
  5887. "ref/netstandard1.3/it/System.Console.xml",
  5888. "ref/netstandard1.3/ja/System.Console.xml",
  5889. "ref/netstandard1.3/ko/System.Console.xml",
  5890. "ref/netstandard1.3/ru/System.Console.xml",
  5891. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5892. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5893. "ref/xamarinios10/_._",
  5894. "ref/xamarinmac20/_._",
  5895. "ref/xamarintvos10/_._",
  5896. "ref/xamarinwatchos10/_._",
  5897. "system.console.4.3.0.nupkg.sha512",
  5898. "system.console.nuspec"
  5899. ]
  5900. },
  5901. "System.Diagnostics.Debug/4.3.0": {
  5902. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5903. "type": "package",
  5904. "path": "system.diagnostics.debug/4.3.0",
  5905. "files": [
  5906. ".nupkg.metadata",
  5907. ".signature.p7s",
  5908. "ThirdPartyNotices.txt",
  5909. "dotnet_library_license.txt",
  5910. "lib/MonoAndroid10/_._",
  5911. "lib/MonoTouch10/_._",
  5912. "lib/net45/_._",
  5913. "lib/portable-net45+win8+wp8+wpa81/_._",
  5914. "lib/win8/_._",
  5915. "lib/wp80/_._",
  5916. "lib/wpa81/_._",
  5917. "lib/xamarinios10/_._",
  5918. "lib/xamarinmac20/_._",
  5919. "lib/xamarintvos10/_._",
  5920. "lib/xamarinwatchos10/_._",
  5921. "ref/MonoAndroid10/_._",
  5922. "ref/MonoTouch10/_._",
  5923. "ref/net45/_._",
  5924. "ref/netcore50/System.Diagnostics.Debug.dll",
  5925. "ref/netcore50/System.Diagnostics.Debug.xml",
  5926. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5927. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5928. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5929. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5930. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5931. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5932. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5933. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5934. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5935. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5936. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5937. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5938. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5939. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5940. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5941. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5942. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5943. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5944. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5945. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5946. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5947. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5948. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5949. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5950. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5951. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5952. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5953. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5954. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5955. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5956. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5957. "ref/portable-net45+win8+wp8+wpa81/_._",
  5958. "ref/win8/_._",
  5959. "ref/wp80/_._",
  5960. "ref/wpa81/_._",
  5961. "ref/xamarinios10/_._",
  5962. "ref/xamarinmac20/_._",
  5963. "ref/xamarintvos10/_._",
  5964. "ref/xamarinwatchos10/_._",
  5965. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5966. "system.diagnostics.debug.nuspec"
  5967. ]
  5968. },
  5969. "System.Diagnostics.DiagnosticSource/4.5.0": {
  5970. "sha512": "eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==",
  5971. "type": "package",
  5972. "path": "system.diagnostics.diagnosticsource/4.5.0",
  5973. "files": [
  5974. ".nupkg.metadata",
  5975. ".signature.p7s",
  5976. "LICENSE.TXT",
  5977. "THIRD-PARTY-NOTICES.TXT",
  5978. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5979. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5980. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5981. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5982. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5983. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5984. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5985. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5986. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5987. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5988. "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512",
  5989. "system.diagnostics.diagnosticsource.nuspec",
  5990. "useSharedDesignerContext.txt",
  5991. "version.txt"
  5992. ]
  5993. },
  5994. "System.Diagnostics.FileVersionInfo/4.3.0": {
  5995. "sha512": "omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==",
  5996. "type": "package",
  5997. "path": "system.diagnostics.fileversioninfo/4.3.0",
  5998. "files": [
  5999. ".nupkg.metadata",
  6000. ".signature.p7s",
  6001. "ThirdPartyNotices.txt",
  6002. "dotnet_library_license.txt",
  6003. "lib/MonoAndroid10/_._",
  6004. "lib/MonoTouch10/_._",
  6005. "lib/net46/System.Diagnostics.FileVersionInfo.dll",
  6006. "lib/xamarinios10/_._",
  6007. "lib/xamarinmac20/_._",
  6008. "lib/xamarintvos10/_._",
  6009. "lib/xamarinwatchos10/_._",
  6010. "ref/MonoAndroid10/_._",
  6011. "ref/MonoTouch10/_._",
  6012. "ref/net46/System.Diagnostics.FileVersionInfo.dll",
  6013. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6014. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml",
  6015. "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml",
  6016. "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml",
  6017. "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml",
  6018. "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml",
  6019. "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml",
  6020. "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml",
  6021. "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml",
  6022. "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml",
  6023. "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml",
  6024. "ref/xamarinios10/_._",
  6025. "ref/xamarinmac20/_._",
  6026. "ref/xamarintvos10/_._",
  6027. "ref/xamarinwatchos10/_._",
  6028. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6029. "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll",
  6030. "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll",
  6031. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6032. "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512",
  6033. "system.diagnostics.fileversioninfo.nuspec"
  6034. ]
  6035. },
  6036. "System.Diagnostics.StackTrace/4.3.0": {
  6037. "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
  6038. "type": "package",
  6039. "path": "system.diagnostics.stacktrace/4.3.0",
  6040. "files": [
  6041. ".nupkg.metadata",
  6042. ".signature.p7s",
  6043. "ThirdPartyNotices.txt",
  6044. "dotnet_library_license.txt",
  6045. "lib/MonoAndroid10/_._",
  6046. "lib/MonoTouch10/_._",
  6047. "lib/net46/System.Diagnostics.StackTrace.dll",
  6048. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
  6049. "lib/xamarinios10/_._",
  6050. "lib/xamarinmac20/_._",
  6051. "lib/xamarintvos10/_._",
  6052. "lib/xamarinwatchos10/_._",
  6053. "ref/MonoAndroid10/_._",
  6054. "ref/MonoTouch10/_._",
  6055. "ref/net46/System.Diagnostics.StackTrace.dll",
  6056. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
  6057. "ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
  6058. "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
  6059. "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
  6060. "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
  6061. "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
  6062. "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
  6063. "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
  6064. "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
  6065. "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
  6066. "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
  6067. "ref/xamarinios10/_._",
  6068. "ref/xamarinmac20/_._",
  6069. "ref/xamarintvos10/_._",
  6070. "ref/xamarinwatchos10/_._",
  6071. "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
  6072. "system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
  6073. "system.diagnostics.stacktrace.nuspec"
  6074. ]
  6075. },
  6076. "System.Diagnostics.Tools/4.3.0": {
  6077. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6078. "type": "package",
  6079. "path": "system.diagnostics.tools/4.3.0",
  6080. "files": [
  6081. ".nupkg.metadata",
  6082. ".signature.p7s",
  6083. "ThirdPartyNotices.txt",
  6084. "dotnet_library_license.txt",
  6085. "lib/MonoAndroid10/_._",
  6086. "lib/MonoTouch10/_._",
  6087. "lib/net45/_._",
  6088. "lib/portable-net45+win8+wp8+wpa81/_._",
  6089. "lib/win8/_._",
  6090. "lib/wp80/_._",
  6091. "lib/wpa81/_._",
  6092. "lib/xamarinios10/_._",
  6093. "lib/xamarinmac20/_._",
  6094. "lib/xamarintvos10/_._",
  6095. "lib/xamarinwatchos10/_._",
  6096. "ref/MonoAndroid10/_._",
  6097. "ref/MonoTouch10/_._",
  6098. "ref/net45/_._",
  6099. "ref/netcore50/System.Diagnostics.Tools.dll",
  6100. "ref/netcore50/System.Diagnostics.Tools.xml",
  6101. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6102. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6103. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6104. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6105. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6106. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6107. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6108. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6109. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6110. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6111. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6112. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6113. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6114. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6115. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6116. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6117. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6118. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6119. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6120. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6121. "ref/portable-net45+win8+wp8+wpa81/_._",
  6122. "ref/win8/_._",
  6123. "ref/wp80/_._",
  6124. "ref/wpa81/_._",
  6125. "ref/xamarinios10/_._",
  6126. "ref/xamarinmac20/_._",
  6127. "ref/xamarintvos10/_._",
  6128. "ref/xamarinwatchos10/_._",
  6129. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6130. "system.diagnostics.tools.nuspec"
  6131. ]
  6132. },
  6133. "System.Diagnostics.Tracing/4.3.0": {
  6134. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  6135. "type": "package",
  6136. "path": "system.diagnostics.tracing/4.3.0",
  6137. "files": [
  6138. ".nupkg.metadata",
  6139. ".signature.p7s",
  6140. "ThirdPartyNotices.txt",
  6141. "dotnet_library_license.txt",
  6142. "lib/MonoAndroid10/_._",
  6143. "lib/MonoTouch10/_._",
  6144. "lib/net45/_._",
  6145. "lib/net462/System.Diagnostics.Tracing.dll",
  6146. "lib/portable-net45+win8+wpa81/_._",
  6147. "lib/win8/_._",
  6148. "lib/wpa81/_._",
  6149. "lib/xamarinios10/_._",
  6150. "lib/xamarinmac20/_._",
  6151. "lib/xamarintvos10/_._",
  6152. "lib/xamarinwatchos10/_._",
  6153. "ref/MonoAndroid10/_._",
  6154. "ref/MonoTouch10/_._",
  6155. "ref/net45/_._",
  6156. "ref/net462/System.Diagnostics.Tracing.dll",
  6157. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6158. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6159. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6160. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6161. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6162. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6163. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6164. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6165. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6166. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6167. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6168. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6169. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6170. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6171. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6172. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6173. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6174. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6175. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6176. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6177. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6178. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6179. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6180. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6181. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6182. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6183. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6184. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6185. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6186. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6187. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6188. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6189. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6190. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6191. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6192. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6193. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6194. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6195. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6196. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6197. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6198. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6199. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6200. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6201. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6202. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6203. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6204. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6205. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6206. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6207. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6208. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6209. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6210. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6211. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6212. "ref/portable-net45+win8+wpa81/_._",
  6213. "ref/win8/_._",
  6214. "ref/wpa81/_._",
  6215. "ref/xamarinios10/_._",
  6216. "ref/xamarinmac20/_._",
  6217. "ref/xamarintvos10/_._",
  6218. "ref/xamarinwatchos10/_._",
  6219. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6220. "system.diagnostics.tracing.nuspec"
  6221. ]
  6222. },
  6223. "System.Drawing.Common/5.0.3": {
  6224. "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  6225. "type": "package",
  6226. "path": "system.drawing.common/5.0.3",
  6227. "files": [
  6228. ".nupkg.metadata",
  6229. ".signature.p7s",
  6230. "Icon.png",
  6231. "LICENSE.TXT",
  6232. "THIRD-PARTY-NOTICES.TXT",
  6233. "lib/MonoAndroid10/_._",
  6234. "lib/MonoTouch10/_._",
  6235. "lib/net461/System.Drawing.Common.dll",
  6236. "lib/netcoreapp3.0/System.Drawing.Common.dll",
  6237. "lib/netcoreapp3.0/System.Drawing.Common.xml",
  6238. "lib/netstandard2.0/System.Drawing.Common.dll",
  6239. "lib/xamarinios10/_._",
  6240. "lib/xamarinmac20/_._",
  6241. "lib/xamarintvos10/_._",
  6242. "lib/xamarinwatchos10/_._",
  6243. "ref/MonoAndroid10/_._",
  6244. "ref/MonoTouch10/_._",
  6245. "ref/net461/System.Drawing.Common.dll",
  6246. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6247. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6248. "ref/netstandard2.0/System.Drawing.Common.dll",
  6249. "ref/xamarinios10/_._",
  6250. "ref/xamarinmac20/_._",
  6251. "ref/xamarintvos10/_._",
  6252. "ref/xamarinwatchos10/_._",
  6253. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6254. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6255. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6256. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6257. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6258. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6259. "system.drawing.common.5.0.3.nupkg.sha512",
  6260. "system.drawing.common.nuspec",
  6261. "useSharedDesignerContext.txt",
  6262. "version.txt"
  6263. ]
  6264. },
  6265. "System.Dynamic.Runtime/4.3.0": {
  6266. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6267. "type": "package",
  6268. "path": "system.dynamic.runtime/4.3.0",
  6269. "files": [
  6270. ".nupkg.metadata",
  6271. ".signature.p7s",
  6272. "ThirdPartyNotices.txt",
  6273. "dotnet_library_license.txt",
  6274. "lib/MonoAndroid10/_._",
  6275. "lib/MonoTouch10/_._",
  6276. "lib/net45/_._",
  6277. "lib/netcore50/System.Dynamic.Runtime.dll",
  6278. "lib/netstandard1.3/System.Dynamic.Runtime.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/netcore50/System.Dynamic.Runtime.dll",
  6291. "ref/netcore50/System.Dynamic.Runtime.xml",
  6292. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6293. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6294. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6295. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6296. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6297. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6298. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6299. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6300. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6301. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6302. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6303. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6304. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6305. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6306. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6307. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6308. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6309. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6310. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6311. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6312. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6313. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6314. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6315. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6316. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6317. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6318. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6319. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6320. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6321. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6322. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6323. "ref/portable-net45+win8+wp8+wpa81/_._",
  6324. "ref/win8/_._",
  6325. "ref/wp80/_._",
  6326. "ref/wpa81/_._",
  6327. "ref/xamarinios10/_._",
  6328. "ref/xamarinmac20/_._",
  6329. "ref/xamarintvos10/_._",
  6330. "ref/xamarinwatchos10/_._",
  6331. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6332. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6333. "system.dynamic.runtime.nuspec"
  6334. ]
  6335. },
  6336. "System.Globalization/4.3.0": {
  6337. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6338. "type": "package",
  6339. "path": "system.globalization/4.3.0",
  6340. "files": [
  6341. ".nupkg.metadata",
  6342. ".signature.p7s",
  6343. "ThirdPartyNotices.txt",
  6344. "dotnet_library_license.txt",
  6345. "lib/MonoAndroid10/_._",
  6346. "lib/MonoTouch10/_._",
  6347. "lib/net45/_._",
  6348. "lib/portable-net45+win8+wp8+wpa81/_._",
  6349. "lib/win8/_._",
  6350. "lib/wp80/_._",
  6351. "lib/wpa81/_._",
  6352. "lib/xamarinios10/_._",
  6353. "lib/xamarinmac20/_._",
  6354. "lib/xamarintvos10/_._",
  6355. "lib/xamarinwatchos10/_._",
  6356. "ref/MonoAndroid10/_._",
  6357. "ref/MonoTouch10/_._",
  6358. "ref/net45/_._",
  6359. "ref/netcore50/System.Globalization.dll",
  6360. "ref/netcore50/System.Globalization.xml",
  6361. "ref/netcore50/de/System.Globalization.xml",
  6362. "ref/netcore50/es/System.Globalization.xml",
  6363. "ref/netcore50/fr/System.Globalization.xml",
  6364. "ref/netcore50/it/System.Globalization.xml",
  6365. "ref/netcore50/ja/System.Globalization.xml",
  6366. "ref/netcore50/ko/System.Globalization.xml",
  6367. "ref/netcore50/ru/System.Globalization.xml",
  6368. "ref/netcore50/zh-hans/System.Globalization.xml",
  6369. "ref/netcore50/zh-hant/System.Globalization.xml",
  6370. "ref/netstandard1.0/System.Globalization.dll",
  6371. "ref/netstandard1.0/System.Globalization.xml",
  6372. "ref/netstandard1.0/de/System.Globalization.xml",
  6373. "ref/netstandard1.0/es/System.Globalization.xml",
  6374. "ref/netstandard1.0/fr/System.Globalization.xml",
  6375. "ref/netstandard1.0/it/System.Globalization.xml",
  6376. "ref/netstandard1.0/ja/System.Globalization.xml",
  6377. "ref/netstandard1.0/ko/System.Globalization.xml",
  6378. "ref/netstandard1.0/ru/System.Globalization.xml",
  6379. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6380. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6381. "ref/netstandard1.3/System.Globalization.dll",
  6382. "ref/netstandard1.3/System.Globalization.xml",
  6383. "ref/netstandard1.3/de/System.Globalization.xml",
  6384. "ref/netstandard1.3/es/System.Globalization.xml",
  6385. "ref/netstandard1.3/fr/System.Globalization.xml",
  6386. "ref/netstandard1.3/it/System.Globalization.xml",
  6387. "ref/netstandard1.3/ja/System.Globalization.xml",
  6388. "ref/netstandard1.3/ko/System.Globalization.xml",
  6389. "ref/netstandard1.3/ru/System.Globalization.xml",
  6390. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6391. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6392. "ref/portable-net45+win8+wp8+wpa81/_._",
  6393. "ref/win8/_._",
  6394. "ref/wp80/_._",
  6395. "ref/wpa81/_._",
  6396. "ref/xamarinios10/_._",
  6397. "ref/xamarinmac20/_._",
  6398. "ref/xamarintvos10/_._",
  6399. "ref/xamarinwatchos10/_._",
  6400. "system.globalization.4.3.0.nupkg.sha512",
  6401. "system.globalization.nuspec"
  6402. ]
  6403. },
  6404. "System.Globalization.Calendars/4.3.0": {
  6405. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6406. "type": "package",
  6407. "path": "system.globalization.calendars/4.3.0",
  6408. "files": [
  6409. ".nupkg.metadata",
  6410. ".signature.p7s",
  6411. "ThirdPartyNotices.txt",
  6412. "dotnet_library_license.txt",
  6413. "lib/MonoAndroid10/_._",
  6414. "lib/MonoTouch10/_._",
  6415. "lib/net46/System.Globalization.Calendars.dll",
  6416. "lib/xamarinios10/_._",
  6417. "lib/xamarinmac20/_._",
  6418. "lib/xamarintvos10/_._",
  6419. "lib/xamarinwatchos10/_._",
  6420. "ref/MonoAndroid10/_._",
  6421. "ref/MonoTouch10/_._",
  6422. "ref/net46/System.Globalization.Calendars.dll",
  6423. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6424. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6425. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6426. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6427. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6428. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6429. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6430. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6431. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6432. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6433. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6434. "ref/xamarinios10/_._",
  6435. "ref/xamarinmac20/_._",
  6436. "ref/xamarintvos10/_._",
  6437. "ref/xamarinwatchos10/_._",
  6438. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6439. "system.globalization.calendars.nuspec"
  6440. ]
  6441. },
  6442. "System.Globalization.Extensions/4.3.0": {
  6443. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6444. "type": "package",
  6445. "path": "system.globalization.extensions/4.3.0",
  6446. "files": [
  6447. ".nupkg.metadata",
  6448. ".signature.p7s",
  6449. "ThirdPartyNotices.txt",
  6450. "dotnet_library_license.txt",
  6451. "lib/MonoAndroid10/_._",
  6452. "lib/MonoTouch10/_._",
  6453. "lib/net46/System.Globalization.Extensions.dll",
  6454. "lib/xamarinios10/_._",
  6455. "lib/xamarinmac20/_._",
  6456. "lib/xamarintvos10/_._",
  6457. "lib/xamarinwatchos10/_._",
  6458. "ref/MonoAndroid10/_._",
  6459. "ref/MonoTouch10/_._",
  6460. "ref/net46/System.Globalization.Extensions.dll",
  6461. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6462. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6463. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6464. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6465. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6466. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6467. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6468. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6469. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6470. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6471. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6472. "ref/xamarinios10/_._",
  6473. "ref/xamarinmac20/_._",
  6474. "ref/xamarintvos10/_._",
  6475. "ref/xamarinwatchos10/_._",
  6476. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6477. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6478. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6479. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6480. "system.globalization.extensions.nuspec"
  6481. ]
  6482. },
  6483. "System.IO/4.3.0": {
  6484. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6485. "type": "package",
  6486. "path": "system.io/4.3.0",
  6487. "files": [
  6488. ".nupkg.metadata",
  6489. ".signature.p7s",
  6490. "ThirdPartyNotices.txt",
  6491. "dotnet_library_license.txt",
  6492. "lib/MonoAndroid10/_._",
  6493. "lib/MonoTouch10/_._",
  6494. "lib/net45/_._",
  6495. "lib/net462/System.IO.dll",
  6496. "lib/portable-net45+win8+wp8+wpa81/_._",
  6497. "lib/win8/_._",
  6498. "lib/wp80/_._",
  6499. "lib/wpa81/_._",
  6500. "lib/xamarinios10/_._",
  6501. "lib/xamarinmac20/_._",
  6502. "lib/xamarintvos10/_._",
  6503. "lib/xamarinwatchos10/_._",
  6504. "ref/MonoAndroid10/_._",
  6505. "ref/MonoTouch10/_._",
  6506. "ref/net45/_._",
  6507. "ref/net462/System.IO.dll",
  6508. "ref/netcore50/System.IO.dll",
  6509. "ref/netcore50/System.IO.xml",
  6510. "ref/netcore50/de/System.IO.xml",
  6511. "ref/netcore50/es/System.IO.xml",
  6512. "ref/netcore50/fr/System.IO.xml",
  6513. "ref/netcore50/it/System.IO.xml",
  6514. "ref/netcore50/ja/System.IO.xml",
  6515. "ref/netcore50/ko/System.IO.xml",
  6516. "ref/netcore50/ru/System.IO.xml",
  6517. "ref/netcore50/zh-hans/System.IO.xml",
  6518. "ref/netcore50/zh-hant/System.IO.xml",
  6519. "ref/netstandard1.0/System.IO.dll",
  6520. "ref/netstandard1.0/System.IO.xml",
  6521. "ref/netstandard1.0/de/System.IO.xml",
  6522. "ref/netstandard1.0/es/System.IO.xml",
  6523. "ref/netstandard1.0/fr/System.IO.xml",
  6524. "ref/netstandard1.0/it/System.IO.xml",
  6525. "ref/netstandard1.0/ja/System.IO.xml",
  6526. "ref/netstandard1.0/ko/System.IO.xml",
  6527. "ref/netstandard1.0/ru/System.IO.xml",
  6528. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6529. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6530. "ref/netstandard1.3/System.IO.dll",
  6531. "ref/netstandard1.3/System.IO.xml",
  6532. "ref/netstandard1.3/de/System.IO.xml",
  6533. "ref/netstandard1.3/es/System.IO.xml",
  6534. "ref/netstandard1.3/fr/System.IO.xml",
  6535. "ref/netstandard1.3/it/System.IO.xml",
  6536. "ref/netstandard1.3/ja/System.IO.xml",
  6537. "ref/netstandard1.3/ko/System.IO.xml",
  6538. "ref/netstandard1.3/ru/System.IO.xml",
  6539. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6540. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6541. "ref/netstandard1.5/System.IO.dll",
  6542. "ref/netstandard1.5/System.IO.xml",
  6543. "ref/netstandard1.5/de/System.IO.xml",
  6544. "ref/netstandard1.5/es/System.IO.xml",
  6545. "ref/netstandard1.5/fr/System.IO.xml",
  6546. "ref/netstandard1.5/it/System.IO.xml",
  6547. "ref/netstandard1.5/ja/System.IO.xml",
  6548. "ref/netstandard1.5/ko/System.IO.xml",
  6549. "ref/netstandard1.5/ru/System.IO.xml",
  6550. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6551. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6552. "ref/portable-net45+win8+wp8+wpa81/_._",
  6553. "ref/win8/_._",
  6554. "ref/wp80/_._",
  6555. "ref/wpa81/_._",
  6556. "ref/xamarinios10/_._",
  6557. "ref/xamarinmac20/_._",
  6558. "ref/xamarintvos10/_._",
  6559. "ref/xamarinwatchos10/_._",
  6560. "system.io.4.3.0.nupkg.sha512",
  6561. "system.io.nuspec"
  6562. ]
  6563. },
  6564. "System.IO.Compression/4.3.0": {
  6565. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6566. "type": "package",
  6567. "path": "system.io.compression/4.3.0",
  6568. "files": [
  6569. ".nupkg.metadata",
  6570. ".signature.p7s",
  6571. "ThirdPartyNotices.txt",
  6572. "dotnet_library_license.txt",
  6573. "lib/MonoAndroid10/_._",
  6574. "lib/MonoTouch10/_._",
  6575. "lib/net45/_._",
  6576. "lib/net46/System.IO.Compression.dll",
  6577. "lib/portable-net45+win8+wpa81/_._",
  6578. "lib/win8/_._",
  6579. "lib/wpa81/_._",
  6580. "lib/xamarinios10/_._",
  6581. "lib/xamarinmac20/_._",
  6582. "lib/xamarintvos10/_._",
  6583. "lib/xamarinwatchos10/_._",
  6584. "ref/MonoAndroid10/_._",
  6585. "ref/MonoTouch10/_._",
  6586. "ref/net45/_._",
  6587. "ref/net46/System.IO.Compression.dll",
  6588. "ref/netcore50/System.IO.Compression.dll",
  6589. "ref/netcore50/System.IO.Compression.xml",
  6590. "ref/netcore50/de/System.IO.Compression.xml",
  6591. "ref/netcore50/es/System.IO.Compression.xml",
  6592. "ref/netcore50/fr/System.IO.Compression.xml",
  6593. "ref/netcore50/it/System.IO.Compression.xml",
  6594. "ref/netcore50/ja/System.IO.Compression.xml",
  6595. "ref/netcore50/ko/System.IO.Compression.xml",
  6596. "ref/netcore50/ru/System.IO.Compression.xml",
  6597. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6598. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6599. "ref/netstandard1.1/System.IO.Compression.dll",
  6600. "ref/netstandard1.1/System.IO.Compression.xml",
  6601. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6602. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6603. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6604. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6605. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6606. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6607. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6608. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6609. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6610. "ref/netstandard1.3/System.IO.Compression.dll",
  6611. "ref/netstandard1.3/System.IO.Compression.xml",
  6612. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6613. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6614. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6615. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6616. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6617. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6618. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6619. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6620. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6621. "ref/portable-net45+win8+wpa81/_._",
  6622. "ref/win8/_._",
  6623. "ref/wpa81/_._",
  6624. "ref/xamarinios10/_._",
  6625. "ref/xamarinmac20/_._",
  6626. "ref/xamarintvos10/_._",
  6627. "ref/xamarinwatchos10/_._",
  6628. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6629. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6630. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6631. "system.io.compression.4.3.0.nupkg.sha512",
  6632. "system.io.compression.nuspec"
  6633. ]
  6634. },
  6635. "System.IO.Compression.ZipFile/4.3.0": {
  6636. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6637. "type": "package",
  6638. "path": "system.io.compression.zipfile/4.3.0",
  6639. "files": [
  6640. ".nupkg.metadata",
  6641. ".signature.p7s",
  6642. "ThirdPartyNotices.txt",
  6643. "dotnet_library_license.txt",
  6644. "lib/MonoAndroid10/_._",
  6645. "lib/MonoTouch10/_._",
  6646. "lib/net46/System.IO.Compression.ZipFile.dll",
  6647. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6648. "lib/xamarinios10/_._",
  6649. "lib/xamarinmac20/_._",
  6650. "lib/xamarintvos10/_._",
  6651. "lib/xamarinwatchos10/_._",
  6652. "ref/MonoAndroid10/_._",
  6653. "ref/MonoTouch10/_._",
  6654. "ref/net46/System.IO.Compression.ZipFile.dll",
  6655. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6656. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6657. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6658. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6659. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6660. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6661. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6662. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6663. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6664. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6665. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6666. "ref/xamarinios10/_._",
  6667. "ref/xamarinmac20/_._",
  6668. "ref/xamarintvos10/_._",
  6669. "ref/xamarinwatchos10/_._",
  6670. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6671. "system.io.compression.zipfile.nuspec"
  6672. ]
  6673. },
  6674. "System.IO.FileSystem/4.3.0": {
  6675. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6676. "type": "package",
  6677. "path": "system.io.filesystem/4.3.0",
  6678. "files": [
  6679. ".nupkg.metadata",
  6680. ".signature.p7s",
  6681. "ThirdPartyNotices.txt",
  6682. "dotnet_library_license.txt",
  6683. "lib/MonoAndroid10/_._",
  6684. "lib/MonoTouch10/_._",
  6685. "lib/net46/System.IO.FileSystem.dll",
  6686. "lib/xamarinios10/_._",
  6687. "lib/xamarinmac20/_._",
  6688. "lib/xamarintvos10/_._",
  6689. "lib/xamarinwatchos10/_._",
  6690. "ref/MonoAndroid10/_._",
  6691. "ref/MonoTouch10/_._",
  6692. "ref/net46/System.IO.FileSystem.dll",
  6693. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6694. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6695. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6696. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6697. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6698. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6699. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6700. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6701. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6702. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6703. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6704. "ref/xamarinios10/_._",
  6705. "ref/xamarinmac20/_._",
  6706. "ref/xamarintvos10/_._",
  6707. "ref/xamarinwatchos10/_._",
  6708. "system.io.filesystem.4.3.0.nupkg.sha512",
  6709. "system.io.filesystem.nuspec"
  6710. ]
  6711. },
  6712. "System.IO.FileSystem.Primitives/4.3.0": {
  6713. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6714. "type": "package",
  6715. "path": "system.io.filesystem.primitives/4.3.0",
  6716. "files": [
  6717. ".nupkg.metadata",
  6718. ".signature.p7s",
  6719. "ThirdPartyNotices.txt",
  6720. "dotnet_library_license.txt",
  6721. "lib/MonoAndroid10/_._",
  6722. "lib/MonoTouch10/_._",
  6723. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6724. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6725. "lib/xamarinios10/_._",
  6726. "lib/xamarinmac20/_._",
  6727. "lib/xamarintvos10/_._",
  6728. "lib/xamarinwatchos10/_._",
  6729. "ref/MonoAndroid10/_._",
  6730. "ref/MonoTouch10/_._",
  6731. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6732. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6733. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6734. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6735. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6736. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6737. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6738. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6739. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6740. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6741. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6742. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6743. "ref/xamarinios10/_._",
  6744. "ref/xamarinmac20/_._",
  6745. "ref/xamarintvos10/_._",
  6746. "ref/xamarinwatchos10/_._",
  6747. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6748. "system.io.filesystem.primitives.nuspec"
  6749. ]
  6750. },
  6751. "System.IO.Pipelines/4.5.2": {
  6752. "sha512": "NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==",
  6753. "type": "package",
  6754. "path": "system.io.pipelines/4.5.2",
  6755. "files": [
  6756. ".nupkg.metadata",
  6757. ".signature.p7s",
  6758. "LICENSE.TXT",
  6759. "THIRD-PARTY-NOTICES.TXT",
  6760. "lib/netcoreapp2.1/System.IO.Pipelines.dll",
  6761. "lib/netcoreapp2.1/System.IO.Pipelines.xml",
  6762. "lib/netstandard1.3/System.IO.Pipelines.dll",
  6763. "lib/netstandard1.3/System.IO.Pipelines.xml",
  6764. "lib/netstandard2.0/System.IO.Pipelines.dll",
  6765. "lib/netstandard2.0/System.IO.Pipelines.xml",
  6766. "ref/netstandard1.3/System.IO.Pipelines.dll",
  6767. "system.io.pipelines.4.5.2.nupkg.sha512",
  6768. "system.io.pipelines.nuspec",
  6769. "useSharedDesignerContext.txt",
  6770. "version.txt"
  6771. ]
  6772. },
  6773. "System.Linq/4.3.0": {
  6774. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6775. "type": "package",
  6776. "path": "system.linq/4.3.0",
  6777. "files": [
  6778. ".nupkg.metadata",
  6779. ".signature.p7s",
  6780. "ThirdPartyNotices.txt",
  6781. "dotnet_library_license.txt",
  6782. "lib/MonoAndroid10/_._",
  6783. "lib/MonoTouch10/_._",
  6784. "lib/net45/_._",
  6785. "lib/net463/System.Linq.dll",
  6786. "lib/netcore50/System.Linq.dll",
  6787. "lib/netstandard1.6/System.Linq.dll",
  6788. "lib/portable-net45+win8+wp8+wpa81/_._",
  6789. "lib/win8/_._",
  6790. "lib/wp80/_._",
  6791. "lib/wpa81/_._",
  6792. "lib/xamarinios10/_._",
  6793. "lib/xamarinmac20/_._",
  6794. "lib/xamarintvos10/_._",
  6795. "lib/xamarinwatchos10/_._",
  6796. "ref/MonoAndroid10/_._",
  6797. "ref/MonoTouch10/_._",
  6798. "ref/net45/_._",
  6799. "ref/net463/System.Linq.dll",
  6800. "ref/netcore50/System.Linq.dll",
  6801. "ref/netcore50/System.Linq.xml",
  6802. "ref/netcore50/de/System.Linq.xml",
  6803. "ref/netcore50/es/System.Linq.xml",
  6804. "ref/netcore50/fr/System.Linq.xml",
  6805. "ref/netcore50/it/System.Linq.xml",
  6806. "ref/netcore50/ja/System.Linq.xml",
  6807. "ref/netcore50/ko/System.Linq.xml",
  6808. "ref/netcore50/ru/System.Linq.xml",
  6809. "ref/netcore50/zh-hans/System.Linq.xml",
  6810. "ref/netcore50/zh-hant/System.Linq.xml",
  6811. "ref/netstandard1.0/System.Linq.dll",
  6812. "ref/netstandard1.0/System.Linq.xml",
  6813. "ref/netstandard1.0/de/System.Linq.xml",
  6814. "ref/netstandard1.0/es/System.Linq.xml",
  6815. "ref/netstandard1.0/fr/System.Linq.xml",
  6816. "ref/netstandard1.0/it/System.Linq.xml",
  6817. "ref/netstandard1.0/ja/System.Linq.xml",
  6818. "ref/netstandard1.0/ko/System.Linq.xml",
  6819. "ref/netstandard1.0/ru/System.Linq.xml",
  6820. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6821. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6822. "ref/netstandard1.6/System.Linq.dll",
  6823. "ref/netstandard1.6/System.Linq.xml",
  6824. "ref/netstandard1.6/de/System.Linq.xml",
  6825. "ref/netstandard1.6/es/System.Linq.xml",
  6826. "ref/netstandard1.6/fr/System.Linq.xml",
  6827. "ref/netstandard1.6/it/System.Linq.xml",
  6828. "ref/netstandard1.6/ja/System.Linq.xml",
  6829. "ref/netstandard1.6/ko/System.Linq.xml",
  6830. "ref/netstandard1.6/ru/System.Linq.xml",
  6831. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6832. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6833. "ref/portable-net45+win8+wp8+wpa81/_._",
  6834. "ref/win8/_._",
  6835. "ref/wp80/_._",
  6836. "ref/wpa81/_._",
  6837. "ref/xamarinios10/_._",
  6838. "ref/xamarinmac20/_._",
  6839. "ref/xamarintvos10/_._",
  6840. "ref/xamarinwatchos10/_._",
  6841. "system.linq.4.3.0.nupkg.sha512",
  6842. "system.linq.nuspec"
  6843. ]
  6844. },
  6845. "System.Linq.Expressions/4.3.0": {
  6846. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6847. "type": "package",
  6848. "path": "system.linq.expressions/4.3.0",
  6849. "files": [
  6850. ".nupkg.metadata",
  6851. ".signature.p7s",
  6852. "ThirdPartyNotices.txt",
  6853. "dotnet_library_license.txt",
  6854. "lib/MonoAndroid10/_._",
  6855. "lib/MonoTouch10/_._",
  6856. "lib/net45/_._",
  6857. "lib/net463/System.Linq.Expressions.dll",
  6858. "lib/netcore50/System.Linq.Expressions.dll",
  6859. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6860. "lib/portable-net45+win8+wp8+wpa81/_._",
  6861. "lib/win8/_._",
  6862. "lib/wp80/_._",
  6863. "lib/wpa81/_._",
  6864. "lib/xamarinios10/_._",
  6865. "lib/xamarinmac20/_._",
  6866. "lib/xamarintvos10/_._",
  6867. "lib/xamarinwatchos10/_._",
  6868. "ref/MonoAndroid10/_._",
  6869. "ref/MonoTouch10/_._",
  6870. "ref/net45/_._",
  6871. "ref/net463/System.Linq.Expressions.dll",
  6872. "ref/netcore50/System.Linq.Expressions.dll",
  6873. "ref/netcore50/System.Linq.Expressions.xml",
  6874. "ref/netcore50/de/System.Linq.Expressions.xml",
  6875. "ref/netcore50/es/System.Linq.Expressions.xml",
  6876. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6877. "ref/netcore50/it/System.Linq.Expressions.xml",
  6878. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6879. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6880. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6881. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6882. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6883. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6884. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6885. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6886. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6887. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6888. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6889. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6890. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6891. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6892. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6893. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6894. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6895. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6896. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6897. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6898. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6899. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6900. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6901. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6902. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6903. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6904. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6905. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6906. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6907. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6908. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6909. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6910. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6911. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6912. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6913. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6914. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6915. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6916. "ref/portable-net45+win8+wp8+wpa81/_._",
  6917. "ref/win8/_._",
  6918. "ref/wp80/_._",
  6919. "ref/wpa81/_._",
  6920. "ref/xamarinios10/_._",
  6921. "ref/xamarinmac20/_._",
  6922. "ref/xamarintvos10/_._",
  6923. "ref/xamarinwatchos10/_._",
  6924. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6925. "system.linq.expressions.4.3.0.nupkg.sha512",
  6926. "system.linq.expressions.nuspec"
  6927. ]
  6928. },
  6929. "System.Memory/4.5.1": {
  6930. "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==",
  6931. "type": "package",
  6932. "path": "system.memory/4.5.1",
  6933. "files": [
  6934. ".nupkg.metadata",
  6935. ".signature.p7s",
  6936. "LICENSE.TXT",
  6937. "THIRD-PARTY-NOTICES.TXT",
  6938. "lib/netcoreapp2.1/_._",
  6939. "lib/netstandard1.1/System.Memory.dll",
  6940. "lib/netstandard1.1/System.Memory.xml",
  6941. "lib/netstandard2.0/System.Memory.dll",
  6942. "lib/netstandard2.0/System.Memory.xml",
  6943. "ref/netcoreapp2.1/_._",
  6944. "ref/netstandard1.1/System.Memory.dll",
  6945. "ref/netstandard1.1/System.Memory.xml",
  6946. "ref/netstandard2.0/System.Memory.dll",
  6947. "ref/netstandard2.0/System.Memory.xml",
  6948. "system.memory.4.5.1.nupkg.sha512",
  6949. "system.memory.nuspec",
  6950. "useSharedDesignerContext.txt",
  6951. "version.txt"
  6952. ]
  6953. },
  6954. "System.Net.Http/4.3.0": {
  6955. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6956. "type": "package",
  6957. "path": "system.net.http/4.3.0",
  6958. "files": [
  6959. ".nupkg.metadata",
  6960. ".signature.p7s",
  6961. "ThirdPartyNotices.txt",
  6962. "dotnet_library_license.txt",
  6963. "lib/Xamarinmac20/_._",
  6964. "lib/monoandroid10/_._",
  6965. "lib/monotouch10/_._",
  6966. "lib/net45/_._",
  6967. "lib/net46/System.Net.Http.dll",
  6968. "lib/portable-net45+win8+wpa81/_._",
  6969. "lib/win8/_._",
  6970. "lib/wpa81/_._",
  6971. "lib/xamarinios10/_._",
  6972. "lib/xamarintvos10/_._",
  6973. "lib/xamarinwatchos10/_._",
  6974. "ref/Xamarinmac20/_._",
  6975. "ref/monoandroid10/_._",
  6976. "ref/monotouch10/_._",
  6977. "ref/net45/_._",
  6978. "ref/net46/System.Net.Http.dll",
  6979. "ref/net46/System.Net.Http.xml",
  6980. "ref/net46/de/System.Net.Http.xml",
  6981. "ref/net46/es/System.Net.Http.xml",
  6982. "ref/net46/fr/System.Net.Http.xml",
  6983. "ref/net46/it/System.Net.Http.xml",
  6984. "ref/net46/ja/System.Net.Http.xml",
  6985. "ref/net46/ko/System.Net.Http.xml",
  6986. "ref/net46/ru/System.Net.Http.xml",
  6987. "ref/net46/zh-hans/System.Net.Http.xml",
  6988. "ref/net46/zh-hant/System.Net.Http.xml",
  6989. "ref/netcore50/System.Net.Http.dll",
  6990. "ref/netcore50/System.Net.Http.xml",
  6991. "ref/netcore50/de/System.Net.Http.xml",
  6992. "ref/netcore50/es/System.Net.Http.xml",
  6993. "ref/netcore50/fr/System.Net.Http.xml",
  6994. "ref/netcore50/it/System.Net.Http.xml",
  6995. "ref/netcore50/ja/System.Net.Http.xml",
  6996. "ref/netcore50/ko/System.Net.Http.xml",
  6997. "ref/netcore50/ru/System.Net.Http.xml",
  6998. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6999. "ref/netcore50/zh-hant/System.Net.Http.xml",
  7000. "ref/netstandard1.1/System.Net.Http.dll",
  7001. "ref/netstandard1.1/System.Net.Http.xml",
  7002. "ref/netstandard1.1/de/System.Net.Http.xml",
  7003. "ref/netstandard1.1/es/System.Net.Http.xml",
  7004. "ref/netstandard1.1/fr/System.Net.Http.xml",
  7005. "ref/netstandard1.1/it/System.Net.Http.xml",
  7006. "ref/netstandard1.1/ja/System.Net.Http.xml",
  7007. "ref/netstandard1.1/ko/System.Net.Http.xml",
  7008. "ref/netstandard1.1/ru/System.Net.Http.xml",
  7009. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  7010. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  7011. "ref/netstandard1.3/System.Net.Http.dll",
  7012. "ref/netstandard1.3/System.Net.Http.xml",
  7013. "ref/netstandard1.3/de/System.Net.Http.xml",
  7014. "ref/netstandard1.3/es/System.Net.Http.xml",
  7015. "ref/netstandard1.3/fr/System.Net.Http.xml",
  7016. "ref/netstandard1.3/it/System.Net.Http.xml",
  7017. "ref/netstandard1.3/ja/System.Net.Http.xml",
  7018. "ref/netstandard1.3/ko/System.Net.Http.xml",
  7019. "ref/netstandard1.3/ru/System.Net.Http.xml",
  7020. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  7021. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  7022. "ref/portable-net45+win8+wpa81/_._",
  7023. "ref/win8/_._",
  7024. "ref/wpa81/_._",
  7025. "ref/xamarinios10/_._",
  7026. "ref/xamarintvos10/_._",
  7027. "ref/xamarinwatchos10/_._",
  7028. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7029. "runtimes/win/lib/net46/System.Net.Http.dll",
  7030. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7031. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7032. "system.net.http.4.3.0.nupkg.sha512",
  7033. "system.net.http.nuspec"
  7034. ]
  7035. },
  7036. "System.Net.Primitives/4.3.0": {
  7037. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7038. "type": "package",
  7039. "path": "system.net.primitives/4.3.0",
  7040. "files": [
  7041. ".nupkg.metadata",
  7042. ".signature.p7s",
  7043. "ThirdPartyNotices.txt",
  7044. "dotnet_library_license.txt",
  7045. "lib/MonoAndroid10/_._",
  7046. "lib/MonoTouch10/_._",
  7047. "lib/net45/_._",
  7048. "lib/portable-net45+win8+wp8+wpa81/_._",
  7049. "lib/win8/_._",
  7050. "lib/wp80/_._",
  7051. "lib/wpa81/_._",
  7052. "lib/xamarinios10/_._",
  7053. "lib/xamarinmac20/_._",
  7054. "lib/xamarintvos10/_._",
  7055. "lib/xamarinwatchos10/_._",
  7056. "ref/MonoAndroid10/_._",
  7057. "ref/MonoTouch10/_._",
  7058. "ref/net45/_._",
  7059. "ref/netcore50/System.Net.Primitives.dll",
  7060. "ref/netcore50/System.Net.Primitives.xml",
  7061. "ref/netcore50/de/System.Net.Primitives.xml",
  7062. "ref/netcore50/es/System.Net.Primitives.xml",
  7063. "ref/netcore50/fr/System.Net.Primitives.xml",
  7064. "ref/netcore50/it/System.Net.Primitives.xml",
  7065. "ref/netcore50/ja/System.Net.Primitives.xml",
  7066. "ref/netcore50/ko/System.Net.Primitives.xml",
  7067. "ref/netcore50/ru/System.Net.Primitives.xml",
  7068. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7069. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7070. "ref/netstandard1.0/System.Net.Primitives.dll",
  7071. "ref/netstandard1.0/System.Net.Primitives.xml",
  7072. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7073. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7074. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7075. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7076. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7077. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7078. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7079. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7080. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7081. "ref/netstandard1.1/System.Net.Primitives.dll",
  7082. "ref/netstandard1.1/System.Net.Primitives.xml",
  7083. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7084. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7085. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7086. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7087. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7088. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7089. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7090. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7091. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7092. "ref/netstandard1.3/System.Net.Primitives.dll",
  7093. "ref/netstandard1.3/System.Net.Primitives.xml",
  7094. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7095. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7096. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7097. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7098. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7099. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7100. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7101. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7102. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7103. "ref/portable-net45+win8+wp8+wpa81/_._",
  7104. "ref/win8/_._",
  7105. "ref/wp80/_._",
  7106. "ref/wpa81/_._",
  7107. "ref/xamarinios10/_._",
  7108. "ref/xamarinmac20/_._",
  7109. "ref/xamarintvos10/_._",
  7110. "ref/xamarinwatchos10/_._",
  7111. "system.net.primitives.4.3.0.nupkg.sha512",
  7112. "system.net.primitives.nuspec"
  7113. ]
  7114. },
  7115. "System.Net.Sockets/4.3.0": {
  7116. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7117. "type": "package",
  7118. "path": "system.net.sockets/4.3.0",
  7119. "files": [
  7120. ".nupkg.metadata",
  7121. ".signature.p7s",
  7122. "ThirdPartyNotices.txt",
  7123. "dotnet_library_license.txt",
  7124. "lib/MonoAndroid10/_._",
  7125. "lib/MonoTouch10/_._",
  7126. "lib/net46/System.Net.Sockets.dll",
  7127. "lib/xamarinios10/_._",
  7128. "lib/xamarinmac20/_._",
  7129. "lib/xamarintvos10/_._",
  7130. "lib/xamarinwatchos10/_._",
  7131. "ref/MonoAndroid10/_._",
  7132. "ref/MonoTouch10/_._",
  7133. "ref/net46/System.Net.Sockets.dll",
  7134. "ref/netstandard1.3/System.Net.Sockets.dll",
  7135. "ref/netstandard1.3/System.Net.Sockets.xml",
  7136. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7137. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7138. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7139. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7140. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7141. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7142. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7143. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7144. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7145. "ref/xamarinios10/_._",
  7146. "ref/xamarinmac20/_._",
  7147. "ref/xamarintvos10/_._",
  7148. "ref/xamarinwatchos10/_._",
  7149. "system.net.sockets.4.3.0.nupkg.sha512",
  7150. "system.net.sockets.nuspec"
  7151. ]
  7152. },
  7153. "System.Numerics.Vectors/4.5.0": {
  7154. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  7155. "type": "package",
  7156. "path": "system.numerics.vectors/4.5.0",
  7157. "files": [
  7158. ".nupkg.metadata",
  7159. ".signature.p7s",
  7160. "LICENSE.TXT",
  7161. "THIRD-PARTY-NOTICES.TXT",
  7162. "lib/MonoAndroid10/_._",
  7163. "lib/MonoTouch10/_._",
  7164. "lib/net46/System.Numerics.Vectors.dll",
  7165. "lib/net46/System.Numerics.Vectors.xml",
  7166. "lib/netcoreapp2.0/_._",
  7167. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  7168. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  7169. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  7170. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  7171. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  7172. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  7173. "lib/uap10.0.16299/_._",
  7174. "lib/xamarinios10/_._",
  7175. "lib/xamarinmac20/_._",
  7176. "lib/xamarintvos10/_._",
  7177. "lib/xamarinwatchos10/_._",
  7178. "ref/MonoAndroid10/_._",
  7179. "ref/MonoTouch10/_._",
  7180. "ref/net45/System.Numerics.Vectors.dll",
  7181. "ref/net45/System.Numerics.Vectors.xml",
  7182. "ref/net46/System.Numerics.Vectors.dll",
  7183. "ref/net46/System.Numerics.Vectors.xml",
  7184. "ref/netcoreapp2.0/_._",
  7185. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  7186. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  7187. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  7188. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  7189. "ref/uap10.0.16299/_._",
  7190. "ref/xamarinios10/_._",
  7191. "ref/xamarinmac20/_._",
  7192. "ref/xamarintvos10/_._",
  7193. "ref/xamarinwatchos10/_._",
  7194. "system.numerics.vectors.4.5.0.nupkg.sha512",
  7195. "system.numerics.vectors.nuspec",
  7196. "useSharedDesignerContext.txt",
  7197. "version.txt"
  7198. ]
  7199. },
  7200. "System.ObjectModel/4.3.0": {
  7201. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7202. "type": "package",
  7203. "path": "system.objectmodel/4.3.0",
  7204. "files": [
  7205. ".nupkg.metadata",
  7206. ".signature.p7s",
  7207. "ThirdPartyNotices.txt",
  7208. "dotnet_library_license.txt",
  7209. "lib/MonoAndroid10/_._",
  7210. "lib/MonoTouch10/_._",
  7211. "lib/net45/_._",
  7212. "lib/netcore50/System.ObjectModel.dll",
  7213. "lib/netstandard1.3/System.ObjectModel.dll",
  7214. "lib/portable-net45+win8+wp8+wpa81/_._",
  7215. "lib/win8/_._",
  7216. "lib/wp80/_._",
  7217. "lib/wpa81/_._",
  7218. "lib/xamarinios10/_._",
  7219. "lib/xamarinmac20/_._",
  7220. "lib/xamarintvos10/_._",
  7221. "lib/xamarinwatchos10/_._",
  7222. "ref/MonoAndroid10/_._",
  7223. "ref/MonoTouch10/_._",
  7224. "ref/net45/_._",
  7225. "ref/netcore50/System.ObjectModel.dll",
  7226. "ref/netcore50/System.ObjectModel.xml",
  7227. "ref/netcore50/de/System.ObjectModel.xml",
  7228. "ref/netcore50/es/System.ObjectModel.xml",
  7229. "ref/netcore50/fr/System.ObjectModel.xml",
  7230. "ref/netcore50/it/System.ObjectModel.xml",
  7231. "ref/netcore50/ja/System.ObjectModel.xml",
  7232. "ref/netcore50/ko/System.ObjectModel.xml",
  7233. "ref/netcore50/ru/System.ObjectModel.xml",
  7234. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7235. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7236. "ref/netstandard1.0/System.ObjectModel.dll",
  7237. "ref/netstandard1.0/System.ObjectModel.xml",
  7238. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7239. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7240. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7241. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7242. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7243. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7244. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7245. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7246. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7247. "ref/netstandard1.3/System.ObjectModel.dll",
  7248. "ref/netstandard1.3/System.ObjectModel.xml",
  7249. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7250. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7251. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7252. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7253. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7254. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7255. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7256. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7257. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7258. "ref/portable-net45+win8+wp8+wpa81/_._",
  7259. "ref/win8/_._",
  7260. "ref/wp80/_._",
  7261. "ref/wpa81/_._",
  7262. "ref/xamarinios10/_._",
  7263. "ref/xamarinmac20/_._",
  7264. "ref/xamarintvos10/_._",
  7265. "ref/xamarinwatchos10/_._",
  7266. "system.objectmodel.4.3.0.nupkg.sha512",
  7267. "system.objectmodel.nuspec"
  7268. ]
  7269. },
  7270. "System.Reflection/4.3.0": {
  7271. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7272. "type": "package",
  7273. "path": "system.reflection/4.3.0",
  7274. "files": [
  7275. ".nupkg.metadata",
  7276. ".signature.p7s",
  7277. "ThirdPartyNotices.txt",
  7278. "dotnet_library_license.txt",
  7279. "lib/MonoAndroid10/_._",
  7280. "lib/MonoTouch10/_._",
  7281. "lib/net45/_._",
  7282. "lib/net462/System.Reflection.dll",
  7283. "lib/portable-net45+win8+wp8+wpa81/_._",
  7284. "lib/win8/_._",
  7285. "lib/wp80/_._",
  7286. "lib/wpa81/_._",
  7287. "lib/xamarinios10/_._",
  7288. "lib/xamarinmac20/_._",
  7289. "lib/xamarintvos10/_._",
  7290. "lib/xamarinwatchos10/_._",
  7291. "ref/MonoAndroid10/_._",
  7292. "ref/MonoTouch10/_._",
  7293. "ref/net45/_._",
  7294. "ref/net462/System.Reflection.dll",
  7295. "ref/netcore50/System.Reflection.dll",
  7296. "ref/netcore50/System.Reflection.xml",
  7297. "ref/netcore50/de/System.Reflection.xml",
  7298. "ref/netcore50/es/System.Reflection.xml",
  7299. "ref/netcore50/fr/System.Reflection.xml",
  7300. "ref/netcore50/it/System.Reflection.xml",
  7301. "ref/netcore50/ja/System.Reflection.xml",
  7302. "ref/netcore50/ko/System.Reflection.xml",
  7303. "ref/netcore50/ru/System.Reflection.xml",
  7304. "ref/netcore50/zh-hans/System.Reflection.xml",
  7305. "ref/netcore50/zh-hant/System.Reflection.xml",
  7306. "ref/netstandard1.0/System.Reflection.dll",
  7307. "ref/netstandard1.0/System.Reflection.xml",
  7308. "ref/netstandard1.0/de/System.Reflection.xml",
  7309. "ref/netstandard1.0/es/System.Reflection.xml",
  7310. "ref/netstandard1.0/fr/System.Reflection.xml",
  7311. "ref/netstandard1.0/it/System.Reflection.xml",
  7312. "ref/netstandard1.0/ja/System.Reflection.xml",
  7313. "ref/netstandard1.0/ko/System.Reflection.xml",
  7314. "ref/netstandard1.0/ru/System.Reflection.xml",
  7315. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7316. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7317. "ref/netstandard1.3/System.Reflection.dll",
  7318. "ref/netstandard1.3/System.Reflection.xml",
  7319. "ref/netstandard1.3/de/System.Reflection.xml",
  7320. "ref/netstandard1.3/es/System.Reflection.xml",
  7321. "ref/netstandard1.3/fr/System.Reflection.xml",
  7322. "ref/netstandard1.3/it/System.Reflection.xml",
  7323. "ref/netstandard1.3/ja/System.Reflection.xml",
  7324. "ref/netstandard1.3/ko/System.Reflection.xml",
  7325. "ref/netstandard1.3/ru/System.Reflection.xml",
  7326. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7327. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7328. "ref/netstandard1.5/System.Reflection.dll",
  7329. "ref/netstandard1.5/System.Reflection.xml",
  7330. "ref/netstandard1.5/de/System.Reflection.xml",
  7331. "ref/netstandard1.5/es/System.Reflection.xml",
  7332. "ref/netstandard1.5/fr/System.Reflection.xml",
  7333. "ref/netstandard1.5/it/System.Reflection.xml",
  7334. "ref/netstandard1.5/ja/System.Reflection.xml",
  7335. "ref/netstandard1.5/ko/System.Reflection.xml",
  7336. "ref/netstandard1.5/ru/System.Reflection.xml",
  7337. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7338. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7339. "ref/portable-net45+win8+wp8+wpa81/_._",
  7340. "ref/win8/_._",
  7341. "ref/wp80/_._",
  7342. "ref/wpa81/_._",
  7343. "ref/xamarinios10/_._",
  7344. "ref/xamarinmac20/_._",
  7345. "ref/xamarintvos10/_._",
  7346. "ref/xamarinwatchos10/_._",
  7347. "system.reflection.4.3.0.nupkg.sha512",
  7348. "system.reflection.nuspec"
  7349. ]
  7350. },
  7351. "System.Reflection.Emit/4.3.0": {
  7352. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7353. "type": "package",
  7354. "path": "system.reflection.emit/4.3.0",
  7355. "files": [
  7356. ".nupkg.metadata",
  7357. ".signature.p7s",
  7358. "ThirdPartyNotices.txt",
  7359. "dotnet_library_license.txt",
  7360. "lib/MonoAndroid10/_._",
  7361. "lib/monotouch10/_._",
  7362. "lib/net45/_._",
  7363. "lib/netcore50/System.Reflection.Emit.dll",
  7364. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7365. "lib/xamarinios10/_._",
  7366. "lib/xamarinmac20/_._",
  7367. "lib/xamarintvos10/_._",
  7368. "lib/xamarinwatchos10/_._",
  7369. "ref/MonoAndroid10/_._",
  7370. "ref/net45/_._",
  7371. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7372. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7373. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7374. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7375. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7376. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7377. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7378. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7379. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7380. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7381. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7382. "ref/xamarinmac20/_._",
  7383. "system.reflection.emit.4.3.0.nupkg.sha512",
  7384. "system.reflection.emit.nuspec"
  7385. ]
  7386. },
  7387. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7388. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7389. "type": "package",
  7390. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7391. "files": [
  7392. ".nupkg.metadata",
  7393. ".signature.p7s",
  7394. "ThirdPartyNotices.txt",
  7395. "dotnet_library_license.txt",
  7396. "lib/MonoAndroid10/_._",
  7397. "lib/MonoTouch10/_._",
  7398. "lib/net45/_._",
  7399. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7400. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7401. "lib/portable-net45+wp8/_._",
  7402. "lib/wp80/_._",
  7403. "lib/xamarinios10/_._",
  7404. "lib/xamarinmac20/_._",
  7405. "lib/xamarintvos10/_._",
  7406. "lib/xamarinwatchos10/_._",
  7407. "ref/MonoAndroid10/_._",
  7408. "ref/MonoTouch10/_._",
  7409. "ref/net45/_._",
  7410. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7411. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7412. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7413. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7414. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7415. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7416. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7417. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7418. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7419. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7420. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7421. "ref/portable-net45+wp8/_._",
  7422. "ref/wp80/_._",
  7423. "ref/xamarinios10/_._",
  7424. "ref/xamarinmac20/_._",
  7425. "ref/xamarintvos10/_._",
  7426. "ref/xamarinwatchos10/_._",
  7427. "runtimes/aot/lib/netcore50/_._",
  7428. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7429. "system.reflection.emit.ilgeneration.nuspec"
  7430. ]
  7431. },
  7432. "System.Reflection.Emit.Lightweight/4.3.0": {
  7433. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7434. "type": "package",
  7435. "path": "system.reflection.emit.lightweight/4.3.0",
  7436. "files": [
  7437. ".nupkg.metadata",
  7438. ".signature.p7s",
  7439. "ThirdPartyNotices.txt",
  7440. "dotnet_library_license.txt",
  7441. "lib/MonoAndroid10/_._",
  7442. "lib/MonoTouch10/_._",
  7443. "lib/net45/_._",
  7444. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7445. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7446. "lib/portable-net45+wp8/_._",
  7447. "lib/wp80/_._",
  7448. "lib/xamarinios10/_._",
  7449. "lib/xamarinmac20/_._",
  7450. "lib/xamarintvos10/_._",
  7451. "lib/xamarinwatchos10/_._",
  7452. "ref/MonoAndroid10/_._",
  7453. "ref/MonoTouch10/_._",
  7454. "ref/net45/_._",
  7455. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7456. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7457. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7458. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7459. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7460. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7461. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7462. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7463. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7464. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7465. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7466. "ref/portable-net45+wp8/_._",
  7467. "ref/wp80/_._",
  7468. "ref/xamarinios10/_._",
  7469. "ref/xamarinmac20/_._",
  7470. "ref/xamarintvos10/_._",
  7471. "ref/xamarinwatchos10/_._",
  7472. "runtimes/aot/lib/netcore50/_._",
  7473. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7474. "system.reflection.emit.lightweight.nuspec"
  7475. ]
  7476. },
  7477. "System.Reflection.Extensions/4.3.0": {
  7478. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7479. "type": "package",
  7480. "path": "system.reflection.extensions/4.3.0",
  7481. "files": [
  7482. ".nupkg.metadata",
  7483. ".signature.p7s",
  7484. "ThirdPartyNotices.txt",
  7485. "dotnet_library_license.txt",
  7486. "lib/MonoAndroid10/_._",
  7487. "lib/MonoTouch10/_._",
  7488. "lib/net45/_._",
  7489. "lib/portable-net45+win8+wp8+wpa81/_._",
  7490. "lib/win8/_._",
  7491. "lib/wp80/_._",
  7492. "lib/wpa81/_._",
  7493. "lib/xamarinios10/_._",
  7494. "lib/xamarinmac20/_._",
  7495. "lib/xamarintvos10/_._",
  7496. "lib/xamarinwatchos10/_._",
  7497. "ref/MonoAndroid10/_._",
  7498. "ref/MonoTouch10/_._",
  7499. "ref/net45/_._",
  7500. "ref/netcore50/System.Reflection.Extensions.dll",
  7501. "ref/netcore50/System.Reflection.Extensions.xml",
  7502. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7503. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7504. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7505. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7506. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7507. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7508. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7509. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7510. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7511. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7512. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7513. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7514. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7515. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7516. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7517. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7518. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7519. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7520. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7521. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7522. "ref/portable-net45+win8+wp8+wpa81/_._",
  7523. "ref/win8/_._",
  7524. "ref/wp80/_._",
  7525. "ref/wpa81/_._",
  7526. "ref/xamarinios10/_._",
  7527. "ref/xamarinmac20/_._",
  7528. "ref/xamarintvos10/_._",
  7529. "ref/xamarinwatchos10/_._",
  7530. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7531. "system.reflection.extensions.nuspec"
  7532. ]
  7533. },
  7534. "System.Reflection.Metadata/1.6.0": {
  7535. "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  7536. "type": "package",
  7537. "path": "system.reflection.metadata/1.6.0",
  7538. "files": [
  7539. ".nupkg.metadata",
  7540. ".signature.p7s",
  7541. "LICENSE.TXT",
  7542. "THIRD-PARTY-NOTICES.TXT",
  7543. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  7544. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  7545. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  7546. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  7547. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  7548. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  7549. "system.reflection.metadata.1.6.0.nupkg.sha512",
  7550. "system.reflection.metadata.nuspec",
  7551. "useSharedDesignerContext.txt",
  7552. "version.txt"
  7553. ]
  7554. },
  7555. "System.Reflection.Primitives/4.3.0": {
  7556. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7557. "type": "package",
  7558. "path": "system.reflection.primitives/4.3.0",
  7559. "files": [
  7560. ".nupkg.metadata",
  7561. ".signature.p7s",
  7562. "ThirdPartyNotices.txt",
  7563. "dotnet_library_license.txt",
  7564. "lib/MonoAndroid10/_._",
  7565. "lib/MonoTouch10/_._",
  7566. "lib/net45/_._",
  7567. "lib/portable-net45+win8+wp8+wpa81/_._",
  7568. "lib/win8/_._",
  7569. "lib/wp80/_._",
  7570. "lib/wpa81/_._",
  7571. "lib/xamarinios10/_._",
  7572. "lib/xamarinmac20/_._",
  7573. "lib/xamarintvos10/_._",
  7574. "lib/xamarinwatchos10/_._",
  7575. "ref/MonoAndroid10/_._",
  7576. "ref/MonoTouch10/_._",
  7577. "ref/net45/_._",
  7578. "ref/netcore50/System.Reflection.Primitives.dll",
  7579. "ref/netcore50/System.Reflection.Primitives.xml",
  7580. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7581. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7582. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7583. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7584. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7585. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7586. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7587. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7588. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7589. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7590. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7591. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7592. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7593. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7594. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7595. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7596. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7597. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7598. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7599. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7600. "ref/portable-net45+win8+wp8+wpa81/_._",
  7601. "ref/win8/_._",
  7602. "ref/wp80/_._",
  7603. "ref/wpa81/_._",
  7604. "ref/xamarinios10/_._",
  7605. "ref/xamarinmac20/_._",
  7606. "ref/xamarintvos10/_._",
  7607. "ref/xamarinwatchos10/_._",
  7608. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7609. "system.reflection.primitives.nuspec"
  7610. ]
  7611. },
  7612. "System.Reflection.TypeExtensions/4.3.0": {
  7613. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7614. "type": "package",
  7615. "path": "system.reflection.typeextensions/4.3.0",
  7616. "files": [
  7617. ".nupkg.metadata",
  7618. ".signature.p7s",
  7619. "ThirdPartyNotices.txt",
  7620. "dotnet_library_license.txt",
  7621. "lib/MonoAndroid10/_._",
  7622. "lib/MonoTouch10/_._",
  7623. "lib/net46/System.Reflection.TypeExtensions.dll",
  7624. "lib/net462/System.Reflection.TypeExtensions.dll",
  7625. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7626. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7627. "lib/xamarinios10/_._",
  7628. "lib/xamarinmac20/_._",
  7629. "lib/xamarintvos10/_._",
  7630. "lib/xamarinwatchos10/_._",
  7631. "ref/MonoAndroid10/_._",
  7632. "ref/MonoTouch10/_._",
  7633. "ref/net46/System.Reflection.TypeExtensions.dll",
  7634. "ref/net462/System.Reflection.TypeExtensions.dll",
  7635. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7636. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7637. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7638. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7639. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7640. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7641. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7642. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7643. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7644. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7645. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7646. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7647. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7648. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7649. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7650. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7651. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7652. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7653. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7654. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7655. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7656. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7657. "ref/xamarinios10/_._",
  7658. "ref/xamarinmac20/_._",
  7659. "ref/xamarintvos10/_._",
  7660. "ref/xamarinwatchos10/_._",
  7661. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7662. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7663. "system.reflection.typeextensions.nuspec"
  7664. ]
  7665. },
  7666. "System.Resources.ResourceManager/4.3.0": {
  7667. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7668. "type": "package",
  7669. "path": "system.resources.resourcemanager/4.3.0",
  7670. "files": [
  7671. ".nupkg.metadata",
  7672. ".signature.p7s",
  7673. "ThirdPartyNotices.txt",
  7674. "dotnet_library_license.txt",
  7675. "lib/MonoAndroid10/_._",
  7676. "lib/MonoTouch10/_._",
  7677. "lib/net45/_._",
  7678. "lib/portable-net45+win8+wp8+wpa81/_._",
  7679. "lib/win8/_._",
  7680. "lib/wp80/_._",
  7681. "lib/wpa81/_._",
  7682. "lib/xamarinios10/_._",
  7683. "lib/xamarinmac20/_._",
  7684. "lib/xamarintvos10/_._",
  7685. "lib/xamarinwatchos10/_._",
  7686. "ref/MonoAndroid10/_._",
  7687. "ref/MonoTouch10/_._",
  7688. "ref/net45/_._",
  7689. "ref/netcore50/System.Resources.ResourceManager.dll",
  7690. "ref/netcore50/System.Resources.ResourceManager.xml",
  7691. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7692. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7693. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7694. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7695. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7696. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7697. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7698. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7699. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7700. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7701. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7702. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7703. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7704. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7705. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7706. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7707. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7708. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7709. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7710. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7711. "ref/portable-net45+win8+wp8+wpa81/_._",
  7712. "ref/win8/_._",
  7713. "ref/wp80/_._",
  7714. "ref/wpa81/_._",
  7715. "ref/xamarinios10/_._",
  7716. "ref/xamarinmac20/_._",
  7717. "ref/xamarintvos10/_._",
  7718. "ref/xamarinwatchos10/_._",
  7719. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7720. "system.resources.resourcemanager.nuspec"
  7721. ]
  7722. },
  7723. "System.Runtime/4.3.0": {
  7724. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7725. "type": "package",
  7726. "path": "system.runtime/4.3.0",
  7727. "files": [
  7728. ".nupkg.metadata",
  7729. ".signature.p7s",
  7730. "ThirdPartyNotices.txt",
  7731. "dotnet_library_license.txt",
  7732. "lib/MonoAndroid10/_._",
  7733. "lib/MonoTouch10/_._",
  7734. "lib/net45/_._",
  7735. "lib/net462/System.Runtime.dll",
  7736. "lib/portable-net45+win8+wp80+wpa81/_._",
  7737. "lib/win8/_._",
  7738. "lib/wp80/_._",
  7739. "lib/wpa81/_._",
  7740. "lib/xamarinios10/_._",
  7741. "lib/xamarinmac20/_._",
  7742. "lib/xamarintvos10/_._",
  7743. "lib/xamarinwatchos10/_._",
  7744. "ref/MonoAndroid10/_._",
  7745. "ref/MonoTouch10/_._",
  7746. "ref/net45/_._",
  7747. "ref/net462/System.Runtime.dll",
  7748. "ref/netcore50/System.Runtime.dll",
  7749. "ref/netcore50/System.Runtime.xml",
  7750. "ref/netcore50/de/System.Runtime.xml",
  7751. "ref/netcore50/es/System.Runtime.xml",
  7752. "ref/netcore50/fr/System.Runtime.xml",
  7753. "ref/netcore50/it/System.Runtime.xml",
  7754. "ref/netcore50/ja/System.Runtime.xml",
  7755. "ref/netcore50/ko/System.Runtime.xml",
  7756. "ref/netcore50/ru/System.Runtime.xml",
  7757. "ref/netcore50/zh-hans/System.Runtime.xml",
  7758. "ref/netcore50/zh-hant/System.Runtime.xml",
  7759. "ref/netstandard1.0/System.Runtime.dll",
  7760. "ref/netstandard1.0/System.Runtime.xml",
  7761. "ref/netstandard1.0/de/System.Runtime.xml",
  7762. "ref/netstandard1.0/es/System.Runtime.xml",
  7763. "ref/netstandard1.0/fr/System.Runtime.xml",
  7764. "ref/netstandard1.0/it/System.Runtime.xml",
  7765. "ref/netstandard1.0/ja/System.Runtime.xml",
  7766. "ref/netstandard1.0/ko/System.Runtime.xml",
  7767. "ref/netstandard1.0/ru/System.Runtime.xml",
  7768. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7769. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7770. "ref/netstandard1.2/System.Runtime.dll",
  7771. "ref/netstandard1.2/System.Runtime.xml",
  7772. "ref/netstandard1.2/de/System.Runtime.xml",
  7773. "ref/netstandard1.2/es/System.Runtime.xml",
  7774. "ref/netstandard1.2/fr/System.Runtime.xml",
  7775. "ref/netstandard1.2/it/System.Runtime.xml",
  7776. "ref/netstandard1.2/ja/System.Runtime.xml",
  7777. "ref/netstandard1.2/ko/System.Runtime.xml",
  7778. "ref/netstandard1.2/ru/System.Runtime.xml",
  7779. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7780. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7781. "ref/netstandard1.3/System.Runtime.dll",
  7782. "ref/netstandard1.3/System.Runtime.xml",
  7783. "ref/netstandard1.3/de/System.Runtime.xml",
  7784. "ref/netstandard1.3/es/System.Runtime.xml",
  7785. "ref/netstandard1.3/fr/System.Runtime.xml",
  7786. "ref/netstandard1.3/it/System.Runtime.xml",
  7787. "ref/netstandard1.3/ja/System.Runtime.xml",
  7788. "ref/netstandard1.3/ko/System.Runtime.xml",
  7789. "ref/netstandard1.3/ru/System.Runtime.xml",
  7790. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7791. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7792. "ref/netstandard1.5/System.Runtime.dll",
  7793. "ref/netstandard1.5/System.Runtime.xml",
  7794. "ref/netstandard1.5/de/System.Runtime.xml",
  7795. "ref/netstandard1.5/es/System.Runtime.xml",
  7796. "ref/netstandard1.5/fr/System.Runtime.xml",
  7797. "ref/netstandard1.5/it/System.Runtime.xml",
  7798. "ref/netstandard1.5/ja/System.Runtime.xml",
  7799. "ref/netstandard1.5/ko/System.Runtime.xml",
  7800. "ref/netstandard1.5/ru/System.Runtime.xml",
  7801. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7802. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7803. "ref/portable-net45+win8+wp80+wpa81/_._",
  7804. "ref/win8/_._",
  7805. "ref/wp80/_._",
  7806. "ref/wpa81/_._",
  7807. "ref/xamarinios10/_._",
  7808. "ref/xamarinmac20/_._",
  7809. "ref/xamarintvos10/_._",
  7810. "ref/xamarinwatchos10/_._",
  7811. "system.runtime.4.3.0.nupkg.sha512",
  7812. "system.runtime.nuspec"
  7813. ]
  7814. },
  7815. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  7816. "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  7817. "type": "package",
  7818. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  7819. "files": [
  7820. ".nupkg.metadata",
  7821. ".signature.p7s",
  7822. "Icon.png",
  7823. "LICENSE.TXT",
  7824. "THIRD-PARTY-NOTICES.TXT",
  7825. "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
  7826. "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
  7827. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7828. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7829. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7830. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7831. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7832. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7833. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  7834. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  7835. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7836. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7837. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7838. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7839. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
  7840. "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
  7841. "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
  7842. "system.runtime.compilerservices.unsafe.nuspec",
  7843. "useSharedDesignerContext.txt",
  7844. "version.txt"
  7845. ]
  7846. },
  7847. "System.Runtime.Extensions/4.3.0": {
  7848. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7849. "type": "package",
  7850. "path": "system.runtime.extensions/4.3.0",
  7851. "files": [
  7852. ".nupkg.metadata",
  7853. ".signature.p7s",
  7854. "ThirdPartyNotices.txt",
  7855. "dotnet_library_license.txt",
  7856. "lib/MonoAndroid10/_._",
  7857. "lib/MonoTouch10/_._",
  7858. "lib/net45/_._",
  7859. "lib/net462/System.Runtime.Extensions.dll",
  7860. "lib/portable-net45+win8+wp8+wpa81/_._",
  7861. "lib/win8/_._",
  7862. "lib/wp80/_._",
  7863. "lib/wpa81/_._",
  7864. "lib/xamarinios10/_._",
  7865. "lib/xamarinmac20/_._",
  7866. "lib/xamarintvos10/_._",
  7867. "lib/xamarinwatchos10/_._",
  7868. "ref/MonoAndroid10/_._",
  7869. "ref/MonoTouch10/_._",
  7870. "ref/net45/_._",
  7871. "ref/net462/System.Runtime.Extensions.dll",
  7872. "ref/netcore50/System.Runtime.Extensions.dll",
  7873. "ref/netcore50/System.Runtime.Extensions.xml",
  7874. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7875. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7876. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7877. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7878. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7879. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7880. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7881. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7882. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7883. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7884. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7885. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7886. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7887. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7888. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7889. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7890. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7891. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7892. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7893. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7894. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7895. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7896. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7897. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7898. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7899. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7900. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7901. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7902. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7903. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7904. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7905. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7906. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7907. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7908. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7909. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7910. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7911. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7912. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7913. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7914. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7915. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7916. "ref/portable-net45+win8+wp8+wpa81/_._",
  7917. "ref/win8/_._",
  7918. "ref/wp80/_._",
  7919. "ref/wpa81/_._",
  7920. "ref/xamarinios10/_._",
  7921. "ref/xamarinmac20/_._",
  7922. "ref/xamarintvos10/_._",
  7923. "ref/xamarinwatchos10/_._",
  7924. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7925. "system.runtime.extensions.nuspec"
  7926. ]
  7927. },
  7928. "System.Runtime.Handles/4.3.0": {
  7929. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7930. "type": "package",
  7931. "path": "system.runtime.handles/4.3.0",
  7932. "files": [
  7933. ".nupkg.metadata",
  7934. ".signature.p7s",
  7935. "ThirdPartyNotices.txt",
  7936. "dotnet_library_license.txt",
  7937. "lib/MonoAndroid10/_._",
  7938. "lib/MonoTouch10/_._",
  7939. "lib/net46/_._",
  7940. "lib/xamarinios10/_._",
  7941. "lib/xamarinmac20/_._",
  7942. "lib/xamarintvos10/_._",
  7943. "lib/xamarinwatchos10/_._",
  7944. "ref/MonoAndroid10/_._",
  7945. "ref/MonoTouch10/_._",
  7946. "ref/net46/_._",
  7947. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7948. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7949. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7950. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7951. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7952. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7953. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7954. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7955. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7956. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7957. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7958. "ref/xamarinios10/_._",
  7959. "ref/xamarinmac20/_._",
  7960. "ref/xamarintvos10/_._",
  7961. "ref/xamarinwatchos10/_._",
  7962. "system.runtime.handles.4.3.0.nupkg.sha512",
  7963. "system.runtime.handles.nuspec"
  7964. ]
  7965. },
  7966. "System.Runtime.InteropServices/4.3.0": {
  7967. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7968. "type": "package",
  7969. "path": "system.runtime.interopservices/4.3.0",
  7970. "files": [
  7971. ".nupkg.metadata",
  7972. ".signature.p7s",
  7973. "ThirdPartyNotices.txt",
  7974. "dotnet_library_license.txt",
  7975. "lib/MonoAndroid10/_._",
  7976. "lib/MonoTouch10/_._",
  7977. "lib/net45/_._",
  7978. "lib/net462/System.Runtime.InteropServices.dll",
  7979. "lib/net463/System.Runtime.InteropServices.dll",
  7980. "lib/portable-net45+win8+wpa81/_._",
  7981. "lib/win8/_._",
  7982. "lib/wpa81/_._",
  7983. "lib/xamarinios10/_._",
  7984. "lib/xamarinmac20/_._",
  7985. "lib/xamarintvos10/_._",
  7986. "lib/xamarinwatchos10/_._",
  7987. "ref/MonoAndroid10/_._",
  7988. "ref/MonoTouch10/_._",
  7989. "ref/net45/_._",
  7990. "ref/net462/System.Runtime.InteropServices.dll",
  7991. "ref/net463/System.Runtime.InteropServices.dll",
  7992. "ref/netcore50/System.Runtime.InteropServices.dll",
  7993. "ref/netcore50/System.Runtime.InteropServices.xml",
  7994. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7995. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7996. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7997. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7998. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7999. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8000. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8001. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8002. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8003. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8004. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8005. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8006. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8007. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8008. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8009. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8010. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8011. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8012. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8013. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8014. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8015. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8016. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8017. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8018. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8019. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8020. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8021. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8022. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8023. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8024. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8025. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8026. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8027. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8028. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8029. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8030. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8031. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8032. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8033. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8034. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8035. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8036. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8037. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8038. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8039. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8040. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8041. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8042. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8043. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8044. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8045. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8046. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8047. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8048. "ref/portable-net45+win8+wpa81/_._",
  8049. "ref/win8/_._",
  8050. "ref/wpa81/_._",
  8051. "ref/xamarinios10/_._",
  8052. "ref/xamarinmac20/_._",
  8053. "ref/xamarintvos10/_._",
  8054. "ref/xamarinwatchos10/_._",
  8055. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8056. "system.runtime.interopservices.nuspec"
  8057. ]
  8058. },
  8059. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8060. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8061. "type": "package",
  8062. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8063. "files": [
  8064. ".nupkg.metadata",
  8065. ".signature.p7s",
  8066. "ThirdPartyNotices.txt",
  8067. "dotnet_library_license.txt",
  8068. "lib/MonoAndroid10/_._",
  8069. "lib/MonoTouch10/_._",
  8070. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8071. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8072. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8073. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8074. "lib/xamarinios10/_._",
  8075. "lib/xamarinmac20/_._",
  8076. "lib/xamarintvos10/_._",
  8077. "lib/xamarinwatchos10/_._",
  8078. "ref/MonoAndroid10/_._",
  8079. "ref/MonoTouch10/_._",
  8080. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8081. "ref/xamarinios10/_._",
  8082. "ref/xamarinmac20/_._",
  8083. "ref/xamarintvos10/_._",
  8084. "ref/xamarinwatchos10/_._",
  8085. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8086. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8087. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8088. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8089. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8090. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8091. "system.runtime.interopservices.runtimeinformation.nuspec"
  8092. ]
  8093. },
  8094. "System.Runtime.Loader/4.3.0": {
  8095. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  8096. "type": "package",
  8097. "path": "system.runtime.loader/4.3.0",
  8098. "files": [
  8099. ".nupkg.metadata",
  8100. ".signature.p7s",
  8101. "ThirdPartyNotices.txt",
  8102. "dotnet_library_license.txt",
  8103. "lib/MonoAndroid10/_._",
  8104. "lib/MonoTouch10/_._",
  8105. "lib/net462/_._",
  8106. "lib/netstandard1.5/System.Runtime.Loader.dll",
  8107. "lib/xamarinios10/_._",
  8108. "lib/xamarinmac20/_._",
  8109. "lib/xamarintvos10/_._",
  8110. "lib/xamarinwatchos10/_._",
  8111. "ref/netstandard1.5/System.Runtime.Loader.dll",
  8112. "ref/netstandard1.5/System.Runtime.Loader.xml",
  8113. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  8114. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  8115. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  8116. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  8117. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  8118. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  8119. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  8120. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8121. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  8122. "system.runtime.loader.4.3.0.nupkg.sha512",
  8123. "system.runtime.loader.nuspec"
  8124. ]
  8125. },
  8126. "System.Runtime.Numerics/4.3.0": {
  8127. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8128. "type": "package",
  8129. "path": "system.runtime.numerics/4.3.0",
  8130. "files": [
  8131. ".nupkg.metadata",
  8132. ".signature.p7s",
  8133. "ThirdPartyNotices.txt",
  8134. "dotnet_library_license.txt",
  8135. "lib/MonoAndroid10/_._",
  8136. "lib/MonoTouch10/_._",
  8137. "lib/net45/_._",
  8138. "lib/netcore50/System.Runtime.Numerics.dll",
  8139. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8140. "lib/portable-net45+win8+wpa81/_._",
  8141. "lib/win8/_._",
  8142. "lib/wpa81/_._",
  8143. "lib/xamarinios10/_._",
  8144. "lib/xamarinmac20/_._",
  8145. "lib/xamarintvos10/_._",
  8146. "lib/xamarinwatchos10/_._",
  8147. "ref/MonoAndroid10/_._",
  8148. "ref/MonoTouch10/_._",
  8149. "ref/net45/_._",
  8150. "ref/netcore50/System.Runtime.Numerics.dll",
  8151. "ref/netcore50/System.Runtime.Numerics.xml",
  8152. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8153. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8154. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8155. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8156. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8157. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8158. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8159. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8160. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8161. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8162. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8163. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8164. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8165. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8166. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8167. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8168. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8169. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8170. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8171. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8172. "ref/portable-net45+win8+wpa81/_._",
  8173. "ref/win8/_._",
  8174. "ref/wpa81/_._",
  8175. "ref/xamarinios10/_._",
  8176. "ref/xamarinmac20/_._",
  8177. "ref/xamarintvos10/_._",
  8178. "ref/xamarinwatchos10/_._",
  8179. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8180. "system.runtime.numerics.nuspec"
  8181. ]
  8182. },
  8183. "System.Security.AccessControl/4.5.0": {
  8184. "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
  8185. "type": "package",
  8186. "path": "system.security.accesscontrol/4.5.0",
  8187. "files": [
  8188. ".nupkg.metadata",
  8189. ".signature.p7s",
  8190. "LICENSE.TXT",
  8191. "THIRD-PARTY-NOTICES.TXT",
  8192. "lib/net46/System.Security.AccessControl.dll",
  8193. "lib/net461/System.Security.AccessControl.dll",
  8194. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8195. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8196. "lib/uap10.0.16299/_._",
  8197. "ref/net46/System.Security.AccessControl.dll",
  8198. "ref/net461/System.Security.AccessControl.dll",
  8199. "ref/net461/System.Security.AccessControl.xml",
  8200. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8201. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8202. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8203. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8204. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8205. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8206. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8207. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8208. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8209. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8210. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8211. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8212. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8213. "ref/uap10.0.16299/_._",
  8214. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8215. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8216. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8217. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8218. "runtimes/win/lib/uap10.0.16299/_._",
  8219. "system.security.accesscontrol.4.5.0.nupkg.sha512",
  8220. "system.security.accesscontrol.nuspec",
  8221. "useSharedDesignerContext.txt",
  8222. "version.txt"
  8223. ]
  8224. },
  8225. "System.Security.Cryptography.Algorithms/4.3.0": {
  8226. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  8227. "type": "package",
  8228. "path": "system.security.cryptography.algorithms/4.3.0",
  8229. "files": [
  8230. ".nupkg.metadata",
  8231. ".signature.p7s",
  8232. "ThirdPartyNotices.txt",
  8233. "dotnet_library_license.txt",
  8234. "lib/MonoAndroid10/_._",
  8235. "lib/MonoTouch10/_._",
  8236. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8237. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8238. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8239. "lib/xamarinios10/_._",
  8240. "lib/xamarinmac20/_._",
  8241. "lib/xamarintvos10/_._",
  8242. "lib/xamarinwatchos10/_._",
  8243. "ref/MonoAndroid10/_._",
  8244. "ref/MonoTouch10/_._",
  8245. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8246. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8247. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8248. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8249. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8250. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8251. "ref/xamarinios10/_._",
  8252. "ref/xamarinmac20/_._",
  8253. "ref/xamarintvos10/_._",
  8254. "ref/xamarinwatchos10/_._",
  8255. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8256. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8257. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8258. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8259. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8260. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8261. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8262. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8263. "system.security.cryptography.algorithms.nuspec"
  8264. ]
  8265. },
  8266. "System.Security.Cryptography.Cng/4.5.0": {
  8267. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8268. "type": "package",
  8269. "path": "system.security.cryptography.cng/4.5.0",
  8270. "files": [
  8271. ".nupkg.metadata",
  8272. ".signature.p7s",
  8273. "LICENSE.TXT",
  8274. "THIRD-PARTY-NOTICES.TXT",
  8275. "lib/MonoAndroid10/_._",
  8276. "lib/MonoTouch10/_._",
  8277. "lib/net46/System.Security.Cryptography.Cng.dll",
  8278. "lib/net461/System.Security.Cryptography.Cng.dll",
  8279. "lib/net462/System.Security.Cryptography.Cng.dll",
  8280. "lib/net47/System.Security.Cryptography.Cng.dll",
  8281. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8282. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8283. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8284. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8285. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8286. "lib/uap10.0.16299/_._",
  8287. "lib/xamarinios10/_._",
  8288. "lib/xamarinmac20/_._",
  8289. "lib/xamarintvos10/_._",
  8290. "lib/xamarinwatchos10/_._",
  8291. "ref/MonoAndroid10/_._",
  8292. "ref/MonoTouch10/_._",
  8293. "ref/net46/System.Security.Cryptography.Cng.dll",
  8294. "ref/net461/System.Security.Cryptography.Cng.dll",
  8295. "ref/net461/System.Security.Cryptography.Cng.xml",
  8296. "ref/net462/System.Security.Cryptography.Cng.dll",
  8297. "ref/net462/System.Security.Cryptography.Cng.xml",
  8298. "ref/net47/System.Security.Cryptography.Cng.dll",
  8299. "ref/net47/System.Security.Cryptography.Cng.xml",
  8300. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8301. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8302. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8303. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8304. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8305. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8306. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8307. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8308. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8309. "ref/uap10.0.16299/_._",
  8310. "ref/xamarinios10/_._",
  8311. "ref/xamarinmac20/_._",
  8312. "ref/xamarintvos10/_._",
  8313. "ref/xamarinwatchos10/_._",
  8314. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8315. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8316. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8317. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8318. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8319. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8320. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8321. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8322. "runtimes/win/lib/uap10.0.16299/_._",
  8323. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8324. "system.security.cryptography.cng.nuspec",
  8325. "useSharedDesignerContext.txt",
  8326. "version.txt"
  8327. ]
  8328. },
  8329. "System.Security.Cryptography.Csp/4.3.0": {
  8330. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8331. "type": "package",
  8332. "path": "system.security.cryptography.csp/4.3.0",
  8333. "files": [
  8334. ".nupkg.metadata",
  8335. ".signature.p7s",
  8336. "ThirdPartyNotices.txt",
  8337. "dotnet_library_license.txt",
  8338. "lib/MonoAndroid10/_._",
  8339. "lib/MonoTouch10/_._",
  8340. "lib/net46/System.Security.Cryptography.Csp.dll",
  8341. "lib/xamarinios10/_._",
  8342. "lib/xamarinmac20/_._",
  8343. "lib/xamarintvos10/_._",
  8344. "lib/xamarinwatchos10/_._",
  8345. "ref/MonoAndroid10/_._",
  8346. "ref/MonoTouch10/_._",
  8347. "ref/net46/System.Security.Cryptography.Csp.dll",
  8348. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8349. "ref/xamarinios10/_._",
  8350. "ref/xamarinmac20/_._",
  8351. "ref/xamarintvos10/_._",
  8352. "ref/xamarinwatchos10/_._",
  8353. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8354. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8355. "runtimes/win/lib/netcore50/_._",
  8356. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8357. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8358. "system.security.cryptography.csp.nuspec"
  8359. ]
  8360. },
  8361. "System.Security.Cryptography.Encoding/4.3.0": {
  8362. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8363. "type": "package",
  8364. "path": "system.security.cryptography.encoding/4.3.0",
  8365. "files": [
  8366. ".nupkg.metadata",
  8367. ".signature.p7s",
  8368. "ThirdPartyNotices.txt",
  8369. "dotnet_library_license.txt",
  8370. "lib/MonoAndroid10/_._",
  8371. "lib/MonoTouch10/_._",
  8372. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8373. "lib/xamarinios10/_._",
  8374. "lib/xamarinmac20/_._",
  8375. "lib/xamarintvos10/_._",
  8376. "lib/xamarinwatchos10/_._",
  8377. "ref/MonoAndroid10/_._",
  8378. "ref/MonoTouch10/_._",
  8379. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8380. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8381. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8382. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8383. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8384. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8385. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8386. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8387. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8388. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8389. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8390. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8391. "ref/xamarinios10/_._",
  8392. "ref/xamarinmac20/_._",
  8393. "ref/xamarintvos10/_._",
  8394. "ref/xamarinwatchos10/_._",
  8395. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8396. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8397. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8398. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8399. "system.security.cryptography.encoding.nuspec"
  8400. ]
  8401. },
  8402. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8403. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8404. "type": "package",
  8405. "path": "system.security.cryptography.openssl/4.3.0",
  8406. "files": [
  8407. ".nupkg.metadata",
  8408. ".signature.p7s",
  8409. "ThirdPartyNotices.txt",
  8410. "dotnet_library_license.txt",
  8411. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8412. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8413. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8414. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8415. "system.security.cryptography.openssl.nuspec"
  8416. ]
  8417. },
  8418. "System.Security.Cryptography.Pkcs/4.5.0": {
  8419. "sha512": "TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==",
  8420. "type": "package",
  8421. "path": "system.security.cryptography.pkcs/4.5.0",
  8422. "files": [
  8423. ".nupkg.metadata",
  8424. ".signature.p7s",
  8425. "LICENSE.TXT",
  8426. "THIRD-PARTY-NOTICES.TXT",
  8427. "lib/net46/System.Security.Cryptography.Pkcs.dll",
  8428. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  8429. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  8430. "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  8431. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  8432. "ref/net46/System.Security.Cryptography.Pkcs.dll",
  8433. "ref/net461/System.Security.Cryptography.Pkcs.dll",
  8434. "ref/net461/System.Security.Cryptography.Pkcs.xml",
  8435. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  8436. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
  8437. "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  8438. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  8439. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  8440. "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
  8441. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  8442. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  8443. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  8444. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  8445. "system.security.cryptography.pkcs.4.5.0.nupkg.sha512",
  8446. "system.security.cryptography.pkcs.nuspec",
  8447. "useSharedDesignerContext.txt",
  8448. "version.txt"
  8449. ]
  8450. },
  8451. "System.Security.Cryptography.Primitives/4.3.0": {
  8452. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8453. "type": "package",
  8454. "path": "system.security.cryptography.primitives/4.3.0",
  8455. "files": [
  8456. ".nupkg.metadata",
  8457. ".signature.p7s",
  8458. "ThirdPartyNotices.txt",
  8459. "dotnet_library_license.txt",
  8460. "lib/MonoAndroid10/_._",
  8461. "lib/MonoTouch10/_._",
  8462. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8463. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8464. "lib/xamarinios10/_._",
  8465. "lib/xamarinmac20/_._",
  8466. "lib/xamarintvos10/_._",
  8467. "lib/xamarinwatchos10/_._",
  8468. "ref/MonoAndroid10/_._",
  8469. "ref/MonoTouch10/_._",
  8470. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8471. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8472. "ref/xamarinios10/_._",
  8473. "ref/xamarinmac20/_._",
  8474. "ref/xamarintvos10/_._",
  8475. "ref/xamarinwatchos10/_._",
  8476. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8477. "system.security.cryptography.primitives.nuspec"
  8478. ]
  8479. },
  8480. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8481. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8482. "type": "package",
  8483. "path": "system.security.cryptography.x509certificates/4.3.0",
  8484. "files": [
  8485. ".nupkg.metadata",
  8486. ".signature.p7s",
  8487. "ThirdPartyNotices.txt",
  8488. "dotnet_library_license.txt",
  8489. "lib/MonoAndroid10/_._",
  8490. "lib/MonoTouch10/_._",
  8491. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8492. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8493. "lib/xamarinios10/_._",
  8494. "lib/xamarinmac20/_._",
  8495. "lib/xamarintvos10/_._",
  8496. "lib/xamarinwatchos10/_._",
  8497. "ref/MonoAndroid10/_._",
  8498. "ref/MonoTouch10/_._",
  8499. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8500. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8501. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8502. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8503. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8504. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8505. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8506. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8507. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8508. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8509. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8510. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8511. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8512. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8513. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8514. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8515. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8516. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8517. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8518. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8519. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8520. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8521. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8522. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8523. "ref/xamarinios10/_._",
  8524. "ref/xamarinmac20/_._",
  8525. "ref/xamarintvos10/_._",
  8526. "ref/xamarinwatchos10/_._",
  8527. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8528. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8529. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8530. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8531. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8532. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8533. "system.security.cryptography.x509certificates.nuspec"
  8534. ]
  8535. },
  8536. "System.Security.Cryptography.Xml/4.5.0": {
  8537. "sha512": "i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==",
  8538. "type": "package",
  8539. "path": "system.security.cryptography.xml/4.5.0",
  8540. "files": [
  8541. ".nupkg.metadata",
  8542. ".signature.p7s",
  8543. "LICENSE.TXT",
  8544. "THIRD-PARTY-NOTICES.TXT",
  8545. "lib/net461/System.Security.Cryptography.Xml.dll",
  8546. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  8547. "ref/net461/System.Security.Cryptography.Xml.dll",
  8548. "ref/net461/System.Security.Cryptography.Xml.xml",
  8549. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll",
  8550. "ref/netstandard2.0/System.Security.Cryptography.Xml.xml",
  8551. "system.security.cryptography.xml.4.5.0.nupkg.sha512",
  8552. "system.security.cryptography.xml.nuspec",
  8553. "useSharedDesignerContext.txt",
  8554. "version.txt"
  8555. ]
  8556. },
  8557. "System.Security.Permissions/4.5.0": {
  8558. "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
  8559. "type": "package",
  8560. "path": "system.security.permissions/4.5.0",
  8561. "files": [
  8562. ".nupkg.metadata",
  8563. ".signature.p7s",
  8564. "LICENSE.TXT",
  8565. "THIRD-PARTY-NOTICES.TXT",
  8566. "lib/net461/System.Security.Permissions.dll",
  8567. "lib/netstandard2.0/System.Security.Permissions.dll",
  8568. "ref/net461/System.Security.Permissions.dll",
  8569. "ref/net461/System.Security.Permissions.xml",
  8570. "ref/netstandard2.0/System.Security.Permissions.dll",
  8571. "ref/netstandard2.0/System.Security.Permissions.xml",
  8572. "system.security.permissions.4.5.0.nupkg.sha512",
  8573. "system.security.permissions.nuspec",
  8574. "useSharedDesignerContext.txt",
  8575. "version.txt"
  8576. ]
  8577. },
  8578. "System.Security.Principal.Windows/4.5.0": {
  8579. "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
  8580. "type": "package",
  8581. "path": "system.security.principal.windows/4.5.0",
  8582. "files": [
  8583. ".nupkg.metadata",
  8584. ".signature.p7s",
  8585. "LICENSE.TXT",
  8586. "THIRD-PARTY-NOTICES.TXT",
  8587. "lib/net46/System.Security.Principal.Windows.dll",
  8588. "lib/net461/System.Security.Principal.Windows.dll",
  8589. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8590. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8591. "lib/uap10.0.16299/_._",
  8592. "ref/net46/System.Security.Principal.Windows.dll",
  8593. "ref/net461/System.Security.Principal.Windows.dll",
  8594. "ref/net461/System.Security.Principal.Windows.xml",
  8595. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8596. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8597. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8598. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8599. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8600. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8601. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8602. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8603. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8604. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8605. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8606. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8607. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8608. "ref/uap10.0.16299/_._",
  8609. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8610. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8611. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8612. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8613. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8614. "runtimes/win/lib/uap10.0.16299/_._",
  8615. "system.security.principal.windows.4.5.0.nupkg.sha512",
  8616. "system.security.principal.windows.nuspec",
  8617. "useSharedDesignerContext.txt",
  8618. "version.txt"
  8619. ]
  8620. },
  8621. "System.Text.Encoding/4.3.0": {
  8622. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8623. "type": "package",
  8624. "path": "system.text.encoding/4.3.0",
  8625. "files": [
  8626. ".nupkg.metadata",
  8627. ".signature.p7s",
  8628. "ThirdPartyNotices.txt",
  8629. "dotnet_library_license.txt",
  8630. "lib/MonoAndroid10/_._",
  8631. "lib/MonoTouch10/_._",
  8632. "lib/net45/_._",
  8633. "lib/portable-net45+win8+wp8+wpa81/_._",
  8634. "lib/win8/_._",
  8635. "lib/wp80/_._",
  8636. "lib/wpa81/_._",
  8637. "lib/xamarinios10/_._",
  8638. "lib/xamarinmac20/_._",
  8639. "lib/xamarintvos10/_._",
  8640. "lib/xamarinwatchos10/_._",
  8641. "ref/MonoAndroid10/_._",
  8642. "ref/MonoTouch10/_._",
  8643. "ref/net45/_._",
  8644. "ref/netcore50/System.Text.Encoding.dll",
  8645. "ref/netcore50/System.Text.Encoding.xml",
  8646. "ref/netcore50/de/System.Text.Encoding.xml",
  8647. "ref/netcore50/es/System.Text.Encoding.xml",
  8648. "ref/netcore50/fr/System.Text.Encoding.xml",
  8649. "ref/netcore50/it/System.Text.Encoding.xml",
  8650. "ref/netcore50/ja/System.Text.Encoding.xml",
  8651. "ref/netcore50/ko/System.Text.Encoding.xml",
  8652. "ref/netcore50/ru/System.Text.Encoding.xml",
  8653. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8654. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8655. "ref/netstandard1.0/System.Text.Encoding.dll",
  8656. "ref/netstandard1.0/System.Text.Encoding.xml",
  8657. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8658. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8659. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8660. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8661. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8662. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8663. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8664. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8665. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8666. "ref/netstandard1.3/System.Text.Encoding.dll",
  8667. "ref/netstandard1.3/System.Text.Encoding.xml",
  8668. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8669. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8670. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8671. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8672. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8673. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8674. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8675. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8676. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8677. "ref/portable-net45+win8+wp8+wpa81/_._",
  8678. "ref/win8/_._",
  8679. "ref/wp80/_._",
  8680. "ref/wpa81/_._",
  8681. "ref/xamarinios10/_._",
  8682. "ref/xamarinmac20/_._",
  8683. "ref/xamarintvos10/_._",
  8684. "ref/xamarinwatchos10/_._",
  8685. "system.text.encoding.4.3.0.nupkg.sha512",
  8686. "system.text.encoding.nuspec"
  8687. ]
  8688. },
  8689. "System.Text.Encoding.CodePages/5.0.0": {
  8690. "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  8691. "type": "package",
  8692. "path": "system.text.encoding.codepages/5.0.0",
  8693. "files": [
  8694. ".nupkg.metadata",
  8695. ".signature.p7s",
  8696. "Icon.png",
  8697. "LICENSE.TXT",
  8698. "THIRD-PARTY-NOTICES.TXT",
  8699. "lib/MonoAndroid10/_._",
  8700. "lib/MonoTouch10/_._",
  8701. "lib/net46/System.Text.Encoding.CodePages.dll",
  8702. "lib/net461/System.Text.Encoding.CodePages.dll",
  8703. "lib/net461/System.Text.Encoding.CodePages.xml",
  8704. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8705. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8706. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8707. "lib/xamarinios10/_._",
  8708. "lib/xamarinmac20/_._",
  8709. "lib/xamarintvos10/_._",
  8710. "lib/xamarinwatchos10/_._",
  8711. "ref/MonoAndroid10/_._",
  8712. "ref/MonoTouch10/_._",
  8713. "ref/xamarinios10/_._",
  8714. "ref/xamarinmac20/_._",
  8715. "ref/xamarintvos10/_._",
  8716. "ref/xamarinwatchos10/_._",
  8717. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8718. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8719. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8720. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8721. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8722. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8723. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8724. "system.text.encoding.codepages.5.0.0.nupkg.sha512",
  8725. "system.text.encoding.codepages.nuspec",
  8726. "useSharedDesignerContext.txt",
  8727. "version.txt"
  8728. ]
  8729. },
  8730. "System.Text.Encoding.Extensions/4.3.0": {
  8731. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8732. "type": "package",
  8733. "path": "system.text.encoding.extensions/4.3.0",
  8734. "files": [
  8735. ".nupkg.metadata",
  8736. ".signature.p7s",
  8737. "ThirdPartyNotices.txt",
  8738. "dotnet_library_license.txt",
  8739. "lib/MonoAndroid10/_._",
  8740. "lib/MonoTouch10/_._",
  8741. "lib/net45/_._",
  8742. "lib/portable-net45+win8+wp8+wpa81/_._",
  8743. "lib/win8/_._",
  8744. "lib/wp80/_._",
  8745. "lib/wpa81/_._",
  8746. "lib/xamarinios10/_._",
  8747. "lib/xamarinmac20/_._",
  8748. "lib/xamarintvos10/_._",
  8749. "lib/xamarinwatchos10/_._",
  8750. "ref/MonoAndroid10/_._",
  8751. "ref/MonoTouch10/_._",
  8752. "ref/net45/_._",
  8753. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8754. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8755. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8756. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8757. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8758. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8759. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8760. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8761. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8762. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8763. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8764. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8765. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8766. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8767. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8768. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8769. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8770. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8771. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8772. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8773. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8774. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8775. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8776. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8777. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8778. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8779. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8780. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8781. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8782. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8783. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8784. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8785. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8786. "ref/portable-net45+win8+wp8+wpa81/_._",
  8787. "ref/win8/_._",
  8788. "ref/wp80/_._",
  8789. "ref/wpa81/_._",
  8790. "ref/xamarinios10/_._",
  8791. "ref/xamarinmac20/_._",
  8792. "ref/xamarintvos10/_._",
  8793. "ref/xamarinwatchos10/_._",
  8794. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8795. "system.text.encoding.extensions.nuspec"
  8796. ]
  8797. },
  8798. "System.Text.Encodings.Web/4.5.0": {
  8799. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  8800. "type": "package",
  8801. "path": "system.text.encodings.web/4.5.0",
  8802. "files": [
  8803. ".nupkg.metadata",
  8804. ".signature.p7s",
  8805. "LICENSE.TXT",
  8806. "THIRD-PARTY-NOTICES.TXT",
  8807. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8808. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8809. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8810. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8811. "system.text.encodings.web.4.5.0.nupkg.sha512",
  8812. "system.text.encodings.web.nuspec",
  8813. "useSharedDesignerContext.txt",
  8814. "version.txt"
  8815. ]
  8816. },
  8817. "System.Text.RegularExpressions/4.3.0": {
  8818. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  8819. "type": "package",
  8820. "path": "system.text.regularexpressions/4.3.0",
  8821. "files": [
  8822. ".nupkg.metadata",
  8823. ".signature.p7s",
  8824. "ThirdPartyNotices.txt",
  8825. "dotnet_library_license.txt",
  8826. "lib/MonoAndroid10/_._",
  8827. "lib/MonoTouch10/_._",
  8828. "lib/net45/_._",
  8829. "lib/net463/System.Text.RegularExpressions.dll",
  8830. "lib/netcore50/System.Text.RegularExpressions.dll",
  8831. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8832. "lib/portable-net45+win8+wp8+wpa81/_._",
  8833. "lib/win8/_._",
  8834. "lib/wp80/_._",
  8835. "lib/wpa81/_._",
  8836. "lib/xamarinios10/_._",
  8837. "lib/xamarinmac20/_._",
  8838. "lib/xamarintvos10/_._",
  8839. "lib/xamarinwatchos10/_._",
  8840. "ref/MonoAndroid10/_._",
  8841. "ref/MonoTouch10/_._",
  8842. "ref/net45/_._",
  8843. "ref/net463/System.Text.RegularExpressions.dll",
  8844. "ref/netcore50/System.Text.RegularExpressions.dll",
  8845. "ref/netcore50/System.Text.RegularExpressions.xml",
  8846. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8847. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8848. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8849. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8850. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8851. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8852. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8853. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8854. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8855. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8856. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8857. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8858. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8859. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8860. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8861. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8862. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8863. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8864. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8865. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8866. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8867. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8868. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8869. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8870. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8871. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8872. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8873. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8874. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8875. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8876. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8877. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8878. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8879. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8880. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8881. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8882. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8883. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8884. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8885. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8886. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8887. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8888. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8889. "ref/portable-net45+win8+wp8+wpa81/_._",
  8890. "ref/win8/_._",
  8891. "ref/wp80/_._",
  8892. "ref/wpa81/_._",
  8893. "ref/xamarinios10/_._",
  8894. "ref/xamarinmac20/_._",
  8895. "ref/xamarintvos10/_._",
  8896. "ref/xamarinwatchos10/_._",
  8897. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8898. "system.text.regularexpressions.nuspec"
  8899. ]
  8900. },
  8901. "System.Threading/4.3.0": {
  8902. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8903. "type": "package",
  8904. "path": "system.threading/4.3.0",
  8905. "files": [
  8906. ".nupkg.metadata",
  8907. ".signature.p7s",
  8908. "ThirdPartyNotices.txt",
  8909. "dotnet_library_license.txt",
  8910. "lib/MonoAndroid10/_._",
  8911. "lib/MonoTouch10/_._",
  8912. "lib/net45/_._",
  8913. "lib/netcore50/System.Threading.dll",
  8914. "lib/netstandard1.3/System.Threading.dll",
  8915. "lib/portable-net45+win8+wp8+wpa81/_._",
  8916. "lib/win8/_._",
  8917. "lib/wp80/_._",
  8918. "lib/wpa81/_._",
  8919. "lib/xamarinios10/_._",
  8920. "lib/xamarinmac20/_._",
  8921. "lib/xamarintvos10/_._",
  8922. "lib/xamarinwatchos10/_._",
  8923. "ref/MonoAndroid10/_._",
  8924. "ref/MonoTouch10/_._",
  8925. "ref/net45/_._",
  8926. "ref/netcore50/System.Threading.dll",
  8927. "ref/netcore50/System.Threading.xml",
  8928. "ref/netcore50/de/System.Threading.xml",
  8929. "ref/netcore50/es/System.Threading.xml",
  8930. "ref/netcore50/fr/System.Threading.xml",
  8931. "ref/netcore50/it/System.Threading.xml",
  8932. "ref/netcore50/ja/System.Threading.xml",
  8933. "ref/netcore50/ko/System.Threading.xml",
  8934. "ref/netcore50/ru/System.Threading.xml",
  8935. "ref/netcore50/zh-hans/System.Threading.xml",
  8936. "ref/netcore50/zh-hant/System.Threading.xml",
  8937. "ref/netstandard1.0/System.Threading.dll",
  8938. "ref/netstandard1.0/System.Threading.xml",
  8939. "ref/netstandard1.0/de/System.Threading.xml",
  8940. "ref/netstandard1.0/es/System.Threading.xml",
  8941. "ref/netstandard1.0/fr/System.Threading.xml",
  8942. "ref/netstandard1.0/it/System.Threading.xml",
  8943. "ref/netstandard1.0/ja/System.Threading.xml",
  8944. "ref/netstandard1.0/ko/System.Threading.xml",
  8945. "ref/netstandard1.0/ru/System.Threading.xml",
  8946. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8947. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8948. "ref/netstandard1.3/System.Threading.dll",
  8949. "ref/netstandard1.3/System.Threading.xml",
  8950. "ref/netstandard1.3/de/System.Threading.xml",
  8951. "ref/netstandard1.3/es/System.Threading.xml",
  8952. "ref/netstandard1.3/fr/System.Threading.xml",
  8953. "ref/netstandard1.3/it/System.Threading.xml",
  8954. "ref/netstandard1.3/ja/System.Threading.xml",
  8955. "ref/netstandard1.3/ko/System.Threading.xml",
  8956. "ref/netstandard1.3/ru/System.Threading.xml",
  8957. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8958. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8959. "ref/portable-net45+win8+wp8+wpa81/_._",
  8960. "ref/win8/_._",
  8961. "ref/wp80/_._",
  8962. "ref/wpa81/_._",
  8963. "ref/xamarinios10/_._",
  8964. "ref/xamarinmac20/_._",
  8965. "ref/xamarintvos10/_._",
  8966. "ref/xamarinwatchos10/_._",
  8967. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8968. "system.threading.4.3.0.nupkg.sha512",
  8969. "system.threading.nuspec"
  8970. ]
  8971. },
  8972. "System.Threading.Tasks/4.3.0": {
  8973. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8974. "type": "package",
  8975. "path": "system.threading.tasks/4.3.0",
  8976. "files": [
  8977. ".nupkg.metadata",
  8978. ".signature.p7s",
  8979. "ThirdPartyNotices.txt",
  8980. "dotnet_library_license.txt",
  8981. "lib/MonoAndroid10/_._",
  8982. "lib/MonoTouch10/_._",
  8983. "lib/net45/_._",
  8984. "lib/portable-net45+win8+wp8+wpa81/_._",
  8985. "lib/win8/_._",
  8986. "lib/wp80/_._",
  8987. "lib/wpa81/_._",
  8988. "lib/xamarinios10/_._",
  8989. "lib/xamarinmac20/_._",
  8990. "lib/xamarintvos10/_._",
  8991. "lib/xamarinwatchos10/_._",
  8992. "ref/MonoAndroid10/_._",
  8993. "ref/MonoTouch10/_._",
  8994. "ref/net45/_._",
  8995. "ref/netcore50/System.Threading.Tasks.dll",
  8996. "ref/netcore50/System.Threading.Tasks.xml",
  8997. "ref/netcore50/de/System.Threading.Tasks.xml",
  8998. "ref/netcore50/es/System.Threading.Tasks.xml",
  8999. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9000. "ref/netcore50/it/System.Threading.Tasks.xml",
  9001. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9002. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9003. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9004. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9005. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9006. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9007. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9008. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9009. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9010. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9011. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9012. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9013. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9014. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9015. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9016. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9017. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9018. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9019. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9020. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9021. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9022. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9023. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9024. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9025. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9026. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9027. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9028. "ref/portable-net45+win8+wp8+wpa81/_._",
  9029. "ref/win8/_._",
  9030. "ref/wp80/_._",
  9031. "ref/wpa81/_._",
  9032. "ref/xamarinios10/_._",
  9033. "ref/xamarinmac20/_._",
  9034. "ref/xamarintvos10/_._",
  9035. "ref/xamarinwatchos10/_._",
  9036. "system.threading.tasks.4.3.0.nupkg.sha512",
  9037. "system.threading.tasks.nuspec"
  9038. ]
  9039. },
  9040. "System.Threading.Tasks.Extensions/4.5.1": {
  9041. "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==",
  9042. "type": "package",
  9043. "path": "system.threading.tasks.extensions/4.5.1",
  9044. "files": [
  9045. ".nupkg.metadata",
  9046. ".signature.p7s",
  9047. "LICENSE.TXT",
  9048. "THIRD-PARTY-NOTICES.TXT",
  9049. "lib/MonoAndroid10/_._",
  9050. "lib/MonoTouch10/_._",
  9051. "lib/netcoreapp2.1/_._",
  9052. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9053. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9054. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  9055. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  9056. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9057. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9058. "lib/xamarinios10/_._",
  9059. "lib/xamarinmac20/_._",
  9060. "lib/xamarintvos10/_._",
  9061. "lib/xamarinwatchos10/_._",
  9062. "ref/MonoAndroid10/_._",
  9063. "ref/MonoTouch10/_._",
  9064. "ref/netcoreapp2.1/_._",
  9065. "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9066. "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9067. "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  9068. "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  9069. "ref/xamarinios10/_._",
  9070. "ref/xamarinmac20/_._",
  9071. "ref/xamarintvos10/_._",
  9072. "ref/xamarinwatchos10/_._",
  9073. "system.threading.tasks.extensions.4.5.1.nupkg.sha512",
  9074. "system.threading.tasks.extensions.nuspec",
  9075. "useSharedDesignerContext.txt",
  9076. "version.txt"
  9077. ]
  9078. },
  9079. "System.Threading.Tasks.Parallel/4.3.0": {
  9080. "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
  9081. "type": "package",
  9082. "path": "system.threading.tasks.parallel/4.3.0",
  9083. "files": [
  9084. ".nupkg.metadata",
  9085. ".signature.p7s",
  9086. "ThirdPartyNotices.txt",
  9087. "dotnet_library_license.txt",
  9088. "lib/MonoAndroid10/_._",
  9089. "lib/MonoTouch10/_._",
  9090. "lib/net45/_._",
  9091. "lib/netcore50/System.Threading.Tasks.Parallel.dll",
  9092. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
  9093. "lib/portable-net45+win8+wpa81/_._",
  9094. "lib/win8/_._",
  9095. "lib/wpa81/_._",
  9096. "lib/xamarinios10/_._",
  9097. "lib/xamarinmac20/_._",
  9098. "lib/xamarintvos10/_._",
  9099. "lib/xamarinwatchos10/_._",
  9100. "ref/MonoAndroid10/_._",
  9101. "ref/MonoTouch10/_._",
  9102. "ref/net45/_._",
  9103. "ref/netcore50/System.Threading.Tasks.Parallel.dll",
  9104. "ref/netcore50/System.Threading.Tasks.Parallel.xml",
  9105. "ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
  9106. "ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
  9107. "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
  9108. "ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
  9109. "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
  9110. "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
  9111. "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
  9112. "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
  9113. "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
  9114. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
  9115. "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
  9116. "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
  9117. "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
  9118. "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
  9119. "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
  9120. "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
  9121. "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
  9122. "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
  9123. "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
  9124. "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
  9125. "ref/portable-net45+win8+wpa81/_._",
  9126. "ref/win8/_._",
  9127. "ref/wpa81/_._",
  9128. "ref/xamarinios10/_._",
  9129. "ref/xamarinmac20/_._",
  9130. "ref/xamarintvos10/_._",
  9131. "ref/xamarinwatchos10/_._",
  9132. "system.threading.tasks.parallel.4.3.0.nupkg.sha512",
  9133. "system.threading.tasks.parallel.nuspec"
  9134. ]
  9135. },
  9136. "System.Threading.Thread/4.3.0": {
  9137. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  9138. "type": "package",
  9139. "path": "system.threading.thread/4.3.0",
  9140. "files": [
  9141. ".nupkg.metadata",
  9142. ".signature.p7s",
  9143. "ThirdPartyNotices.txt",
  9144. "dotnet_library_license.txt",
  9145. "lib/MonoAndroid10/_._",
  9146. "lib/MonoTouch10/_._",
  9147. "lib/net46/System.Threading.Thread.dll",
  9148. "lib/netcore50/_._",
  9149. "lib/netstandard1.3/System.Threading.Thread.dll",
  9150. "lib/xamarinios10/_._",
  9151. "lib/xamarinmac20/_._",
  9152. "lib/xamarintvos10/_._",
  9153. "lib/xamarinwatchos10/_._",
  9154. "ref/MonoAndroid10/_._",
  9155. "ref/MonoTouch10/_._",
  9156. "ref/net46/System.Threading.Thread.dll",
  9157. "ref/netstandard1.3/System.Threading.Thread.dll",
  9158. "ref/netstandard1.3/System.Threading.Thread.xml",
  9159. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9160. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9161. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9162. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9163. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9164. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9165. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9166. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9167. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9168. "ref/xamarinios10/_._",
  9169. "ref/xamarinmac20/_._",
  9170. "ref/xamarintvos10/_._",
  9171. "ref/xamarinwatchos10/_._",
  9172. "system.threading.thread.4.3.0.nupkg.sha512",
  9173. "system.threading.thread.nuspec"
  9174. ]
  9175. },
  9176. "System.Threading.Timer/4.3.0": {
  9177. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9178. "type": "package",
  9179. "path": "system.threading.timer/4.3.0",
  9180. "files": [
  9181. ".nupkg.metadata",
  9182. ".signature.p7s",
  9183. "ThirdPartyNotices.txt",
  9184. "dotnet_library_license.txt",
  9185. "lib/MonoAndroid10/_._",
  9186. "lib/MonoTouch10/_._",
  9187. "lib/net451/_._",
  9188. "lib/portable-net451+win81+wpa81/_._",
  9189. "lib/win81/_._",
  9190. "lib/wpa81/_._",
  9191. "lib/xamarinios10/_._",
  9192. "lib/xamarinmac20/_._",
  9193. "lib/xamarintvos10/_._",
  9194. "lib/xamarinwatchos10/_._",
  9195. "ref/MonoAndroid10/_._",
  9196. "ref/MonoTouch10/_._",
  9197. "ref/net451/_._",
  9198. "ref/netcore50/System.Threading.Timer.dll",
  9199. "ref/netcore50/System.Threading.Timer.xml",
  9200. "ref/netcore50/de/System.Threading.Timer.xml",
  9201. "ref/netcore50/es/System.Threading.Timer.xml",
  9202. "ref/netcore50/fr/System.Threading.Timer.xml",
  9203. "ref/netcore50/it/System.Threading.Timer.xml",
  9204. "ref/netcore50/ja/System.Threading.Timer.xml",
  9205. "ref/netcore50/ko/System.Threading.Timer.xml",
  9206. "ref/netcore50/ru/System.Threading.Timer.xml",
  9207. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9208. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9209. "ref/netstandard1.2/System.Threading.Timer.dll",
  9210. "ref/netstandard1.2/System.Threading.Timer.xml",
  9211. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9212. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9213. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9214. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9215. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9216. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9217. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9218. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9219. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9220. "ref/portable-net451+win81+wpa81/_._",
  9221. "ref/win81/_._",
  9222. "ref/wpa81/_._",
  9223. "ref/xamarinios10/_._",
  9224. "ref/xamarinmac20/_._",
  9225. "ref/xamarintvos10/_._",
  9226. "ref/xamarinwatchos10/_._",
  9227. "system.threading.timer.4.3.0.nupkg.sha512",
  9228. "system.threading.timer.nuspec"
  9229. ]
  9230. },
  9231. "System.ValueTuple/4.3.0": {
  9232. "sha512": "cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==",
  9233. "type": "package",
  9234. "path": "system.valuetuple/4.3.0",
  9235. "files": [
  9236. ".nupkg.metadata",
  9237. ".signature.p7s",
  9238. "ThirdPartyNotices.txt",
  9239. "dotnet_library_license.txt",
  9240. "lib/netstandard1.0/.xml",
  9241. "lib/netstandard1.0/System.ValueTuple.dll",
  9242. "lib/portable-net40+sl4+win8+wp8/.xml",
  9243. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  9244. "system.valuetuple.4.3.0.nupkg.sha512",
  9245. "system.valuetuple.nuspec"
  9246. ]
  9247. },
  9248. "System.Xml.ReaderWriter/4.3.0": {
  9249. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9250. "type": "package",
  9251. "path": "system.xml.readerwriter/4.3.0",
  9252. "files": [
  9253. ".nupkg.metadata",
  9254. ".signature.p7s",
  9255. "ThirdPartyNotices.txt",
  9256. "dotnet_library_license.txt",
  9257. "lib/MonoAndroid10/_._",
  9258. "lib/MonoTouch10/_._",
  9259. "lib/net45/_._",
  9260. "lib/net46/System.Xml.ReaderWriter.dll",
  9261. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9262. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9263. "lib/portable-net45+win8+wp8+wpa81/_._",
  9264. "lib/win8/_._",
  9265. "lib/wp80/_._",
  9266. "lib/wpa81/_._",
  9267. "lib/xamarinios10/_._",
  9268. "lib/xamarinmac20/_._",
  9269. "lib/xamarintvos10/_._",
  9270. "lib/xamarinwatchos10/_._",
  9271. "ref/MonoAndroid10/_._",
  9272. "ref/MonoTouch10/_._",
  9273. "ref/net45/_._",
  9274. "ref/net46/System.Xml.ReaderWriter.dll",
  9275. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9276. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9277. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9278. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9279. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9280. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9281. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9282. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9283. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9284. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9285. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9286. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9287. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9288. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9289. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9290. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9291. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9292. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9293. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9294. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9295. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9296. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9297. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9298. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9299. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9300. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9301. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9302. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9303. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9304. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9305. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9306. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9307. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9308. "ref/portable-net45+win8+wp8+wpa81/_._",
  9309. "ref/win8/_._",
  9310. "ref/wp80/_._",
  9311. "ref/wpa81/_._",
  9312. "ref/xamarinios10/_._",
  9313. "ref/xamarinmac20/_._",
  9314. "ref/xamarintvos10/_._",
  9315. "ref/xamarinwatchos10/_._",
  9316. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9317. "system.xml.readerwriter.nuspec"
  9318. ]
  9319. },
  9320. "System.Xml.XDocument/4.3.0": {
  9321. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9322. "type": "package",
  9323. "path": "system.xml.xdocument/4.3.0",
  9324. "files": [
  9325. ".nupkg.metadata",
  9326. ".signature.p7s",
  9327. "ThirdPartyNotices.txt",
  9328. "dotnet_library_license.txt",
  9329. "lib/MonoAndroid10/_._",
  9330. "lib/MonoTouch10/_._",
  9331. "lib/net45/_._",
  9332. "lib/netcore50/System.Xml.XDocument.dll",
  9333. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9334. "lib/portable-net45+win8+wp8+wpa81/_._",
  9335. "lib/win8/_._",
  9336. "lib/wp80/_._",
  9337. "lib/wpa81/_._",
  9338. "lib/xamarinios10/_._",
  9339. "lib/xamarinmac20/_._",
  9340. "lib/xamarintvos10/_._",
  9341. "lib/xamarinwatchos10/_._",
  9342. "ref/MonoAndroid10/_._",
  9343. "ref/MonoTouch10/_._",
  9344. "ref/net45/_._",
  9345. "ref/netcore50/System.Xml.XDocument.dll",
  9346. "ref/netcore50/System.Xml.XDocument.xml",
  9347. "ref/netcore50/de/System.Xml.XDocument.xml",
  9348. "ref/netcore50/es/System.Xml.XDocument.xml",
  9349. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9350. "ref/netcore50/it/System.Xml.XDocument.xml",
  9351. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9352. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9353. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9354. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9355. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9356. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9357. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9358. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9359. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9360. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9361. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9362. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9363. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9364. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9365. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9366. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9367. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9368. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9369. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9370. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9371. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9372. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9373. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9374. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9375. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9376. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9377. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9378. "ref/portable-net45+win8+wp8+wpa81/_._",
  9379. "ref/win8/_._",
  9380. "ref/wp80/_._",
  9381. "ref/wpa81/_._",
  9382. "ref/xamarinios10/_._",
  9383. "ref/xamarinmac20/_._",
  9384. "ref/xamarintvos10/_._",
  9385. "ref/xamarinwatchos10/_._",
  9386. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9387. "system.xml.xdocument.nuspec"
  9388. ]
  9389. },
  9390. "System.Xml.XmlDocument/4.3.0": {
  9391. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  9392. "type": "package",
  9393. "path": "system.xml.xmldocument/4.3.0",
  9394. "files": [
  9395. ".nupkg.metadata",
  9396. ".signature.p7s",
  9397. "ThirdPartyNotices.txt",
  9398. "dotnet_library_license.txt",
  9399. "lib/MonoAndroid10/_._",
  9400. "lib/MonoTouch10/_._",
  9401. "lib/net46/System.Xml.XmlDocument.dll",
  9402. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9403. "lib/xamarinios10/_._",
  9404. "lib/xamarinmac20/_._",
  9405. "lib/xamarintvos10/_._",
  9406. "lib/xamarinwatchos10/_._",
  9407. "ref/MonoAndroid10/_._",
  9408. "ref/MonoTouch10/_._",
  9409. "ref/net46/System.Xml.XmlDocument.dll",
  9410. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9411. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9412. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9413. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9414. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9415. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9416. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9417. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9418. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9419. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9420. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9421. "ref/xamarinios10/_._",
  9422. "ref/xamarinmac20/_._",
  9423. "ref/xamarintvos10/_._",
  9424. "ref/xamarinwatchos10/_._",
  9425. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  9426. "system.xml.xmldocument.nuspec"
  9427. ]
  9428. },
  9429. "System.Xml.XPath/4.3.0": {
  9430. "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
  9431. "type": "package",
  9432. "path": "system.xml.xpath/4.3.0",
  9433. "files": [
  9434. ".nupkg.metadata",
  9435. ".signature.p7s",
  9436. "ThirdPartyNotices.txt",
  9437. "dotnet_library_license.txt",
  9438. "lib/MonoAndroid10/_._",
  9439. "lib/MonoTouch10/_._",
  9440. "lib/net46/System.Xml.XPath.dll",
  9441. "lib/netstandard1.3/System.Xml.XPath.dll",
  9442. "lib/xamarinios10/_._",
  9443. "lib/xamarinmac20/_._",
  9444. "lib/xamarintvos10/_._",
  9445. "lib/xamarinwatchos10/_._",
  9446. "ref/MonoAndroid10/_._",
  9447. "ref/MonoTouch10/_._",
  9448. "ref/net46/System.Xml.XPath.dll",
  9449. "ref/netstandard1.3/System.Xml.XPath.dll",
  9450. "ref/netstandard1.3/System.Xml.XPath.xml",
  9451. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  9452. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  9453. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  9454. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  9455. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  9456. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  9457. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  9458. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  9459. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  9460. "ref/xamarinios10/_._",
  9461. "ref/xamarinmac20/_._",
  9462. "ref/xamarintvos10/_._",
  9463. "ref/xamarinwatchos10/_._",
  9464. "system.xml.xpath.4.3.0.nupkg.sha512",
  9465. "system.xml.xpath.nuspec"
  9466. ]
  9467. },
  9468. "System.Xml.XPath.XDocument/4.3.0": {
  9469. "sha512": "jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
  9470. "type": "package",
  9471. "path": "system.xml.xpath.xdocument/4.3.0",
  9472. "files": [
  9473. ".nupkg.metadata",
  9474. ".signature.p7s",
  9475. "ThirdPartyNotices.txt",
  9476. "dotnet_library_license.txt",
  9477. "lib/MonoAndroid10/_._",
  9478. "lib/MonoTouch10/_._",
  9479. "lib/net46/System.Xml.XPath.XDocument.dll",
  9480. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll",
  9481. "lib/xamarinios10/_._",
  9482. "lib/xamarinmac20/_._",
  9483. "lib/xamarintvos10/_._",
  9484. "lib/xamarinwatchos10/_._",
  9485. "ref/MonoAndroid10/_._",
  9486. "ref/MonoTouch10/_._",
  9487. "ref/net46/System.Xml.XPath.XDocument.dll",
  9488. "ref/netstandard1.3/System.Xml.XPath.XDocument.dll",
  9489. "ref/netstandard1.3/System.Xml.XPath.XDocument.xml",
  9490. "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml",
  9491. "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml",
  9492. "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml",
  9493. "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml",
  9494. "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml",
  9495. "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml",
  9496. "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml",
  9497. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml",
  9498. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml",
  9499. "ref/xamarinios10/_._",
  9500. "ref/xamarinmac20/_._",
  9501. "ref/xamarintvos10/_._",
  9502. "ref/xamarinwatchos10/_._",
  9503. "system.xml.xpath.xdocument.4.3.0.nupkg.sha512",
  9504. "system.xml.xpath.xdocument.nuspec"
  9505. ]
  9506. },
  9507. "Core.RabbitMQBus/1.2.0": {
  9508. "type": "project",
  9509. "path": "../Core.RabbitMQBus/Core.RabbitMQBus.csproj",
  9510. "msbuildProject": "../Core.RabbitMQBus/Core.RabbitMQBus.csproj"
  9511. },
  9512. "Core.RabbitMQBus.Common/1.0.0": {
  9513. "type": "project",
  9514. "path": "../Core.RabbitMQBus.Common/Core.RabbitMQBus.Common.csproj",
  9515. "msbuildProject": "../Core.RabbitMQBus.Common/Core.RabbitMQBus.Common.csproj"
  9516. }
  9517. },
  9518. "projectFileDependencyGroups": {
  9519. ".NETCoreApp,Version=v3.1": [
  9520. "Core.RabbitMQBus >= 1.2.0",
  9521. "Core.RabbitMQBus.Common >= 1.0.0",
  9522. "Microsoft.AspNetCore >= 2.2.0",
  9523. "QRCoder >= 1.4.3"
  9524. ]
  9525. },
  9526. "packageFolders": {
  9527. "D:\\.nuget\\packages": {},
  9528. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9529. },
  9530. "project": {
  9531. "version": "1.0.0",
  9532. "restore": {
  9533. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\WindowsFormsApp1\\WindowsFormsApp1.csproj",
  9534. "projectName": "WindowsFormsApp1",
  9535. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\WindowsFormsApp1\\WindowsFormsApp1.csproj",
  9536. "packagesPath": "D:\\.nuget\\packages",
  9537. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\WindowsFormsApp1\\obj\\",
  9538. "projectStyle": "PackageReference",
  9539. "fallbackFolders": [
  9540. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9541. ],
  9542. "configFilePaths": [
  9543. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9544. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9545. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9546. ],
  9547. "originalTargetFrameworks": [
  9548. "netcoreapp3.1"
  9549. ],
  9550. "sources": {
  9551. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9552. "C:\\Program Files\\dotnet\\library-packs": {},
  9553. "https://api.nuget.org/v3/index.json": {}
  9554. },
  9555. "frameworks": {
  9556. "netcoreapp3.1": {
  9557. "targetAlias": "netcoreapp3.1",
  9558. "projectReferences": {
  9559. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Core.RabbitMQBus.Common\\Core.RabbitMQBus.Common.csproj": {
  9560. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Core.RabbitMQBus.Common\\Core.RabbitMQBus.Common.csproj"
  9561. },
  9562. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Core.RabbitMQBus\\Core.RabbitMQBus.csproj": {
  9563. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Core.RabbitMQBus\\Core.RabbitMQBus.csproj"
  9564. }
  9565. }
  9566. }
  9567. },
  9568. "warningProperties": {
  9569. "warnAsError": [
  9570. "NU1605"
  9571. ]
  9572. }
  9573. },
  9574. "frameworks": {
  9575. "netcoreapp3.1": {
  9576. "targetAlias": "netcoreapp3.1",
  9577. "dependencies": {
  9578. "Microsoft.AspNetCore": {
  9579. "target": "Package",
  9580. "version": "[2.2.0, )"
  9581. },
  9582. "QRCoder": {
  9583. "target": "Package",
  9584. "version": "[1.4.3, )"
  9585. }
  9586. },
  9587. "imports": [
  9588. "net461",
  9589. "net462",
  9590. "net47",
  9591. "net471",
  9592. "net472",
  9593. "net48",
  9594. "net481"
  9595. ],
  9596. "assetTargetFallback": true,
  9597. "warn": true,
  9598. "frameworkReferences": {
  9599. "Microsoft.NETCore.App": {
  9600. "privateAssets": "all"
  9601. },
  9602. "Microsoft.WindowsDesktop.App.WindowsForms": {
  9603. "privateAssets": "none"
  9604. }
  9605. },
  9606. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9607. }
  9608. }
  9609. }
  9610. }