project.assets.json 422 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "coverlet.collector/1.2.0": {
  6. "type": "package",
  7. "build": {
  8. "build/netstandard1.0/coverlet.collector.targets": {}
  9. }
  10. },
  11. "Google.Protobuf/3.5.1": {
  12. "type": "package",
  13. "dependencies": {
  14. "NETStandard.Library": "1.6.1"
  15. },
  16. "compile": {
  17. "lib/netstandard1.0/Google.Protobuf.dll": {}
  18. },
  19. "runtime": {
  20. "lib/netstandard1.0/Google.Protobuf.dll": {}
  21. }
  22. },
  23. "iTextSharp.LGPLv2.Core/1.7.0": {
  24. "type": "package",
  25. "dependencies": {
  26. "Portable.BouncyCastle": "1.8.8",
  27. "System.Collections.NonGeneric": "4.3.0",
  28. "System.Drawing.Common": "4.7.0",
  29. "System.Net.Requests": "4.3.0",
  30. "System.Reflection.TypeExtensions": "4.7.0",
  31. "System.Runtime.Loader": "4.3.0",
  32. "System.Security.Cryptography.Algorithms": "4.3.1",
  33. "System.Text.Encoding.CodePages": "4.7.1",
  34. "System.Xml.ReaderWriter": "4.3.1",
  35. "System.Xml.XmlDocument": "4.3.0"
  36. },
  37. "compile": {
  38. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll": {}
  39. },
  40. "runtime": {
  41. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll": {}
  42. }
  43. },
  44. "Microsoft.AspNetCore.Cryptography.Internal/3.1.10": {
  45. "type": "package",
  46. "compile": {
  47. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  48. },
  49. "runtime": {
  50. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  51. }
  52. },
  53. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.10": {
  54. "type": "package",
  55. "dependencies": {
  56. "Microsoft.AspNetCore.Cryptography.Internal": "3.1.10"
  57. },
  58. "compile": {
  59. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  60. },
  61. "runtime": {
  62. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  63. }
  64. },
  65. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  66. "type": "package",
  67. "dependencies": {
  68. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  69. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  70. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  71. },
  72. "compile": {
  73. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  74. },
  75. "runtime": {
  76. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  77. }
  78. },
  79. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  80. "type": "package",
  81. "dependencies": {
  82. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  83. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  84. },
  85. "compile": {
  86. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  87. },
  88. "runtime": {
  89. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  90. }
  91. },
  92. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  93. "type": "package",
  94. "dependencies": {
  95. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  96. "System.Text.Encodings.Web": "4.5.0"
  97. },
  98. "compile": {
  99. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  100. },
  101. "runtime": {
  102. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  103. }
  104. },
  105. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  106. "type": "package",
  107. "dependencies": {
  108. "Microsoft.Extensions.Primitives": "2.2.0"
  109. },
  110. "compile": {
  111. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  112. },
  113. "runtime": {
  114. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  115. }
  116. },
  117. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/3.1.10": {
  118. "type": "package",
  119. "dependencies": {
  120. "Microsoft.EntityFrameworkCore.Relational": "3.1.10",
  121. "Microsoft.Extensions.Identity.Stores": "3.1.10"
  122. },
  123. "compile": {
  124. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  125. },
  126. "runtime": {
  127. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  128. }
  129. },
  130. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  131. "type": "package",
  132. "compile": {
  133. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  134. },
  135. "runtime": {
  136. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  137. }
  138. },
  139. "Microsoft.Bcl.HashCode/1.1.0": {
  140. "type": "package",
  141. "compile": {
  142. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  143. },
  144. "runtime": {
  145. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  146. }
  147. },
  148. "Microsoft.CodeCoverage/16.5.0": {
  149. "type": "package",
  150. "compile": {
  151. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  152. },
  153. "runtime": {
  154. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  155. },
  156. "build": {
  157. "build/netstandard1.0/Microsoft.CodeCoverage.props": {},
  158. "build/netstandard1.0/Microsoft.CodeCoverage.targets": {}
  159. }
  160. },
  161. "Microsoft.CSharp/4.3.0": {
  162. "type": "package",
  163. "dependencies": {
  164. "System.Collections": "4.3.0",
  165. "System.Diagnostics.Debug": "4.3.0",
  166. "System.Dynamic.Runtime": "4.3.0",
  167. "System.Globalization": "4.3.0",
  168. "System.Linq": "4.3.0",
  169. "System.Linq.Expressions": "4.3.0",
  170. "System.ObjectModel": "4.3.0",
  171. "System.Reflection": "4.3.0",
  172. "System.Reflection.Extensions": "4.3.0",
  173. "System.Reflection.Primitives": "4.3.0",
  174. "System.Reflection.TypeExtensions": "4.3.0",
  175. "System.Resources.ResourceManager": "4.3.0",
  176. "System.Runtime": "4.3.0",
  177. "System.Runtime.Extensions": "4.3.0",
  178. "System.Runtime.InteropServices": "4.3.0",
  179. "System.Threading": "4.3.0"
  180. },
  181. "compile": {
  182. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  183. },
  184. "runtime": {
  185. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  186. }
  187. },
  188. "Microsoft.Data.Sqlite/2.2.4": {
  189. "type": "package",
  190. "dependencies": {
  191. "Microsoft.Data.Sqlite.Core": "2.2.4",
  192. "SQLitePCLRaw.bundle_green": "1.1.12"
  193. },
  194. "compile": {
  195. "lib/netstandard2.0/_._": {}
  196. },
  197. "runtime": {
  198. "lib/netstandard2.0/_._": {}
  199. }
  200. },
  201. "Microsoft.Data.Sqlite.Core/2.2.4": {
  202. "type": "package",
  203. "dependencies": {
  204. "SQLitePCLRaw.core": "1.1.12"
  205. },
  206. "compile": {
  207. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  208. },
  209. "runtime": {
  210. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  211. }
  212. },
  213. "Microsoft.EntityFrameworkCore/3.1.10": {
  214. "type": "package",
  215. "dependencies": {
  216. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  217. "Microsoft.Bcl.HashCode": "1.1.0",
  218. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.10",
  219. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.10",
  220. "Microsoft.Extensions.Caching.Memory": "3.1.10",
  221. "Microsoft.Extensions.DependencyInjection": "3.1.10",
  222. "Microsoft.Extensions.Logging": "3.1.10",
  223. "System.Collections.Immutable": "1.7.1",
  224. "System.ComponentModel.Annotations": "4.7.0",
  225. "System.Diagnostics.DiagnosticSource": "4.7.1"
  226. },
  227. "compile": {
  228. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  229. },
  230. "runtime": {
  231. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  232. }
  233. },
  234. "Microsoft.EntityFrameworkCore.Abstractions/3.1.10": {
  235. "type": "package",
  236. "compile": {
  237. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  238. },
  239. "runtime": {
  240. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  241. }
  242. },
  243. "Microsoft.EntityFrameworkCore.Analyzers/3.1.10": {
  244. "type": "package",
  245. "compile": {
  246. "lib/netstandard2.0/_._": {}
  247. },
  248. "runtime": {
  249. "lib/netstandard2.0/_._": {}
  250. }
  251. },
  252. "Microsoft.EntityFrameworkCore.Relational/3.1.10": {
  253. "type": "package",
  254. "dependencies": {
  255. "Microsoft.EntityFrameworkCore": "3.1.10"
  256. },
  257. "compile": {
  258. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  259. },
  260. "runtime": {
  261. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  262. }
  263. },
  264. "Microsoft.Extensions.Caching.Abstractions/3.1.10": {
  265. "type": "package",
  266. "dependencies": {
  267. "Microsoft.Extensions.Primitives": "3.1.10"
  268. },
  269. "compile": {
  270. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  271. },
  272. "runtime": {
  273. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  274. }
  275. },
  276. "Microsoft.Extensions.Caching.Memory/3.1.10": {
  277. "type": "package",
  278. "dependencies": {
  279. "Microsoft.Extensions.Caching.Abstractions": "3.1.10",
  280. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10",
  281. "Microsoft.Extensions.Logging.Abstractions": "3.1.10",
  282. "Microsoft.Extensions.Options": "3.1.10"
  283. },
  284. "compile": {
  285. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  286. },
  287. "runtime": {
  288. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  289. }
  290. },
  291. "Microsoft.Extensions.Configuration/3.1.10": {
  292. "type": "package",
  293. "dependencies": {
  294. "Microsoft.Extensions.Configuration.Abstractions": "3.1.10"
  295. },
  296. "compile": {
  297. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  298. },
  299. "runtime": {
  300. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  301. }
  302. },
  303. "Microsoft.Extensions.Configuration.Abstractions/3.1.10": {
  304. "type": "package",
  305. "dependencies": {
  306. "Microsoft.Extensions.Primitives": "3.1.10"
  307. },
  308. "compile": {
  309. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  310. },
  311. "runtime": {
  312. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  313. }
  314. },
  315. "Microsoft.Extensions.Configuration.Binder/3.1.10": {
  316. "type": "package",
  317. "dependencies": {
  318. "Microsoft.Extensions.Configuration": "3.1.10"
  319. },
  320. "compile": {
  321. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  322. },
  323. "runtime": {
  324. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  325. }
  326. },
  327. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  328. "type": "package",
  329. "dependencies": {
  330. "Microsoft.Extensions.Configuration": "3.1.2",
  331. "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
  332. },
  333. "compile": {
  334. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  335. },
  336. "runtime": {
  337. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  338. }
  339. },
  340. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  341. "type": "package",
  342. "dependencies": {
  343. "Microsoft.Extensions.Configuration": "3.1.2",
  344. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2"
  345. },
  346. "compile": {
  347. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {}
  348. },
  349. "runtime": {
  350. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {}
  351. }
  352. },
  353. "Microsoft.Extensions.DependencyInjection/3.1.10": {
  354. "type": "package",
  355. "dependencies": {
  356. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10"
  357. },
  358. "compile": {
  359. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  360. },
  361. "runtime": {
  362. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  363. }
  364. },
  365. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.10": {
  366. "type": "package",
  367. "compile": {
  368. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  369. },
  370. "runtime": {
  371. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  372. }
  373. },
  374. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  375. "type": "package",
  376. "dependencies": {
  377. "Microsoft.Extensions.Primitives": "3.1.2"
  378. },
  379. "compile": {
  380. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  381. },
  382. "runtime": {
  383. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  384. }
  385. },
  386. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  387. "type": "package",
  388. "dependencies": {
  389. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
  390. "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
  391. },
  392. "compile": {
  393. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {}
  394. },
  395. "runtime": {
  396. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {}
  397. }
  398. },
  399. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  400. "type": "package",
  401. "compile": {
  402. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  403. },
  404. "runtime": {
  405. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  406. }
  407. },
  408. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  409. "type": "package",
  410. "dependencies": {
  411. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  412. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  413. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  414. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  415. },
  416. "compile": {
  417. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  418. },
  419. "runtime": {
  420. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  421. }
  422. },
  423. "Microsoft.Extensions.Identity.Core/3.1.10": {
  424. "type": "package",
  425. "dependencies": {
  426. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.10",
  427. "Microsoft.Extensions.Logging": "3.1.10",
  428. "Microsoft.Extensions.Options": "3.1.10"
  429. },
  430. "compile": {
  431. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll": {}
  432. },
  433. "runtime": {
  434. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll": {}
  435. }
  436. },
  437. "Microsoft.Extensions.Identity.Stores/3.1.10": {
  438. "type": "package",
  439. "dependencies": {
  440. "Microsoft.Extensions.Caching.Abstractions": "3.1.10",
  441. "Microsoft.Extensions.Identity.Core": "3.1.10",
  442. "Microsoft.Extensions.Logging": "3.1.10"
  443. },
  444. "compile": {
  445. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll": {}
  446. },
  447. "runtime": {
  448. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll": {}
  449. }
  450. },
  451. "Microsoft.Extensions.Logging/3.1.10": {
  452. "type": "package",
  453. "dependencies": {
  454. "Microsoft.Extensions.Configuration.Binder": "3.1.10",
  455. "Microsoft.Extensions.DependencyInjection": "3.1.10",
  456. "Microsoft.Extensions.Logging.Abstractions": "3.1.10",
  457. "Microsoft.Extensions.Options": "3.1.10"
  458. },
  459. "compile": {
  460. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  461. },
  462. "runtime": {
  463. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  464. }
  465. },
  466. "Microsoft.Extensions.Logging.Abstractions/3.1.10": {
  467. "type": "package",
  468. "compile": {
  469. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  473. }
  474. },
  475. "Microsoft.Extensions.Options/3.1.10": {
  476. "type": "package",
  477. "dependencies": {
  478. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10",
  479. "Microsoft.Extensions.Primitives": "3.1.10"
  480. },
  481. "compile": {
  482. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  483. },
  484. "runtime": {
  485. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  486. }
  487. },
  488. "Microsoft.Extensions.Primitives/3.1.10": {
  489. "type": "package",
  490. "compile": {
  491. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  492. },
  493. "runtime": {
  494. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  495. }
  496. },
  497. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  498. "type": "package",
  499. "dependencies": {
  500. "Microsoft.IdentityModel.Tokens": "5.6.0",
  501. "Newtonsoft.Json": "10.0.1"
  502. },
  503. "compile": {
  504. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  505. },
  506. "runtime": {
  507. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  508. }
  509. },
  510. "Microsoft.IdentityModel.Logging/5.6.0": {
  511. "type": "package",
  512. "compile": {
  513. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  514. },
  515. "runtime": {
  516. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  517. }
  518. },
  519. "Microsoft.IdentityModel.Tokens/5.6.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.IdentityModel.Logging": "5.6.0",
  523. "Newtonsoft.Json": "10.0.1",
  524. "System.Security.Cryptography.Cng": "4.5.0"
  525. },
  526. "compile": {
  527. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  528. },
  529. "runtime": {
  530. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  531. }
  532. },
  533. "Microsoft.NET.Test.Sdk/16.5.0": {
  534. "type": "package",
  535. "dependencies": {
  536. "Microsoft.CodeCoverage": "16.5.0",
  537. "Microsoft.TestPlatform.TestHost": "16.5.0"
  538. },
  539. "build": {
  540. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {},
  541. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {}
  542. },
  543. "buildMultiTargeting": {
  544. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
  545. }
  546. },
  547. "Microsoft.NETCore.Jit/2.0.8": {
  548. "type": "package"
  549. },
  550. "Microsoft.NETCore.Platforms/5.0.0": {
  551. "type": "package",
  552. "compile": {
  553. "lib/netstandard1.0/_._": {}
  554. },
  555. "runtime": {
  556. "lib/netstandard1.0/_._": {}
  557. }
  558. },
  559. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  560. "type": "package",
  561. "dependencies": {
  562. "Microsoft.NETCore.Jit": "2.0.8"
  563. },
  564. "compile": {
  565. "ref/netstandard1.0/_._": {}
  566. }
  567. },
  568. "Microsoft.NETCore.Targets/1.1.0": {
  569. "type": "package",
  570. "compile": {
  571. "lib/netstandard1.0/_._": {}
  572. },
  573. "runtime": {
  574. "lib/netstandard1.0/_._": {}
  575. }
  576. },
  577. "Microsoft.TestPlatform.ObjectModel/16.5.0": {
  578. "type": "package",
  579. "dependencies": {
  580. "NuGet.Frameworks": "5.0.0"
  581. },
  582. "compile": {
  583. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
  584. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  585. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  586. },
  587. "runtime": {
  588. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
  589. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  590. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  591. },
  592. "resource": {
  593. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  594. "locale": "cs"
  595. },
  596. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  597. "locale": "cs"
  598. },
  599. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  600. "locale": "de"
  601. },
  602. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  603. "locale": "de"
  604. },
  605. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  606. "locale": "es"
  607. },
  608. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  609. "locale": "es"
  610. },
  611. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  612. "locale": "fr"
  613. },
  614. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  615. "locale": "fr"
  616. },
  617. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  618. "locale": "it"
  619. },
  620. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  621. "locale": "it"
  622. },
  623. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  624. "locale": "ja"
  625. },
  626. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  627. "locale": "ja"
  628. },
  629. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  630. "locale": "ko"
  631. },
  632. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  633. "locale": "ko"
  634. },
  635. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  636. "locale": "pl"
  637. },
  638. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  639. "locale": "pl"
  640. },
  641. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  642. "locale": "pt-BR"
  643. },
  644. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  645. "locale": "pt-BR"
  646. },
  647. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  648. "locale": "ru"
  649. },
  650. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  651. "locale": "ru"
  652. },
  653. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  654. "locale": "tr"
  655. },
  656. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  657. "locale": "tr"
  658. },
  659. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  660. "locale": "zh-Hans"
  661. },
  662. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  663. "locale": "zh-Hans"
  664. },
  665. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  666. "locale": "zh-Hant"
  667. },
  668. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  669. "locale": "zh-Hant"
  670. }
  671. }
  672. },
  673. "Microsoft.TestPlatform.TestHost/16.5.0": {
  674. "type": "package",
  675. "dependencies": {
  676. "Microsoft.TestPlatform.ObjectModel": "16.5.0",
  677. "Newtonsoft.Json": "9.0.1"
  678. },
  679. "compile": {
  680. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  681. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  682. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  683. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  684. "lib/netcoreapp2.1/testhost.dll": {}
  685. },
  686. "runtime": {
  687. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  688. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  689. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  690. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  691. "lib/netcoreapp2.1/testhost.dll": {}
  692. },
  693. "resource": {
  694. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  695. "locale": "cs"
  696. },
  697. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  698. "locale": "cs"
  699. },
  700. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  701. "locale": "cs"
  702. },
  703. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  704. "locale": "de"
  705. },
  706. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  707. "locale": "de"
  708. },
  709. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  710. "locale": "de"
  711. },
  712. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  713. "locale": "es"
  714. },
  715. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  716. "locale": "es"
  717. },
  718. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  719. "locale": "es"
  720. },
  721. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  722. "locale": "fr"
  723. },
  724. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  725. "locale": "fr"
  726. },
  727. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  728. "locale": "fr"
  729. },
  730. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  731. "locale": "it"
  732. },
  733. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  734. "locale": "it"
  735. },
  736. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  737. "locale": "it"
  738. },
  739. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  740. "locale": "ja"
  741. },
  742. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  743. "locale": "ja"
  744. },
  745. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  746. "locale": "ja"
  747. },
  748. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  749. "locale": "ko"
  750. },
  751. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  752. "locale": "ko"
  753. },
  754. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  755. "locale": "ko"
  756. },
  757. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  758. "locale": "pl"
  759. },
  760. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  761. "locale": "pl"
  762. },
  763. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  764. "locale": "pl"
  765. },
  766. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  767. "locale": "pt-BR"
  768. },
  769. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  770. "locale": "pt-BR"
  771. },
  772. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  773. "locale": "pt-BR"
  774. },
  775. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  776. "locale": "ru"
  777. },
  778. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  779. "locale": "ru"
  780. },
  781. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  782. "locale": "ru"
  783. },
  784. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  785. "locale": "tr"
  786. },
  787. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  788. "locale": "tr"
  789. },
  790. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  791. "locale": "tr"
  792. },
  793. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  794. "locale": "zh-Hans"
  795. },
  796. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  797. "locale": "zh-Hans"
  798. },
  799. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  800. "locale": "zh-Hans"
  801. },
  802. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  803. "locale": "zh-Hant"
  804. },
  805. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  806. "locale": "zh-Hant"
  807. },
  808. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  809. "locale": "zh-Hant"
  810. }
  811. },
  812. "build": {
  813. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {}
  814. }
  815. },
  816. "Microsoft.Win32.Primitives/4.3.0": {
  817. "type": "package",
  818. "dependencies": {
  819. "Microsoft.NETCore.Platforms": "1.1.0",
  820. "Microsoft.NETCore.Targets": "1.1.0",
  821. "System.Runtime": "4.3.0"
  822. },
  823. "compile": {
  824. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  825. }
  826. },
  827. "Microsoft.Win32.Registry/5.0.0": {
  828. "type": "package",
  829. "dependencies": {
  830. "System.Security.AccessControl": "5.0.0",
  831. "System.Security.Principal.Windows": "5.0.0"
  832. },
  833. "compile": {
  834. "ref/netstandard2.0/_._": {}
  835. },
  836. "runtime": {
  837. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  838. },
  839. "runtimeTargets": {
  840. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  841. "assetType": "runtime",
  842. "rid": "win"
  843. }
  844. }
  845. },
  846. "Microsoft.Win32.SystemEvents/4.7.0": {
  847. "type": "package",
  848. "dependencies": {
  849. "Microsoft.NETCore.Platforms": "3.1.0"
  850. },
  851. "compile": {
  852. "ref/netstandard2.0/_._": {}
  853. },
  854. "runtime": {
  855. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  856. },
  857. "runtimeTargets": {
  858. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  859. "assetType": "runtime",
  860. "rid": "win"
  861. }
  862. }
  863. },
  864. "MSTest.TestAdapter/2.1.0": {
  865. "type": "package",
  866. "dependencies": {
  867. "NETStandard.Library": "1.6.1",
  868. "System.Diagnostics.TextWriterTraceListener": "4.3.0"
  869. },
  870. "build": {
  871. "build/netcoreapp1.0/MSTest.TestAdapter.props": {}
  872. }
  873. },
  874. "MSTest.TestFramework/2.1.0": {
  875. "type": "package",
  876. "compile": {
  877. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
  878. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
  879. },
  880. "runtime": {
  881. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
  882. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
  883. }
  884. },
  885. "MySql.Data/8.0.15": {
  886. "type": "package",
  887. "dependencies": {
  888. "Google.Protobuf": "3.5.1",
  889. "System.Configuration.ConfigurationManager": "4.4.1",
  890. "System.Security.Permissions": "4.4.1",
  891. "System.Text.Encoding.CodePages": "4.4.0"
  892. },
  893. "compile": {
  894. "lib/netcoreapp2.0/MySql.Data.dll": {}
  895. },
  896. "runtime": {
  897. "lib/netcoreapp2.0/MySql.Data.dll": {}
  898. }
  899. },
  900. "NETStandard.Library/1.6.1": {
  901. "type": "package",
  902. "dependencies": {
  903. "Microsoft.NETCore.Platforms": "1.1.0",
  904. "Microsoft.Win32.Primitives": "4.3.0",
  905. "System.AppContext": "4.3.0",
  906. "System.Collections": "4.3.0",
  907. "System.Collections.Concurrent": "4.3.0",
  908. "System.Console": "4.3.0",
  909. "System.Diagnostics.Debug": "4.3.0",
  910. "System.Diagnostics.Tools": "4.3.0",
  911. "System.Diagnostics.Tracing": "4.3.0",
  912. "System.Globalization": "4.3.0",
  913. "System.Globalization.Calendars": "4.3.0",
  914. "System.IO": "4.3.0",
  915. "System.IO.Compression": "4.3.0",
  916. "System.IO.Compression.ZipFile": "4.3.0",
  917. "System.IO.FileSystem": "4.3.0",
  918. "System.IO.FileSystem.Primitives": "4.3.0",
  919. "System.Linq": "4.3.0",
  920. "System.Linq.Expressions": "4.3.0",
  921. "System.Net.Http": "4.3.0",
  922. "System.Net.Primitives": "4.3.0",
  923. "System.Net.Sockets": "4.3.0",
  924. "System.ObjectModel": "4.3.0",
  925. "System.Reflection": "4.3.0",
  926. "System.Reflection.Extensions": "4.3.0",
  927. "System.Reflection.Primitives": "4.3.0",
  928. "System.Resources.ResourceManager": "4.3.0",
  929. "System.Runtime": "4.3.0",
  930. "System.Runtime.Extensions": "4.3.0",
  931. "System.Runtime.Handles": "4.3.0",
  932. "System.Runtime.InteropServices": "4.3.0",
  933. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  934. "System.Runtime.Numerics": "4.3.0",
  935. "System.Security.Cryptography.Algorithms": "4.3.0",
  936. "System.Security.Cryptography.Encoding": "4.3.0",
  937. "System.Security.Cryptography.Primitives": "4.3.0",
  938. "System.Security.Cryptography.X509Certificates": "4.3.0",
  939. "System.Text.Encoding": "4.3.0",
  940. "System.Text.Encoding.Extensions": "4.3.0",
  941. "System.Text.RegularExpressions": "4.3.0",
  942. "System.Threading": "4.3.0",
  943. "System.Threading.Tasks": "4.3.0",
  944. "System.Threading.Timer": "4.3.0",
  945. "System.Xml.ReaderWriter": "4.3.0",
  946. "System.Xml.XDocument": "4.3.0"
  947. }
  948. },
  949. "Newtonsoft.Json/10.0.3": {
  950. "type": "package",
  951. "dependencies": {
  952. "Microsoft.CSharp": "4.3.0",
  953. "NETStandard.Library": "1.6.1",
  954. "System.ComponentModel.TypeConverter": "4.3.0",
  955. "System.Runtime.Serialization.Formatters": "4.3.0",
  956. "System.Runtime.Serialization.Primitives": "4.3.0",
  957. "System.Xml.XmlDocument": "4.3.0"
  958. },
  959. "compile": {
  960. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  961. },
  962. "runtime": {
  963. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  964. }
  965. },
  966. "NLog/4.7.5": {
  967. "type": "package",
  968. "compile": {
  969. "lib/netstandard2.0/NLog.dll": {}
  970. },
  971. "runtime": {
  972. "lib/netstandard2.0/NLog.dll": {}
  973. }
  974. },
  975. "NLog.Extensions.Logging/1.6.4": {
  976. "type": "package",
  977. "dependencies": {
  978. "Microsoft.Extensions.Logging": "3.0.0",
  979. "NLog": "4.7.2"
  980. },
  981. "compile": {
  982. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  983. },
  984. "runtime": {
  985. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  986. }
  987. },
  988. "NLog.Web.AspNetCore/4.9.3": {
  989. "type": "package",
  990. "dependencies": {
  991. "NLog.Extensions.Logging": "1.6.4"
  992. },
  993. "compile": {
  994. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  995. },
  996. "runtime": {
  997. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  998. },
  999. "frameworkReferences": [
  1000. "Microsoft.AspNetCore.App"
  1001. ]
  1002. },
  1003. "Npgsql/3.2.7": {
  1004. "type": "package",
  1005. "dependencies": {
  1006. "System.Threading.Tasks.Extensions": "4.3.0"
  1007. },
  1008. "compile": {
  1009. "lib/netstandard2.0/Npgsql.dll": {}
  1010. },
  1011. "runtime": {
  1012. "lib/netstandard2.0/Npgsql.dll": {}
  1013. }
  1014. },
  1015. "NuGet.Frameworks/5.0.0": {
  1016. "type": "package",
  1017. "compile": {
  1018. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  1019. },
  1020. "runtime": {
  1021. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  1022. }
  1023. },
  1024. "Oracle.ManagedDataAccess.Core/2.18.3": {
  1025. "type": "package",
  1026. "compile": {
  1027. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  1028. },
  1029. "runtime": {
  1030. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  1031. }
  1032. },
  1033. "Portable.BouncyCastle/1.8.8": {
  1034. "type": "package",
  1035. "compile": {
  1036. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  1037. },
  1038. "runtime": {
  1039. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  1040. }
  1041. },
  1042. "Quartz/3.2.3": {
  1043. "type": "package",
  1044. "dependencies": {
  1045. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1046. "System.Configuration.ConfigurationManager": "4.7.0",
  1047. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1048. },
  1049. "compile": {
  1050. "lib/netstandard2.0/Quartz.dll": {}
  1051. },
  1052. "runtime": {
  1053. "lib/netstandard2.0/Quartz.dll": {}
  1054. }
  1055. },
  1056. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1057. "type": "package",
  1058. "runtimeTargets": {
  1059. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1060. "assetType": "native",
  1061. "rid": "debian.8-x64"
  1062. }
  1063. }
  1064. },
  1065. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1066. "type": "package",
  1067. "runtimeTargets": {
  1068. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1069. "assetType": "native",
  1070. "rid": "fedora.23-x64"
  1071. }
  1072. }
  1073. },
  1074. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1075. "type": "package",
  1076. "runtimeTargets": {
  1077. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1078. "assetType": "native",
  1079. "rid": "fedora.24-x64"
  1080. }
  1081. }
  1082. },
  1083. "runtime.native.System/4.3.0": {
  1084. "type": "package",
  1085. "dependencies": {
  1086. "Microsoft.NETCore.Platforms": "1.1.0",
  1087. "Microsoft.NETCore.Targets": "1.1.0"
  1088. },
  1089. "compile": {
  1090. "lib/netstandard1.0/_._": {}
  1091. },
  1092. "runtime": {
  1093. "lib/netstandard1.0/_._": {}
  1094. }
  1095. },
  1096. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1097. "type": "package",
  1098. "dependencies": {
  1099. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1100. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1101. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1102. }
  1103. },
  1104. "runtime.native.System.IO.Compression/4.3.0": {
  1105. "type": "package",
  1106. "dependencies": {
  1107. "Microsoft.NETCore.Platforms": "1.1.0",
  1108. "Microsoft.NETCore.Targets": "1.1.0"
  1109. },
  1110. "compile": {
  1111. "lib/netstandard1.0/_._": {}
  1112. },
  1113. "runtime": {
  1114. "lib/netstandard1.0/_._": {}
  1115. }
  1116. },
  1117. "runtime.native.System.Net.Http/4.3.0": {
  1118. "type": "package",
  1119. "dependencies": {
  1120. "Microsoft.NETCore.Platforms": "1.1.0",
  1121. "Microsoft.NETCore.Targets": "1.1.0"
  1122. },
  1123. "compile": {
  1124. "lib/netstandard1.0/_._": {}
  1125. },
  1126. "runtime": {
  1127. "lib/netstandard1.0/_._": {}
  1128. }
  1129. },
  1130. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1131. "type": "package",
  1132. "dependencies": {
  1133. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
  1134. },
  1135. "compile": {
  1136. "lib/netstandard1.0/_._": {}
  1137. },
  1138. "runtime": {
  1139. "lib/netstandard1.0/_._": {}
  1140. }
  1141. },
  1142. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1143. "type": "package",
  1144. "dependencies": {
  1145. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1146. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1147. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1148. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1149. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1150. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1151. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1152. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1153. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1154. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1155. },
  1156. "compile": {
  1157. "lib/netstandard1.0/_._": {}
  1158. },
  1159. "runtime": {
  1160. "lib/netstandard1.0/_._": {}
  1161. }
  1162. },
  1163. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1164. "type": "package",
  1165. "runtimeTargets": {
  1166. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1167. "assetType": "native",
  1168. "rid": "opensuse.13.2-x64"
  1169. }
  1170. }
  1171. },
  1172. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1173. "type": "package",
  1174. "runtimeTargets": {
  1175. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1176. "assetType": "native",
  1177. "rid": "opensuse.42.1-x64"
  1178. }
  1179. }
  1180. },
  1181. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1182. "type": "package",
  1183. "runtimeTargets": {
  1184. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1185. "assetType": "native",
  1186. "rid": "osx.10.10-x64"
  1187. }
  1188. }
  1189. },
  1190. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1191. "type": "package",
  1192. "runtimeTargets": {
  1193. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1194. "assetType": "native",
  1195. "rid": "osx.10.10-x64"
  1196. }
  1197. }
  1198. },
  1199. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1200. "type": "package",
  1201. "runtimeTargets": {
  1202. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1203. "assetType": "native",
  1204. "rid": "rhel.7-x64"
  1205. }
  1206. }
  1207. },
  1208. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1209. "type": "package",
  1210. "runtimeTargets": {
  1211. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1212. "assetType": "native",
  1213. "rid": "ubuntu.14.04-x64"
  1214. }
  1215. }
  1216. },
  1217. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1218. "type": "package",
  1219. "runtimeTargets": {
  1220. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1221. "assetType": "native",
  1222. "rid": "ubuntu.16.04-x64"
  1223. }
  1224. }
  1225. },
  1226. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1227. "type": "package",
  1228. "runtimeTargets": {
  1229. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1230. "assetType": "native",
  1231. "rid": "ubuntu.16.10-x64"
  1232. }
  1233. }
  1234. },
  1235. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1236. "type": "package",
  1237. "runtimeTargets": {
  1238. "runtimes/win-arm64/native/sni.dll": {
  1239. "assetType": "native",
  1240. "rid": "win-arm64"
  1241. }
  1242. }
  1243. },
  1244. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1245. "type": "package",
  1246. "runtimeTargets": {
  1247. "runtimes/win-x64/native/sni.dll": {
  1248. "assetType": "native",
  1249. "rid": "win-x64"
  1250. }
  1251. }
  1252. },
  1253. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1254. "type": "package",
  1255. "runtimeTargets": {
  1256. "runtimes/win-x86/native/sni.dll": {
  1257. "assetType": "native",
  1258. "rid": "win-x86"
  1259. }
  1260. }
  1261. },
  1262. "SQLitePCLRaw.bundle_green/1.1.12": {
  1263. "type": "package",
  1264. "dependencies": {
  1265. "SQLitePCLRaw.core": "1.1.12",
  1266. "SQLitePCLRaw.lib.e_sqlite3.linux": "1.1.12",
  1267. "SQLitePCLRaw.lib.e_sqlite3.osx": "1.1.12",
  1268. "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.12",
  1269. "SQLitePCLRaw.provider.e_sqlite3.netstandard11": "1.1.12"
  1270. },
  1271. "compile": {
  1272. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
  1273. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
  1274. },
  1275. "runtime": {
  1276. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
  1277. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
  1278. }
  1279. },
  1280. "SQLitePCLRaw.core/1.1.12": {
  1281. "type": "package",
  1282. "dependencies": {
  1283. "NETStandard.Library": "1.6.0"
  1284. },
  1285. "compile": {
  1286. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  1287. },
  1288. "runtime": {
  1289. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  1290. }
  1291. },
  1292. "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": {
  1293. "type": "package",
  1294. "compile": {
  1295. "lib/netstandard2.0/_._": {}
  1296. },
  1297. "runtime": {
  1298. "lib/netstandard2.0/_._": {}
  1299. },
  1300. "runtimeTargets": {
  1301. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  1302. "assetType": "native",
  1303. "rid": "alpine-x64"
  1304. },
  1305. "runtimes/linux-arm/native/libe_sqlite3.so": {
  1306. "assetType": "native",
  1307. "rid": "linux-arm"
  1308. },
  1309. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  1310. "assetType": "native",
  1311. "rid": "linux-arm64"
  1312. },
  1313. "runtimes/linux-armel/native/libe_sqlite3.so": {
  1314. "assetType": "native",
  1315. "rid": "linux-armel"
  1316. },
  1317. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  1318. "assetType": "native",
  1319. "rid": "linux-musl-x64"
  1320. },
  1321. "runtimes/linux-x64/native/libe_sqlite3.so": {
  1322. "assetType": "native",
  1323. "rid": "linux-x64"
  1324. },
  1325. "runtimes/linux-x86/native/libe_sqlite3.so": {
  1326. "assetType": "native",
  1327. "rid": "linux-x86"
  1328. }
  1329. }
  1330. },
  1331. "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": {
  1332. "type": "package",
  1333. "compile": {
  1334. "lib/netstandard2.0/_._": {}
  1335. },
  1336. "runtime": {
  1337. "lib/netstandard2.0/_._": {}
  1338. },
  1339. "runtimeTargets": {
  1340. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  1341. "assetType": "native",
  1342. "rid": "osx-x64"
  1343. }
  1344. }
  1345. },
  1346. "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": {
  1347. "type": "package",
  1348. "compile": {
  1349. "lib/netstandard2.0/_._": {}
  1350. },
  1351. "runtime": {
  1352. "lib/netstandard2.0/_._": {}
  1353. },
  1354. "runtimeTargets": {
  1355. "runtimes/win-x64/native/e_sqlite3.dll": {
  1356. "assetType": "native",
  1357. "rid": "win-x64"
  1358. },
  1359. "runtimes/win-x86/native/e_sqlite3.dll": {
  1360. "assetType": "native",
  1361. "rid": "win-x86"
  1362. },
  1363. "runtimes/win8-arm/native/e_sqlite3.dll": {
  1364. "assetType": "native",
  1365. "rid": "win8-arm"
  1366. }
  1367. }
  1368. },
  1369. "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": {
  1370. "type": "package",
  1371. "dependencies": {
  1372. "NETStandard.Library": "1.6.0",
  1373. "SQLitePCLRaw.core": "1.1.12"
  1374. },
  1375. "compile": {
  1376. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1377. },
  1378. "runtime": {
  1379. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1380. }
  1381. },
  1382. "sqlSugarCore/5.0.0.18": {
  1383. "type": "package",
  1384. "dependencies": {
  1385. "Microsoft.Data.Sqlite": "2.2.4",
  1386. "MySql.Data": "8.0.15",
  1387. "Newtonsoft.Json": "10.0.3",
  1388. "Npgsql": "3.2.7",
  1389. "Oracle.ManagedDataAccess.Core": "2.18.3",
  1390. "System.Data.Common": "4.3.0",
  1391. "System.Data.SqlClient": "4.4.0",
  1392. "System.Reflection.Emit.Lightweight": "4.3.0"
  1393. },
  1394. "compile": {
  1395. "lib/netstandard2.0/SqlSugar.dll": {}
  1396. },
  1397. "runtime": {
  1398. "lib/netstandard2.0/SqlSugar.dll": {}
  1399. }
  1400. },
  1401. "System.AppContext/4.3.0": {
  1402. "type": "package",
  1403. "dependencies": {
  1404. "System.Runtime": "4.3.0"
  1405. },
  1406. "compile": {
  1407. "ref/netstandard1.6/System.AppContext.dll": {}
  1408. },
  1409. "runtime": {
  1410. "lib/netstandard1.6/System.AppContext.dll": {}
  1411. }
  1412. },
  1413. "System.Buffers/4.3.0": {
  1414. "type": "package",
  1415. "dependencies": {
  1416. "System.Diagnostics.Debug": "4.3.0",
  1417. "System.Diagnostics.Tracing": "4.3.0",
  1418. "System.Resources.ResourceManager": "4.3.0",
  1419. "System.Runtime": "4.3.0",
  1420. "System.Threading": "4.3.0"
  1421. },
  1422. "compile": {
  1423. "lib/netstandard1.1/_._": {}
  1424. },
  1425. "runtime": {
  1426. "lib/netstandard1.1/System.Buffers.dll": {}
  1427. }
  1428. },
  1429. "System.CodeDom/5.0.0": {
  1430. "type": "package",
  1431. "compile": {
  1432. "ref/netstandard2.0/System.CodeDom.dll": {}
  1433. },
  1434. "runtime": {
  1435. "lib/netstandard2.0/System.CodeDom.dll": {}
  1436. }
  1437. },
  1438. "System.Collections/4.3.0": {
  1439. "type": "package",
  1440. "dependencies": {
  1441. "Microsoft.NETCore.Platforms": "1.1.0",
  1442. "Microsoft.NETCore.Targets": "1.1.0",
  1443. "System.Runtime": "4.3.0"
  1444. },
  1445. "compile": {
  1446. "ref/netstandard1.3/System.Collections.dll": {}
  1447. }
  1448. },
  1449. "System.Collections.Concurrent/4.3.0": {
  1450. "type": "package",
  1451. "dependencies": {
  1452. "System.Collections": "4.3.0",
  1453. "System.Diagnostics.Debug": "4.3.0",
  1454. "System.Diagnostics.Tracing": "4.3.0",
  1455. "System.Globalization": "4.3.0",
  1456. "System.Reflection": "4.3.0",
  1457. "System.Resources.ResourceManager": "4.3.0",
  1458. "System.Runtime": "4.3.0",
  1459. "System.Runtime.Extensions": "4.3.0",
  1460. "System.Threading": "4.3.0",
  1461. "System.Threading.Tasks": "4.3.0"
  1462. },
  1463. "compile": {
  1464. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1465. },
  1466. "runtime": {
  1467. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1468. }
  1469. },
  1470. "System.Collections.Immutable/1.7.1": {
  1471. "type": "package",
  1472. "compile": {
  1473. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1474. },
  1475. "runtime": {
  1476. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1477. }
  1478. },
  1479. "System.Collections.NonGeneric/4.3.0": {
  1480. "type": "package",
  1481. "dependencies": {
  1482. "System.Diagnostics.Debug": "4.3.0",
  1483. "System.Globalization": "4.3.0",
  1484. "System.Resources.ResourceManager": "4.3.0",
  1485. "System.Runtime": "4.3.0",
  1486. "System.Runtime.Extensions": "4.3.0",
  1487. "System.Threading": "4.3.0"
  1488. },
  1489. "compile": {
  1490. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1491. },
  1492. "runtime": {
  1493. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1494. }
  1495. },
  1496. "System.Collections.Specialized/4.3.0": {
  1497. "type": "package",
  1498. "dependencies": {
  1499. "System.Collections.NonGeneric": "4.3.0",
  1500. "System.Globalization": "4.3.0",
  1501. "System.Globalization.Extensions": "4.3.0",
  1502. "System.Resources.ResourceManager": "4.3.0",
  1503. "System.Runtime": "4.3.0",
  1504. "System.Runtime.Extensions": "4.3.0",
  1505. "System.Threading": "4.3.0"
  1506. },
  1507. "compile": {
  1508. "ref/netstandard1.3/_._": {}
  1509. },
  1510. "runtime": {
  1511. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1512. }
  1513. },
  1514. "System.ComponentModel/4.3.0": {
  1515. "type": "package",
  1516. "dependencies": {
  1517. "System.Runtime": "4.3.0"
  1518. },
  1519. "compile": {
  1520. "ref/netstandard1.0/System.ComponentModel.dll": {}
  1521. },
  1522. "runtime": {
  1523. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1524. }
  1525. },
  1526. "System.ComponentModel.Annotations/4.7.0": {
  1527. "type": "package",
  1528. "compile": {
  1529. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1530. },
  1531. "runtime": {
  1532. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1533. }
  1534. },
  1535. "System.ComponentModel.Primitives/4.3.0": {
  1536. "type": "package",
  1537. "dependencies": {
  1538. "System.ComponentModel": "4.3.0",
  1539. "System.Resources.ResourceManager": "4.3.0",
  1540. "System.Runtime": "4.3.0"
  1541. },
  1542. "compile": {
  1543. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1544. },
  1545. "runtime": {
  1546. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1547. }
  1548. },
  1549. "System.ComponentModel.TypeConverter/4.3.0": {
  1550. "type": "package",
  1551. "dependencies": {
  1552. "System.Collections": "4.3.0",
  1553. "System.Collections.NonGeneric": "4.3.0",
  1554. "System.Collections.Specialized": "4.3.0",
  1555. "System.ComponentModel": "4.3.0",
  1556. "System.ComponentModel.Primitives": "4.3.0",
  1557. "System.Globalization": "4.3.0",
  1558. "System.Linq": "4.3.0",
  1559. "System.Reflection": "4.3.0",
  1560. "System.Reflection.Extensions": "4.3.0",
  1561. "System.Reflection.Primitives": "4.3.0",
  1562. "System.Reflection.TypeExtensions": "4.3.0",
  1563. "System.Resources.ResourceManager": "4.3.0",
  1564. "System.Runtime": "4.3.0",
  1565. "System.Runtime.Extensions": "4.3.0",
  1566. "System.Threading": "4.3.0"
  1567. },
  1568. "compile": {
  1569. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1570. },
  1571. "runtime": {
  1572. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1573. }
  1574. },
  1575. "System.Configuration.ConfigurationManager/4.7.0": {
  1576. "type": "package",
  1577. "dependencies": {
  1578. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1579. "System.Security.Permissions": "4.7.0"
  1580. },
  1581. "compile": {
  1582. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1583. },
  1584. "runtime": {
  1585. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1586. }
  1587. },
  1588. "System.Console/4.3.0": {
  1589. "type": "package",
  1590. "dependencies": {
  1591. "Microsoft.NETCore.Platforms": "1.1.0",
  1592. "Microsoft.NETCore.Targets": "1.1.0",
  1593. "System.IO": "4.3.0",
  1594. "System.Runtime": "4.3.0",
  1595. "System.Text.Encoding": "4.3.0"
  1596. },
  1597. "compile": {
  1598. "ref/netstandard1.3/System.Console.dll": {}
  1599. }
  1600. },
  1601. "System.Data.Common/4.3.0": {
  1602. "type": "package",
  1603. "dependencies": {
  1604. "System.Collections": "4.3.0",
  1605. "System.Globalization": "4.3.0",
  1606. "System.IO": "4.3.0",
  1607. "System.Resources.ResourceManager": "4.3.0",
  1608. "System.Runtime": "4.3.0",
  1609. "System.Runtime.Extensions": "4.3.0",
  1610. "System.Text.RegularExpressions": "4.3.0",
  1611. "System.Threading.Tasks": "4.3.0"
  1612. },
  1613. "compile": {
  1614. "ref/netstandard1.2/System.Data.Common.dll": {}
  1615. },
  1616. "runtime": {
  1617. "lib/netstandard1.2/System.Data.Common.dll": {}
  1618. }
  1619. },
  1620. "System.Data.SqlClient/4.4.0": {
  1621. "type": "package",
  1622. "dependencies": {
  1623. "Microsoft.Win32.Registry": "4.4.0",
  1624. "System.Security.Principal.Windows": "4.4.0",
  1625. "System.Text.Encoding.CodePages": "4.4.0",
  1626. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1627. },
  1628. "compile": {
  1629. "ref/netstandard2.0/System.Data.SqlClient.dll": {}
  1630. },
  1631. "runtime": {
  1632. "lib/netstandard2.0/System.Data.SqlClient.dll": {}
  1633. },
  1634. "runtimeTargets": {
  1635. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1636. "assetType": "runtime",
  1637. "rid": "unix"
  1638. },
  1639. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1640. "assetType": "runtime",
  1641. "rid": "win"
  1642. }
  1643. }
  1644. },
  1645. "System.Diagnostics.Debug/4.3.0": {
  1646. "type": "package",
  1647. "dependencies": {
  1648. "Microsoft.NETCore.Platforms": "1.1.0",
  1649. "Microsoft.NETCore.Targets": "1.1.0",
  1650. "System.Runtime": "4.3.0"
  1651. },
  1652. "compile": {
  1653. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1654. }
  1655. },
  1656. "System.Diagnostics.DiagnosticSource/4.7.1": {
  1657. "type": "package",
  1658. "compile": {
  1659. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1660. },
  1661. "runtime": {
  1662. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1663. }
  1664. },
  1665. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  1666. "type": "package",
  1667. "dependencies": {
  1668. "System.Diagnostics.TraceSource": "4.3.0",
  1669. "System.Globalization": "4.3.0",
  1670. "System.IO": "4.3.0",
  1671. "System.Resources.ResourceManager": "4.3.0",
  1672. "System.Runtime": "4.3.0",
  1673. "System.Threading": "4.3.0"
  1674. },
  1675. "compile": {
  1676. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1677. },
  1678. "runtime": {
  1679. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1680. }
  1681. },
  1682. "System.Diagnostics.Tools/4.3.0": {
  1683. "type": "package",
  1684. "dependencies": {
  1685. "Microsoft.NETCore.Platforms": "1.1.0",
  1686. "Microsoft.NETCore.Targets": "1.1.0",
  1687. "System.Runtime": "4.3.0"
  1688. },
  1689. "compile": {
  1690. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1691. }
  1692. },
  1693. "System.Diagnostics.TraceSource/4.3.0": {
  1694. "type": "package",
  1695. "dependencies": {
  1696. "Microsoft.NETCore.Platforms": "1.1.0",
  1697. "System.Collections": "4.3.0",
  1698. "System.Diagnostics.Debug": "4.3.0",
  1699. "System.Globalization": "4.3.0",
  1700. "System.Resources.ResourceManager": "4.3.0",
  1701. "System.Runtime": "4.3.0",
  1702. "System.Runtime.Extensions": "4.3.0",
  1703. "System.Threading": "4.3.0",
  1704. "runtime.native.System": "4.3.0"
  1705. },
  1706. "compile": {
  1707. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1708. },
  1709. "runtimeTargets": {
  1710. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1711. "assetType": "runtime",
  1712. "rid": "unix"
  1713. },
  1714. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1715. "assetType": "runtime",
  1716. "rid": "win"
  1717. }
  1718. }
  1719. },
  1720. "System.Diagnostics.Tracing/4.3.0": {
  1721. "type": "package",
  1722. "dependencies": {
  1723. "Microsoft.NETCore.Platforms": "1.1.0",
  1724. "Microsoft.NETCore.Targets": "1.1.0",
  1725. "System.Runtime": "4.3.0"
  1726. },
  1727. "compile": {
  1728. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1729. }
  1730. },
  1731. "System.Drawing.Common/4.7.0": {
  1732. "type": "package",
  1733. "dependencies": {
  1734. "Microsoft.NETCore.Platforms": "3.1.0",
  1735. "Microsoft.Win32.SystemEvents": "4.7.0"
  1736. },
  1737. "compile": {
  1738. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  1739. },
  1740. "runtime": {
  1741. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1742. },
  1743. "runtimeTargets": {
  1744. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1745. "assetType": "runtime",
  1746. "rid": "unix"
  1747. },
  1748. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1749. "assetType": "runtime",
  1750. "rid": "win"
  1751. }
  1752. }
  1753. },
  1754. "System.Dynamic.Runtime/4.3.0": {
  1755. "type": "package",
  1756. "dependencies": {
  1757. "System.Collections": "4.3.0",
  1758. "System.Diagnostics.Debug": "4.3.0",
  1759. "System.Linq": "4.3.0",
  1760. "System.Linq.Expressions": "4.3.0",
  1761. "System.ObjectModel": "4.3.0",
  1762. "System.Reflection": "4.3.0",
  1763. "System.Reflection.Emit": "4.3.0",
  1764. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1765. "System.Reflection.Primitives": "4.3.0",
  1766. "System.Reflection.TypeExtensions": "4.3.0",
  1767. "System.Resources.ResourceManager": "4.3.0",
  1768. "System.Runtime": "4.3.0",
  1769. "System.Runtime.Extensions": "4.3.0",
  1770. "System.Threading": "4.3.0"
  1771. },
  1772. "compile": {
  1773. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1774. },
  1775. "runtime": {
  1776. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1777. }
  1778. },
  1779. "System.Globalization/4.3.0": {
  1780. "type": "package",
  1781. "dependencies": {
  1782. "Microsoft.NETCore.Platforms": "1.1.0",
  1783. "Microsoft.NETCore.Targets": "1.1.0",
  1784. "System.Runtime": "4.3.0"
  1785. },
  1786. "compile": {
  1787. "ref/netstandard1.3/System.Globalization.dll": {}
  1788. }
  1789. },
  1790. "System.Globalization.Calendars/4.3.0": {
  1791. "type": "package",
  1792. "dependencies": {
  1793. "Microsoft.NETCore.Platforms": "1.1.0",
  1794. "Microsoft.NETCore.Targets": "1.1.0",
  1795. "System.Globalization": "4.3.0",
  1796. "System.Runtime": "4.3.0"
  1797. },
  1798. "compile": {
  1799. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1800. }
  1801. },
  1802. "System.Globalization.Extensions/4.3.0": {
  1803. "type": "package",
  1804. "dependencies": {
  1805. "Microsoft.NETCore.Platforms": "1.1.0",
  1806. "System.Globalization": "4.3.0",
  1807. "System.Resources.ResourceManager": "4.3.0",
  1808. "System.Runtime": "4.3.0",
  1809. "System.Runtime.Extensions": "4.3.0",
  1810. "System.Runtime.InteropServices": "4.3.0"
  1811. },
  1812. "compile": {
  1813. "ref/netstandard1.3/_._": {}
  1814. },
  1815. "runtimeTargets": {
  1816. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1817. "assetType": "runtime",
  1818. "rid": "unix"
  1819. },
  1820. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1821. "assetType": "runtime",
  1822. "rid": "win"
  1823. }
  1824. }
  1825. },
  1826. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  1827. "type": "package",
  1828. "dependencies": {
  1829. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  1830. "Microsoft.IdentityModel.Tokens": "5.6.0",
  1831. "Newtonsoft.Json": "10.0.1"
  1832. },
  1833. "compile": {
  1834. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1835. },
  1836. "runtime": {
  1837. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1838. }
  1839. },
  1840. "System.IO/4.3.0": {
  1841. "type": "package",
  1842. "dependencies": {
  1843. "Microsoft.NETCore.Platforms": "1.1.0",
  1844. "Microsoft.NETCore.Targets": "1.1.0",
  1845. "System.Runtime": "4.3.0",
  1846. "System.Text.Encoding": "4.3.0",
  1847. "System.Threading.Tasks": "4.3.0"
  1848. },
  1849. "compile": {
  1850. "ref/netstandard1.5/System.IO.dll": {}
  1851. }
  1852. },
  1853. "System.IO.Compression/4.3.0": {
  1854. "type": "package",
  1855. "dependencies": {
  1856. "Microsoft.NETCore.Platforms": "1.1.0",
  1857. "System.Buffers": "4.3.0",
  1858. "System.Collections": "4.3.0",
  1859. "System.Diagnostics.Debug": "4.3.0",
  1860. "System.IO": "4.3.0",
  1861. "System.Resources.ResourceManager": "4.3.0",
  1862. "System.Runtime": "4.3.0",
  1863. "System.Runtime.Extensions": "4.3.0",
  1864. "System.Runtime.Handles": "4.3.0",
  1865. "System.Runtime.InteropServices": "4.3.0",
  1866. "System.Text.Encoding": "4.3.0",
  1867. "System.Threading": "4.3.0",
  1868. "System.Threading.Tasks": "4.3.0",
  1869. "runtime.native.System": "4.3.0",
  1870. "runtime.native.System.IO.Compression": "4.3.0"
  1871. },
  1872. "compile": {
  1873. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1874. },
  1875. "runtimeTargets": {
  1876. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1877. "assetType": "runtime",
  1878. "rid": "unix"
  1879. },
  1880. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1881. "assetType": "runtime",
  1882. "rid": "win"
  1883. }
  1884. }
  1885. },
  1886. "System.IO.Compression.ZipFile/4.3.0": {
  1887. "type": "package",
  1888. "dependencies": {
  1889. "System.Buffers": "4.3.0",
  1890. "System.IO": "4.3.0",
  1891. "System.IO.Compression": "4.3.0",
  1892. "System.IO.FileSystem": "4.3.0",
  1893. "System.IO.FileSystem.Primitives": "4.3.0",
  1894. "System.Resources.ResourceManager": "4.3.0",
  1895. "System.Runtime": "4.3.0",
  1896. "System.Runtime.Extensions": "4.3.0",
  1897. "System.Text.Encoding": "4.3.0"
  1898. },
  1899. "compile": {
  1900. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1901. },
  1902. "runtime": {
  1903. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1904. }
  1905. },
  1906. "System.IO.FileSystem/4.3.0": {
  1907. "type": "package",
  1908. "dependencies": {
  1909. "Microsoft.NETCore.Platforms": "1.1.0",
  1910. "Microsoft.NETCore.Targets": "1.1.0",
  1911. "System.IO": "4.3.0",
  1912. "System.IO.FileSystem.Primitives": "4.3.0",
  1913. "System.Runtime": "4.3.0",
  1914. "System.Runtime.Handles": "4.3.0",
  1915. "System.Text.Encoding": "4.3.0",
  1916. "System.Threading.Tasks": "4.3.0"
  1917. },
  1918. "compile": {
  1919. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1920. }
  1921. },
  1922. "System.IO.FileSystem.Primitives/4.3.0": {
  1923. "type": "package",
  1924. "dependencies": {
  1925. "System.Runtime": "4.3.0"
  1926. },
  1927. "compile": {
  1928. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1929. },
  1930. "runtime": {
  1931. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1932. }
  1933. },
  1934. "System.Linq/4.3.0": {
  1935. "type": "package",
  1936. "dependencies": {
  1937. "System.Collections": "4.3.0",
  1938. "System.Diagnostics.Debug": "4.3.0",
  1939. "System.Resources.ResourceManager": "4.3.0",
  1940. "System.Runtime": "4.3.0",
  1941. "System.Runtime.Extensions": "4.3.0"
  1942. },
  1943. "compile": {
  1944. "ref/netstandard1.6/System.Linq.dll": {}
  1945. },
  1946. "runtime": {
  1947. "lib/netstandard1.6/System.Linq.dll": {}
  1948. }
  1949. },
  1950. "System.Linq.Expressions/4.3.0": {
  1951. "type": "package",
  1952. "dependencies": {
  1953. "System.Collections": "4.3.0",
  1954. "System.Diagnostics.Debug": "4.3.0",
  1955. "System.Globalization": "4.3.0",
  1956. "System.IO": "4.3.0",
  1957. "System.Linq": "4.3.0",
  1958. "System.ObjectModel": "4.3.0",
  1959. "System.Reflection": "4.3.0",
  1960. "System.Reflection.Emit": "4.3.0",
  1961. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1962. "System.Reflection.Emit.Lightweight": "4.3.0",
  1963. "System.Reflection.Extensions": "4.3.0",
  1964. "System.Reflection.Primitives": "4.3.0",
  1965. "System.Reflection.TypeExtensions": "4.3.0",
  1966. "System.Resources.ResourceManager": "4.3.0",
  1967. "System.Runtime": "4.3.0",
  1968. "System.Runtime.Extensions": "4.3.0",
  1969. "System.Threading": "4.3.0"
  1970. },
  1971. "compile": {
  1972. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1973. },
  1974. "runtime": {
  1975. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1976. }
  1977. },
  1978. "System.Management/5.0.0": {
  1979. "type": "package",
  1980. "dependencies": {
  1981. "Microsoft.NETCore.Platforms": "5.0.0",
  1982. "Microsoft.Win32.Registry": "5.0.0",
  1983. "System.CodeDom": "5.0.0"
  1984. },
  1985. "compile": {
  1986. "ref/netstandard2.0/System.Management.dll": {}
  1987. },
  1988. "runtime": {
  1989. "lib/netstandard2.0/System.Management.dll": {}
  1990. },
  1991. "runtimeTargets": {
  1992. "runtimes/win/lib/netcoreapp2.0/System.Management.dll": {
  1993. "assetType": "runtime",
  1994. "rid": "win"
  1995. }
  1996. }
  1997. },
  1998. "System.Net.Http/4.3.0": {
  1999. "type": "package",
  2000. "dependencies": {
  2001. "Microsoft.NETCore.Platforms": "1.1.0",
  2002. "System.Collections": "4.3.0",
  2003. "System.Diagnostics.Debug": "4.3.0",
  2004. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2005. "System.Diagnostics.Tracing": "4.3.0",
  2006. "System.Globalization": "4.3.0",
  2007. "System.Globalization.Extensions": "4.3.0",
  2008. "System.IO": "4.3.0",
  2009. "System.IO.FileSystem": "4.3.0",
  2010. "System.Net.Primitives": "4.3.0",
  2011. "System.Resources.ResourceManager": "4.3.0",
  2012. "System.Runtime": "4.3.0",
  2013. "System.Runtime.Extensions": "4.3.0",
  2014. "System.Runtime.Handles": "4.3.0",
  2015. "System.Runtime.InteropServices": "4.3.0",
  2016. "System.Security.Cryptography.Algorithms": "4.3.0",
  2017. "System.Security.Cryptography.Encoding": "4.3.0",
  2018. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2019. "System.Security.Cryptography.Primitives": "4.3.0",
  2020. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2021. "System.Text.Encoding": "4.3.0",
  2022. "System.Threading": "4.3.0",
  2023. "System.Threading.Tasks": "4.3.0",
  2024. "runtime.native.System": "4.3.0",
  2025. "runtime.native.System.Net.Http": "4.3.0",
  2026. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2027. },
  2028. "compile": {
  2029. "ref/netstandard1.3/System.Net.Http.dll": {}
  2030. },
  2031. "runtimeTargets": {
  2032. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2033. "assetType": "runtime",
  2034. "rid": "unix"
  2035. },
  2036. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2037. "assetType": "runtime",
  2038. "rid": "win"
  2039. }
  2040. }
  2041. },
  2042. "System.Net.Http.WinHttpHandler/4.4.0": {
  2043. "type": "package",
  2044. "compile": {
  2045. "ref/netstandard2.0/_._": {}
  2046. },
  2047. "runtime": {
  2048. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {}
  2049. },
  2050. "runtimeTargets": {
  2051. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
  2052. "assetType": "runtime",
  2053. "rid": "win"
  2054. }
  2055. }
  2056. },
  2057. "System.Net.Primitives/4.3.0": {
  2058. "type": "package",
  2059. "dependencies": {
  2060. "Microsoft.NETCore.Platforms": "1.1.0",
  2061. "Microsoft.NETCore.Targets": "1.1.0",
  2062. "System.Runtime": "4.3.0",
  2063. "System.Runtime.Handles": "4.3.0"
  2064. },
  2065. "compile": {
  2066. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  2067. }
  2068. },
  2069. "System.Net.Requests/4.3.0": {
  2070. "type": "package",
  2071. "dependencies": {
  2072. "Microsoft.NETCore.Platforms": "1.1.0",
  2073. "System.Collections": "4.3.0",
  2074. "System.Diagnostics.Debug": "4.3.0",
  2075. "System.Diagnostics.Tracing": "4.3.0",
  2076. "System.Globalization": "4.3.0",
  2077. "System.IO": "4.3.0",
  2078. "System.Net.Http": "4.3.0",
  2079. "System.Net.Primitives": "4.3.0",
  2080. "System.Net.WebHeaderCollection": "4.3.0",
  2081. "System.Resources.ResourceManager": "4.3.0",
  2082. "System.Runtime": "4.3.0",
  2083. "System.Threading": "4.3.0",
  2084. "System.Threading.Tasks": "4.3.0"
  2085. },
  2086. "compile": {
  2087. "ref/netstandard1.3/System.Net.Requests.dll": {}
  2088. },
  2089. "runtimeTargets": {
  2090. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": {
  2091. "assetType": "runtime",
  2092. "rid": "unix"
  2093. },
  2094. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {
  2095. "assetType": "runtime",
  2096. "rid": "win"
  2097. }
  2098. }
  2099. },
  2100. "System.Net.Sockets/4.3.0": {
  2101. "type": "package",
  2102. "dependencies": {
  2103. "Microsoft.NETCore.Platforms": "1.1.0",
  2104. "Microsoft.NETCore.Targets": "1.1.0",
  2105. "System.IO": "4.3.0",
  2106. "System.Net.Primitives": "4.3.0",
  2107. "System.Runtime": "4.3.0",
  2108. "System.Threading.Tasks": "4.3.0"
  2109. },
  2110. "compile": {
  2111. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  2112. }
  2113. },
  2114. "System.Net.WebHeaderCollection/4.3.0": {
  2115. "type": "package",
  2116. "dependencies": {
  2117. "System.Collections": "4.3.0",
  2118. "System.Resources.ResourceManager": "4.3.0",
  2119. "System.Runtime": "4.3.0",
  2120. "System.Runtime.Extensions": "4.3.0"
  2121. },
  2122. "compile": {
  2123. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2124. },
  2125. "runtime": {
  2126. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2127. }
  2128. },
  2129. "System.ObjectModel/4.3.0": {
  2130. "type": "package",
  2131. "dependencies": {
  2132. "System.Collections": "4.3.0",
  2133. "System.Diagnostics.Debug": "4.3.0",
  2134. "System.Resources.ResourceManager": "4.3.0",
  2135. "System.Runtime": "4.3.0",
  2136. "System.Threading": "4.3.0"
  2137. },
  2138. "compile": {
  2139. "ref/netstandard1.3/System.ObjectModel.dll": {}
  2140. },
  2141. "runtime": {
  2142. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2143. }
  2144. },
  2145. "System.Private.ServiceModel/4.4.4": {
  2146. "type": "package",
  2147. "dependencies": {
  2148. "Microsoft.NETCore.Platforms": "2.0.0",
  2149. "System.Net.Http.WinHttpHandler": "4.4.0",
  2150. "System.Reflection.DispatchProxy": "4.4.0",
  2151. "System.Security.Principal.Windows": "4.4.0"
  2152. },
  2153. "compile": {
  2154. "ref/netstandard/_._": {}
  2155. },
  2156. "runtimeTargets": {
  2157. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  2158. "assetType": "runtime",
  2159. "rid": "unix"
  2160. },
  2161. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  2162. "assetType": "runtime",
  2163. "rid": "win7"
  2164. }
  2165. }
  2166. },
  2167. "System.Reflection/4.3.0": {
  2168. "type": "package",
  2169. "dependencies": {
  2170. "Microsoft.NETCore.Platforms": "1.1.0",
  2171. "Microsoft.NETCore.Targets": "1.1.0",
  2172. "System.IO": "4.3.0",
  2173. "System.Reflection.Primitives": "4.3.0",
  2174. "System.Runtime": "4.3.0"
  2175. },
  2176. "compile": {
  2177. "ref/netstandard1.5/System.Reflection.dll": {}
  2178. }
  2179. },
  2180. "System.Reflection.DispatchProxy/4.4.0": {
  2181. "type": "package",
  2182. "compile": {
  2183. "ref/netcoreapp2.0/_._": {}
  2184. },
  2185. "runtime": {
  2186. "lib/netcoreapp2.0/_._": {}
  2187. }
  2188. },
  2189. "System.Reflection.Emit/4.3.0": {
  2190. "type": "package",
  2191. "dependencies": {
  2192. "System.IO": "4.3.0",
  2193. "System.Reflection": "4.3.0",
  2194. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2195. "System.Reflection.Primitives": "4.3.0",
  2196. "System.Runtime": "4.3.0"
  2197. },
  2198. "compile": {
  2199. "ref/netstandard1.1/_._": {}
  2200. },
  2201. "runtime": {
  2202. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2203. }
  2204. },
  2205. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2206. "type": "package",
  2207. "dependencies": {
  2208. "System.Reflection": "4.3.0",
  2209. "System.Reflection.Primitives": "4.3.0",
  2210. "System.Runtime": "4.3.0"
  2211. },
  2212. "compile": {
  2213. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
  2214. },
  2215. "runtime": {
  2216. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2217. }
  2218. },
  2219. "System.Reflection.Emit.Lightweight/4.3.0": {
  2220. "type": "package",
  2221. "dependencies": {
  2222. "System.Reflection": "4.3.0",
  2223. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2224. "System.Reflection.Primitives": "4.3.0",
  2225. "System.Runtime": "4.3.0"
  2226. },
  2227. "compile": {
  2228. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {}
  2229. },
  2230. "runtime": {
  2231. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2232. }
  2233. },
  2234. "System.Reflection.Extensions/4.3.0": {
  2235. "type": "package",
  2236. "dependencies": {
  2237. "Microsoft.NETCore.Platforms": "1.1.0",
  2238. "Microsoft.NETCore.Targets": "1.1.0",
  2239. "System.Reflection": "4.3.0",
  2240. "System.Runtime": "4.3.0"
  2241. },
  2242. "compile": {
  2243. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  2244. }
  2245. },
  2246. "System.Reflection.Primitives/4.3.0": {
  2247. "type": "package",
  2248. "dependencies": {
  2249. "Microsoft.NETCore.Platforms": "1.1.0",
  2250. "Microsoft.NETCore.Targets": "1.1.0",
  2251. "System.Runtime": "4.3.0"
  2252. },
  2253. "compile": {
  2254. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  2255. }
  2256. },
  2257. "System.Reflection.TypeExtensions/4.7.0": {
  2258. "type": "package",
  2259. "compile": {
  2260. "ref/netcoreapp2.0/_._": {}
  2261. },
  2262. "runtime": {
  2263. "lib/netcoreapp2.0/_._": {}
  2264. }
  2265. },
  2266. "System.Resources.ResourceManager/4.3.0": {
  2267. "type": "package",
  2268. "dependencies": {
  2269. "Microsoft.NETCore.Platforms": "1.1.0",
  2270. "Microsoft.NETCore.Targets": "1.1.0",
  2271. "System.Globalization": "4.3.0",
  2272. "System.Reflection": "4.3.0",
  2273. "System.Runtime": "4.3.0"
  2274. },
  2275. "compile": {
  2276. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  2277. }
  2278. },
  2279. "System.Runtime/4.3.0": {
  2280. "type": "package",
  2281. "dependencies": {
  2282. "Microsoft.NETCore.Platforms": "1.1.0",
  2283. "Microsoft.NETCore.Targets": "1.1.0"
  2284. },
  2285. "compile": {
  2286. "ref/netstandard1.5/System.Runtime.dll": {}
  2287. }
  2288. },
  2289. "System.Runtime.Extensions/4.3.0": {
  2290. "type": "package",
  2291. "dependencies": {
  2292. "Microsoft.NETCore.Platforms": "1.1.0",
  2293. "Microsoft.NETCore.Targets": "1.1.0",
  2294. "System.Runtime": "4.3.0"
  2295. },
  2296. "compile": {
  2297. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  2298. }
  2299. },
  2300. "System.Runtime.Handles/4.3.0": {
  2301. "type": "package",
  2302. "dependencies": {
  2303. "Microsoft.NETCore.Platforms": "1.1.0",
  2304. "Microsoft.NETCore.Targets": "1.1.0",
  2305. "System.Runtime": "4.3.0"
  2306. },
  2307. "compile": {
  2308. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  2309. }
  2310. },
  2311. "System.Runtime.InteropServices/4.3.0": {
  2312. "type": "package",
  2313. "dependencies": {
  2314. "Microsoft.NETCore.Platforms": "1.1.0",
  2315. "Microsoft.NETCore.Targets": "1.1.0",
  2316. "System.Reflection": "4.3.0",
  2317. "System.Reflection.Primitives": "4.3.0",
  2318. "System.Runtime": "4.3.0",
  2319. "System.Runtime.Handles": "4.3.0"
  2320. },
  2321. "compile": {
  2322. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2323. }
  2324. },
  2325. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2326. "type": "package",
  2327. "dependencies": {
  2328. "System.Reflection": "4.3.0",
  2329. "System.Reflection.Extensions": "4.3.0",
  2330. "System.Resources.ResourceManager": "4.3.0",
  2331. "System.Runtime": "4.3.0",
  2332. "System.Runtime.InteropServices": "4.3.0",
  2333. "System.Threading": "4.3.0",
  2334. "runtime.native.System": "4.3.0"
  2335. },
  2336. "compile": {
  2337. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2338. },
  2339. "runtime": {
  2340. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2341. },
  2342. "runtimeTargets": {
  2343. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2344. "assetType": "runtime",
  2345. "rid": "unix"
  2346. },
  2347. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2348. "assetType": "runtime",
  2349. "rid": "win"
  2350. }
  2351. }
  2352. },
  2353. "System.Runtime.Loader/4.3.0": {
  2354. "type": "package",
  2355. "dependencies": {
  2356. "System.IO": "4.3.0",
  2357. "System.Reflection": "4.3.0",
  2358. "System.Runtime": "4.3.0"
  2359. },
  2360. "compile": {
  2361. "ref/netstandard1.5/System.Runtime.Loader.dll": {}
  2362. },
  2363. "runtime": {
  2364. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  2365. }
  2366. },
  2367. "System.Runtime.Numerics/4.3.0": {
  2368. "type": "package",
  2369. "dependencies": {
  2370. "System.Globalization": "4.3.0",
  2371. "System.Resources.ResourceManager": "4.3.0",
  2372. "System.Runtime": "4.3.0",
  2373. "System.Runtime.Extensions": "4.3.0"
  2374. },
  2375. "compile": {
  2376. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  2377. },
  2378. "runtime": {
  2379. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2380. }
  2381. },
  2382. "System.Runtime.Serialization.Formatters/4.3.0": {
  2383. "type": "package",
  2384. "dependencies": {
  2385. "System.Collections": "4.3.0",
  2386. "System.Reflection": "4.3.0",
  2387. "System.Resources.ResourceManager": "4.3.0",
  2388. "System.Runtime": "4.3.0",
  2389. "System.Runtime.Serialization.Primitives": "4.3.0"
  2390. },
  2391. "compile": {
  2392. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {}
  2393. },
  2394. "runtime": {
  2395. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  2396. }
  2397. },
  2398. "System.Runtime.Serialization.Primitives/4.3.0": {
  2399. "type": "package",
  2400. "dependencies": {
  2401. "System.Resources.ResourceManager": "4.3.0",
  2402. "System.Runtime": "4.3.0"
  2403. },
  2404. "compile": {
  2405. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2406. },
  2407. "runtime": {
  2408. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2409. }
  2410. },
  2411. "System.Security.AccessControl/5.0.0": {
  2412. "type": "package",
  2413. "dependencies": {
  2414. "Microsoft.NETCore.Platforms": "5.0.0",
  2415. "System.Security.Principal.Windows": "5.0.0"
  2416. },
  2417. "compile": {
  2418. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  2419. },
  2420. "runtime": {
  2421. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2422. },
  2423. "runtimeTargets": {
  2424. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2425. "assetType": "runtime",
  2426. "rid": "win"
  2427. }
  2428. }
  2429. },
  2430. "System.Security.Cryptography.Algorithms/4.3.1": {
  2431. "type": "package",
  2432. "dependencies": {
  2433. "Microsoft.NETCore.Platforms": "1.1.0",
  2434. "System.Collections": "4.3.0",
  2435. "System.IO": "4.3.0",
  2436. "System.Resources.ResourceManager": "4.3.0",
  2437. "System.Runtime": "4.3.0",
  2438. "System.Runtime.Extensions": "4.3.0",
  2439. "System.Runtime.Handles": "4.3.0",
  2440. "System.Runtime.InteropServices": "4.3.0",
  2441. "System.Runtime.Numerics": "4.3.0",
  2442. "System.Security.Cryptography.Encoding": "4.3.0",
  2443. "System.Security.Cryptography.Primitives": "4.3.0",
  2444. "System.Text.Encoding": "4.3.0",
  2445. "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
  2446. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  2447. },
  2448. "compile": {
  2449. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2450. },
  2451. "runtimeTargets": {
  2452. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2453. "assetType": "runtime",
  2454. "rid": "osx"
  2455. },
  2456. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2457. "assetType": "runtime",
  2458. "rid": "unix"
  2459. },
  2460. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2461. "assetType": "runtime",
  2462. "rid": "win"
  2463. }
  2464. }
  2465. },
  2466. "System.Security.Cryptography.Cng/4.5.0": {
  2467. "type": "package",
  2468. "compile": {
  2469. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2470. },
  2471. "runtime": {
  2472. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2473. },
  2474. "runtimeTargets": {
  2475. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2476. "assetType": "runtime",
  2477. "rid": "win"
  2478. }
  2479. }
  2480. },
  2481. "System.Security.Cryptography.Csp/4.3.0": {
  2482. "type": "package",
  2483. "dependencies": {
  2484. "Microsoft.NETCore.Platforms": "1.1.0",
  2485. "System.IO": "4.3.0",
  2486. "System.Reflection": "4.3.0",
  2487. "System.Resources.ResourceManager": "4.3.0",
  2488. "System.Runtime": "4.3.0",
  2489. "System.Runtime.Extensions": "4.3.0",
  2490. "System.Runtime.Handles": "4.3.0",
  2491. "System.Runtime.InteropServices": "4.3.0",
  2492. "System.Security.Cryptography.Algorithms": "4.3.0",
  2493. "System.Security.Cryptography.Encoding": "4.3.0",
  2494. "System.Security.Cryptography.Primitives": "4.3.0",
  2495. "System.Text.Encoding": "4.3.0",
  2496. "System.Threading": "4.3.0"
  2497. },
  2498. "compile": {
  2499. "ref/netstandard1.3/_._": {}
  2500. },
  2501. "runtimeTargets": {
  2502. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2503. "assetType": "runtime",
  2504. "rid": "unix"
  2505. },
  2506. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2507. "assetType": "runtime",
  2508. "rid": "win"
  2509. }
  2510. }
  2511. },
  2512. "System.Security.Cryptography.Encoding/4.3.0": {
  2513. "type": "package",
  2514. "dependencies": {
  2515. "Microsoft.NETCore.Platforms": "1.1.0",
  2516. "System.Collections": "4.3.0",
  2517. "System.Collections.Concurrent": "4.3.0",
  2518. "System.Linq": "4.3.0",
  2519. "System.Resources.ResourceManager": "4.3.0",
  2520. "System.Runtime": "4.3.0",
  2521. "System.Runtime.Extensions": "4.3.0",
  2522. "System.Runtime.Handles": "4.3.0",
  2523. "System.Runtime.InteropServices": "4.3.0",
  2524. "System.Security.Cryptography.Primitives": "4.3.0",
  2525. "System.Text.Encoding": "4.3.0",
  2526. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2527. },
  2528. "compile": {
  2529. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2530. },
  2531. "runtimeTargets": {
  2532. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2533. "assetType": "runtime",
  2534. "rid": "unix"
  2535. },
  2536. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2537. "assetType": "runtime",
  2538. "rid": "win"
  2539. }
  2540. }
  2541. },
  2542. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2543. "type": "package",
  2544. "dependencies": {
  2545. "System.Collections": "4.3.0",
  2546. "System.IO": "4.3.0",
  2547. "System.Resources.ResourceManager": "4.3.0",
  2548. "System.Runtime": "4.3.0",
  2549. "System.Runtime.Extensions": "4.3.0",
  2550. "System.Runtime.Handles": "4.3.0",
  2551. "System.Runtime.InteropServices": "4.3.0",
  2552. "System.Runtime.Numerics": "4.3.0",
  2553. "System.Security.Cryptography.Algorithms": "4.3.0",
  2554. "System.Security.Cryptography.Encoding": "4.3.0",
  2555. "System.Security.Cryptography.Primitives": "4.3.0",
  2556. "System.Text.Encoding": "4.3.0",
  2557. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2558. },
  2559. "compile": {
  2560. "ref/netstandard1.6/_._": {}
  2561. },
  2562. "runtime": {
  2563. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2564. },
  2565. "runtimeTargets": {
  2566. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2567. "assetType": "runtime",
  2568. "rid": "unix"
  2569. }
  2570. }
  2571. },
  2572. "System.Security.Cryptography.Primitives/4.3.0": {
  2573. "type": "package",
  2574. "dependencies": {
  2575. "System.Diagnostics.Debug": "4.3.0",
  2576. "System.Globalization": "4.3.0",
  2577. "System.IO": "4.3.0",
  2578. "System.Resources.ResourceManager": "4.3.0",
  2579. "System.Runtime": "4.3.0",
  2580. "System.Threading": "4.3.0",
  2581. "System.Threading.Tasks": "4.3.0"
  2582. },
  2583. "compile": {
  2584. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2585. },
  2586. "runtime": {
  2587. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2588. }
  2589. },
  2590. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2591. "type": "package",
  2592. "compile": {
  2593. "ref/netstandard2.0/_._": {}
  2594. },
  2595. "runtime": {
  2596. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2597. },
  2598. "runtimeTargets": {
  2599. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2600. "assetType": "runtime",
  2601. "rid": "win"
  2602. }
  2603. }
  2604. },
  2605. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2606. "type": "package",
  2607. "dependencies": {
  2608. "Microsoft.NETCore.Platforms": "1.1.0",
  2609. "System.Collections": "4.3.0",
  2610. "System.Diagnostics.Debug": "4.3.0",
  2611. "System.Globalization": "4.3.0",
  2612. "System.Globalization.Calendars": "4.3.0",
  2613. "System.IO": "4.3.0",
  2614. "System.IO.FileSystem": "4.3.0",
  2615. "System.IO.FileSystem.Primitives": "4.3.0",
  2616. "System.Resources.ResourceManager": "4.3.0",
  2617. "System.Runtime": "4.3.0",
  2618. "System.Runtime.Extensions": "4.3.0",
  2619. "System.Runtime.Handles": "4.3.0",
  2620. "System.Runtime.InteropServices": "4.3.0",
  2621. "System.Runtime.Numerics": "4.3.0",
  2622. "System.Security.Cryptography.Algorithms": "4.3.0",
  2623. "System.Security.Cryptography.Cng": "4.3.0",
  2624. "System.Security.Cryptography.Csp": "4.3.0",
  2625. "System.Security.Cryptography.Encoding": "4.3.0",
  2626. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2627. "System.Security.Cryptography.Primitives": "4.3.0",
  2628. "System.Text.Encoding": "4.3.0",
  2629. "System.Threading": "4.3.0",
  2630. "runtime.native.System": "4.3.0",
  2631. "runtime.native.System.Net.Http": "4.3.0",
  2632. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2633. },
  2634. "compile": {
  2635. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2636. },
  2637. "runtimeTargets": {
  2638. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2639. "assetType": "runtime",
  2640. "rid": "unix"
  2641. },
  2642. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2643. "assetType": "runtime",
  2644. "rid": "win"
  2645. }
  2646. }
  2647. },
  2648. "System.Security.Permissions/4.7.0": {
  2649. "type": "package",
  2650. "dependencies": {
  2651. "System.Security.AccessControl": "4.7.0",
  2652. "System.Windows.Extensions": "4.7.0"
  2653. },
  2654. "compile": {
  2655. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  2656. },
  2657. "runtime": {
  2658. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  2659. }
  2660. },
  2661. "System.Security.Principal.Windows/5.0.0": {
  2662. "type": "package",
  2663. "compile": {
  2664. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2665. },
  2666. "runtime": {
  2667. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2668. },
  2669. "runtimeTargets": {
  2670. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2671. "assetType": "runtime",
  2672. "rid": "unix"
  2673. },
  2674. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2675. "assetType": "runtime",
  2676. "rid": "win"
  2677. }
  2678. }
  2679. },
  2680. "System.ServiceModel.Duplex/4.4.4": {
  2681. "type": "package",
  2682. "dependencies": {
  2683. "System.Private.ServiceModel": "4.4.4",
  2684. "System.ServiceModel.Primitives": "4.4.4"
  2685. },
  2686. "compile": {
  2687. "ref/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2688. },
  2689. "runtime": {
  2690. "lib/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2691. }
  2692. },
  2693. "System.ServiceModel.Http/4.4.4": {
  2694. "type": "package",
  2695. "dependencies": {
  2696. "System.Private.ServiceModel": "4.4.4",
  2697. "System.ServiceModel.Primitives": "4.4.4"
  2698. },
  2699. "compile": {
  2700. "ref/netstandard2.0/System.ServiceModel.Http.dll": {}
  2701. },
  2702. "runtime": {
  2703. "lib/netstandard2.0/System.ServiceModel.Http.dll": {}
  2704. }
  2705. },
  2706. "System.ServiceModel.NetTcp/4.4.4": {
  2707. "type": "package",
  2708. "dependencies": {
  2709. "System.Private.ServiceModel": "4.4.4",
  2710. "System.ServiceModel.Primitives": "4.4.4"
  2711. },
  2712. "compile": {
  2713. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2714. },
  2715. "runtime": {
  2716. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2717. }
  2718. },
  2719. "System.ServiceModel.Primitives/4.4.4": {
  2720. "type": "package",
  2721. "dependencies": {
  2722. "System.Private.ServiceModel": "4.4.4"
  2723. },
  2724. "compile": {
  2725. "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2726. "ref/netstandard2.0/System.ServiceModel.dll": {}
  2727. },
  2728. "runtime": {
  2729. "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2730. "lib/netstandard2.0/System.ServiceModel.dll": {}
  2731. }
  2732. },
  2733. "System.ServiceModel.Security/4.4.4": {
  2734. "type": "package",
  2735. "dependencies": {
  2736. "System.Private.ServiceModel": "4.4.4",
  2737. "System.ServiceModel.Primitives": "4.4.4"
  2738. },
  2739. "compile": {
  2740. "ref/netstandard2.0/System.ServiceModel.Security.dll": {}
  2741. },
  2742. "runtime": {
  2743. "lib/netstandard2.0/System.ServiceModel.Security.dll": {}
  2744. }
  2745. },
  2746. "System.Text.Encoding/4.3.0": {
  2747. "type": "package",
  2748. "dependencies": {
  2749. "Microsoft.NETCore.Platforms": "1.1.0",
  2750. "Microsoft.NETCore.Targets": "1.1.0",
  2751. "System.Runtime": "4.3.0"
  2752. },
  2753. "compile": {
  2754. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2755. }
  2756. },
  2757. "System.Text.Encoding.CodePages/4.7.1": {
  2758. "type": "package",
  2759. "dependencies": {
  2760. "Microsoft.NETCore.Platforms": "3.1.1"
  2761. },
  2762. "compile": {
  2763. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2764. },
  2765. "runtime": {
  2766. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2767. },
  2768. "runtimeTargets": {
  2769. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2770. "assetType": "runtime",
  2771. "rid": "win"
  2772. }
  2773. }
  2774. },
  2775. "System.Text.Encoding.Extensions/4.3.0": {
  2776. "type": "package",
  2777. "dependencies": {
  2778. "Microsoft.NETCore.Platforms": "1.1.0",
  2779. "Microsoft.NETCore.Targets": "1.1.0",
  2780. "System.Runtime": "4.3.0",
  2781. "System.Text.Encoding": "4.3.0"
  2782. },
  2783. "compile": {
  2784. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2785. }
  2786. },
  2787. "System.Text.Encodings.Web/4.5.0": {
  2788. "type": "package",
  2789. "compile": {
  2790. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2791. },
  2792. "runtime": {
  2793. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2794. }
  2795. },
  2796. "System.Text.RegularExpressions/4.3.0": {
  2797. "type": "package",
  2798. "dependencies": {
  2799. "System.Runtime": "4.3.0"
  2800. },
  2801. "compile": {
  2802. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2803. },
  2804. "runtime": {
  2805. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2806. }
  2807. },
  2808. "System.Threading/4.3.0": {
  2809. "type": "package",
  2810. "dependencies": {
  2811. "System.Runtime": "4.3.0",
  2812. "System.Threading.Tasks": "4.3.0"
  2813. },
  2814. "compile": {
  2815. "ref/netstandard1.3/System.Threading.dll": {}
  2816. },
  2817. "runtime": {
  2818. "lib/netstandard1.3/System.Threading.dll": {}
  2819. }
  2820. },
  2821. "System.Threading.Tasks/4.3.0": {
  2822. "type": "package",
  2823. "dependencies": {
  2824. "Microsoft.NETCore.Platforms": "1.1.0",
  2825. "Microsoft.NETCore.Targets": "1.1.0",
  2826. "System.Runtime": "4.3.0"
  2827. },
  2828. "compile": {
  2829. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2830. }
  2831. },
  2832. "System.Threading.Tasks.Extensions/4.3.0": {
  2833. "type": "package",
  2834. "dependencies": {
  2835. "System.Collections": "4.3.0",
  2836. "System.Runtime": "4.3.0",
  2837. "System.Threading.Tasks": "4.3.0"
  2838. },
  2839. "compile": {
  2840. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2841. },
  2842. "runtime": {
  2843. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2844. }
  2845. },
  2846. "System.Threading.Timer/4.3.0": {
  2847. "type": "package",
  2848. "dependencies": {
  2849. "Microsoft.NETCore.Platforms": "1.1.0",
  2850. "Microsoft.NETCore.Targets": "1.1.0",
  2851. "System.Runtime": "4.3.0"
  2852. },
  2853. "compile": {
  2854. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2855. }
  2856. },
  2857. "System.Windows.Extensions/4.7.0": {
  2858. "type": "package",
  2859. "dependencies": {
  2860. "System.Drawing.Common": "4.7.0"
  2861. },
  2862. "compile": {
  2863. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2864. },
  2865. "runtime": {
  2866. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2867. },
  2868. "runtimeTargets": {
  2869. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2870. "assetType": "runtime",
  2871. "rid": "win"
  2872. }
  2873. }
  2874. },
  2875. "System.Xml.ReaderWriter/4.3.1": {
  2876. "type": "package",
  2877. "dependencies": {
  2878. "System.Collections": "4.3.0",
  2879. "System.Diagnostics.Debug": "4.3.0",
  2880. "System.Globalization": "4.3.0",
  2881. "System.IO": "4.3.0",
  2882. "System.IO.FileSystem": "4.3.0",
  2883. "System.IO.FileSystem.Primitives": "4.3.0",
  2884. "System.Resources.ResourceManager": "4.3.0",
  2885. "System.Runtime": "4.3.0",
  2886. "System.Runtime.Extensions": "4.3.0",
  2887. "System.Runtime.InteropServices": "4.3.0",
  2888. "System.Text.Encoding": "4.3.0",
  2889. "System.Text.Encoding.Extensions": "4.3.0",
  2890. "System.Text.RegularExpressions": "4.3.0",
  2891. "System.Threading.Tasks": "4.3.0",
  2892. "System.Threading.Tasks.Extensions": "4.3.0"
  2893. },
  2894. "compile": {
  2895. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2896. },
  2897. "runtime": {
  2898. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2899. }
  2900. },
  2901. "System.Xml.XDocument/4.3.0": {
  2902. "type": "package",
  2903. "dependencies": {
  2904. "System.Collections": "4.3.0",
  2905. "System.Diagnostics.Debug": "4.3.0",
  2906. "System.Diagnostics.Tools": "4.3.0",
  2907. "System.Globalization": "4.3.0",
  2908. "System.IO": "4.3.0",
  2909. "System.Reflection": "4.3.0",
  2910. "System.Resources.ResourceManager": "4.3.0",
  2911. "System.Runtime": "4.3.0",
  2912. "System.Runtime.Extensions": "4.3.0",
  2913. "System.Text.Encoding": "4.3.0",
  2914. "System.Threading": "4.3.0",
  2915. "System.Xml.ReaderWriter": "4.3.0"
  2916. },
  2917. "compile": {
  2918. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2919. },
  2920. "runtime": {
  2921. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2922. }
  2923. },
  2924. "System.Xml.XmlDocument/4.3.0": {
  2925. "type": "package",
  2926. "dependencies": {
  2927. "System.Collections": "4.3.0",
  2928. "System.Diagnostics.Debug": "4.3.0",
  2929. "System.Globalization": "4.3.0",
  2930. "System.IO": "4.3.0",
  2931. "System.Resources.ResourceManager": "4.3.0",
  2932. "System.Runtime": "4.3.0",
  2933. "System.Runtime.Extensions": "4.3.0",
  2934. "System.Text.Encoding": "4.3.0",
  2935. "System.Threading": "4.3.0",
  2936. "System.Xml.ReaderWriter": "4.3.0"
  2937. },
  2938. "compile": {
  2939. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2940. },
  2941. "runtime": {
  2942. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2943. }
  2944. },
  2945. "WebAPIBase.NetCore.BusinessCore/1.0.0": {
  2946. "type": "project",
  2947. "framework": ".NETStandard,Version=v2.1",
  2948. "dependencies": {
  2949. "Microsoft.Extensions.Configuration.Abstractions": "3.1.10",
  2950. "NLog": "4.7.5",
  2951. "System.ServiceModel.Duplex": "4.4.0",
  2952. "System.ServiceModel.Http": "4.4.0",
  2953. "System.ServiceModel.NetTcp": "4.4.0",
  2954. "System.ServiceModel.Security": "4.4.0",
  2955. "WebAPIBase.NetCore.Enties": "1.0.0",
  2956. "WebAPIBase.Utils": "1.0.0",
  2957. "iTextSharp.LGPLv2.Core": "1.7.0",
  2958. "sqlSugarCore": "5.0.0.18"
  2959. },
  2960. "compile": {
  2961. "bin/placeholder/WebAPIBase.NetCore.BusinessCore.dll": {}
  2962. },
  2963. "runtime": {
  2964. "bin/placeholder/WebAPIBase.NetCore.BusinessCore.dll": {}
  2965. }
  2966. },
  2967. "WebAPIBase.NetCore.Enties/1.0.0": {
  2968. "type": "project",
  2969. "framework": ".NETStandard,Version=v2.1",
  2970. "dependencies": {
  2971. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "3.1.10",
  2972. "Microsoft.Extensions.Identity.Stores": "3.1.10",
  2973. "WebAPIBase.Utils": "1.0.0",
  2974. "sqlSugarCore": "5.0.0.18"
  2975. },
  2976. "compile": {
  2977. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  2978. },
  2979. "runtime": {
  2980. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  2981. }
  2982. },
  2983. "WebAPIBase.Utils/1.0.0": {
  2984. "type": "project",
  2985. "framework": ".NETStandard,Version=v2.0",
  2986. "dependencies": {
  2987. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  2988. "Microsoft.Extensions.Caching.Memory": "3.1.2",
  2989. "Microsoft.Extensions.Configuration": "3.1.10",
  2990. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  2991. "Microsoft.Extensions.Configuration.Json": "3.1.2",
  2992. "Microsoft.NETCore.Runtime.CoreCLR": "2.0.8",
  2993. "NLog": "4.7.5",
  2994. "NLog.Web.AspNetCore": "4.9.3",
  2995. "Quartz": "3.2.3",
  2996. "System.Drawing.Common": "4.7.0",
  2997. "System.IdentityModel.Tokens.Jwt": "5.6.0",
  2998. "System.Management": "5.0.0"
  2999. },
  3000. "compile": {
  3001. "bin/placeholder/WebAPIBase.Utils.dll": {}
  3002. },
  3003. "runtime": {
  3004. "bin/placeholder/WebAPIBase.Utils.dll": {}
  3005. }
  3006. }
  3007. }
  3008. },
  3009. "libraries": {
  3010. "coverlet.collector/1.2.0": {
  3011. "sha512": "ZB+EGXsVBIn8cew7D3S2c+rgIlokKv1dSwsXEoiFQaNXF/BSxp9Rlfz/jV1ehSWH5XpLitfRxFNW3ok7uPDOXA==",
  3012. "type": "package",
  3013. "path": "coverlet.collector/1.2.0",
  3014. "files": [
  3015. ".nupkg.metadata",
  3016. ".signature.p7s",
  3017. "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll",
  3018. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3019. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll",
  3020. "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll",
  3021. "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3022. "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3023. "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3024. "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3025. "build/netstandard1.0/Mono.Cecil.Mdb.dll",
  3026. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  3027. "build/netstandard1.0/Mono.Cecil.Rocks.dll",
  3028. "build/netstandard1.0/Mono.Cecil.dll",
  3029. "build/netstandard1.0/Newtonsoft.Json.dll",
  3030. "build/netstandard1.0/System.Xml.XPath.XmlDocument.dll",
  3031. "build/netstandard1.0/coverlet.collector.deps.json",
  3032. "build/netstandard1.0/coverlet.collector.dll",
  3033. "build/netstandard1.0/coverlet.collector.pdb",
  3034. "build/netstandard1.0/coverlet.collector.targets",
  3035. "build/netstandard1.0/coverlet.core.dll",
  3036. "build/netstandard1.0/coverlet.core.pdb",
  3037. "coverlet.collector.1.2.0.nupkg.sha512",
  3038. "coverlet.collector.nuspec"
  3039. ]
  3040. },
  3041. "Google.Protobuf/3.5.1": {
  3042. "sha512": "f2k1VNaB9bfvEsvARzzEL1TZiIpL33KKK3JMH7UANlPlJVptuvsk4qpBZEnz0pORWZOdUHlVwMQuUzFqjJYCxA==",
  3043. "type": "package",
  3044. "path": "google.protobuf/3.5.1",
  3045. "files": [
  3046. ".nupkg.metadata",
  3047. ".signature.p7s",
  3048. "google.protobuf.3.5.1.nupkg.sha512",
  3049. "google.protobuf.nuspec",
  3050. "lib/net45/Google.Protobuf.dll",
  3051. "lib/net45/Google.Protobuf.xml",
  3052. "lib/netstandard1.0/Google.Protobuf.dll",
  3053. "lib/netstandard1.0/Google.Protobuf.xml"
  3054. ]
  3055. },
  3056. "iTextSharp.LGPLv2.Core/1.7.0": {
  3057. "sha512": "eN/ivAHNjPFCBle/IRmU0om47ywhX2/oumEUsRwv50FSsTCcty87BXjzn6fP2S2+yJGc6gaEQ9YFaYU7Loybkg==",
  3058. "type": "package",
  3059. "path": "itextsharp.lgplv2.core/1.7.0",
  3060. "files": [
  3061. ".nupkg.metadata",
  3062. ".signature.p7s",
  3063. "itextsharp.lgplv2.core.1.7.0.nupkg.sha512",
  3064. "itextsharp.lgplv2.core.nuspec",
  3065. "lib/net40/iTextSharp.LGPLv2.Core.dll",
  3066. "lib/net40/iTextSharp.LGPLv2.Core.xml",
  3067. "lib/netstandard1.3/iTextSharp.LGPLv2.Core.dll",
  3068. "lib/netstandard1.3/iTextSharp.LGPLv2.Core.xml",
  3069. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll",
  3070. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.xml"
  3071. ]
  3072. },
  3073. "Microsoft.AspNetCore.Cryptography.Internal/3.1.10": {
  3074. "sha512": "s5jFewA59+K/MXnib5eC/WVCDyL4EvSVtBzvXmAlTcZ9iBqqw+4oyFWP5hHy2NZuynjvKDFsokR9zEDrdEwLYA==",
  3075. "type": "package",
  3076. "path": "microsoft.aspnetcore.cryptography.internal/3.1.10",
  3077. "files": [
  3078. ".nupkg.metadata",
  3079. ".signature.p7s",
  3080. "Icon.png",
  3081. "THIRD-PARTY-NOTICES.TXT",
  3082. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3083. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3084. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3085. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3086. "microsoft.aspnetcore.cryptography.internal.3.1.10.nupkg.sha512",
  3087. "microsoft.aspnetcore.cryptography.internal.nuspec"
  3088. ]
  3089. },
  3090. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.10": {
  3091. "sha512": "yXwwlRVybA/IlIl+djCnJAKIoQmG6AXN8K7/yx2csFkt+5SLD03/ziUhyfiH6yJ80LLlHsWxIYedug0s/UDh9g==",
  3092. "type": "package",
  3093. "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.10",
  3094. "files": [
  3095. ".nupkg.metadata",
  3096. ".signature.p7s",
  3097. "Icon.png",
  3098. "THIRD-PARTY-NOTICES.TXT",
  3099. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3100. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3101. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3102. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3103. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3104. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3105. "microsoft.aspnetcore.cryptography.keyderivation.3.1.10.nupkg.sha512",
  3106. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  3107. ]
  3108. },
  3109. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  3110. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  3111. "type": "package",
  3112. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  3113. "files": [
  3114. ".nupkg.metadata",
  3115. ".signature.p7s",
  3116. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  3117. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  3118. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  3119. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  3120. ]
  3121. },
  3122. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  3123. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  3124. "type": "package",
  3125. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  3126. "files": [
  3127. ".nupkg.metadata",
  3128. ".signature.p7s",
  3129. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  3130. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  3131. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  3132. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  3133. ]
  3134. },
  3135. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3136. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3137. "type": "package",
  3138. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3139. "files": [
  3140. ".nupkg.metadata",
  3141. ".signature.p7s",
  3142. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3143. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3144. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3145. "microsoft.aspnetcore.http.abstractions.nuspec"
  3146. ]
  3147. },
  3148. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  3149. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  3150. "type": "package",
  3151. "path": "microsoft.aspnetcore.http.features/2.2.0",
  3152. "files": [
  3153. ".nupkg.metadata",
  3154. ".signature.p7s",
  3155. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3156. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3157. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  3158. "microsoft.aspnetcore.http.features.nuspec"
  3159. ]
  3160. },
  3161. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/3.1.10": {
  3162. "sha512": "5zh2py185WLLC5qJRgtI44FKi95LwxxxoTTEf1S230MJZix0JygPzYzXRfnkBej0pR6c7oqwDNwGmS7JR7KNKw==",
  3163. "type": "package",
  3164. "path": "microsoft.aspnetcore.identity.entityframeworkcore/3.1.10",
  3165. "files": [
  3166. ".nupkg.metadata",
  3167. ".signature.p7s",
  3168. "Icon.png",
  3169. "THIRD-PARTY-NOTICES.TXT",
  3170. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3171. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3172. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3173. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3174. "microsoft.aspnetcore.identity.entityframeworkcore.3.1.10.nupkg.sha512",
  3175. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  3176. ]
  3177. },
  3178. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  3179. "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
  3180. "type": "package",
  3181. "path": "microsoft.bcl.asyncinterfaces/1.1.1",
  3182. "files": [
  3183. ".nupkg.metadata",
  3184. ".signature.p7s",
  3185. "Icon.png",
  3186. "LICENSE.TXT",
  3187. "THIRD-PARTY-NOTICES.TXT",
  3188. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  3189. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  3190. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3191. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  3192. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3193. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  3194. "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
  3195. "microsoft.bcl.asyncinterfaces.nuspec",
  3196. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  3197. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3198. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3199. "useSharedDesignerContext.txt",
  3200. "version.txt"
  3201. ]
  3202. },
  3203. "Microsoft.Bcl.HashCode/1.1.0": {
  3204. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  3205. "type": "package",
  3206. "path": "microsoft.bcl.hashcode/1.1.0",
  3207. "files": [
  3208. ".nupkg.metadata",
  3209. ".signature.p7s",
  3210. "LICENSE.TXT",
  3211. "THIRD-PARTY-NOTICES.TXT",
  3212. "lib/net461/Microsoft.Bcl.HashCode.dll",
  3213. "lib/net461/Microsoft.Bcl.HashCode.xml",
  3214. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3215. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  3216. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3217. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  3218. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3219. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  3220. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  3221. "microsoft.bcl.hashcode.nuspec",
  3222. "ref/net461/Microsoft.Bcl.HashCode.dll",
  3223. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3224. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3225. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3226. "useSharedDesignerContext.txt",
  3227. "version.txt"
  3228. ]
  3229. },
  3230. "Microsoft.CodeCoverage/16.5.0": {
  3231. "sha512": "PM5YLtyN45EyUGePJpaNogndlaQPrMgQQXHKMhMESC6KfSVvt+j7+dxBi8NYC6X6dZVysf7ngwhSW3wwvPJRSQ==",
  3232. "type": "package",
  3233. "path": "microsoft.codecoverage/16.5.0",
  3234. "files": [
  3235. ".nupkg.metadata",
  3236. ".signature.p7s",
  3237. "build/netstandard1.0/CodeCoverage/CodeCoverage.config",
  3238. "build/netstandard1.0/CodeCoverage/CodeCoverage.exe",
  3239. "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll",
  3240. "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll",
  3241. "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll",
  3242. "build/netstandard1.0/CodeCoverage/covrun32.dll",
  3243. "build/netstandard1.0/CodeCoverage/msdia140.dll",
  3244. "build/netstandard1.0/Microsoft.CodeCoverage.props",
  3245. "build/netstandard1.0/Microsoft.CodeCoverage.targets",
  3246. "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll",
  3247. "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3248. "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3249. "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3250. "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3251. "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3252. "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3253. "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3254. "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3255. "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3256. "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3257. "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3258. "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3259. "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3260. "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3261. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3262. "microsoft.codecoverage.16.5.0.nupkg.sha512",
  3263. "microsoft.codecoverage.nuspec"
  3264. ]
  3265. },
  3266. "Microsoft.CSharp/4.3.0": {
  3267. "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
  3268. "type": "package",
  3269. "path": "microsoft.csharp/4.3.0",
  3270. "files": [
  3271. ".nupkg.metadata",
  3272. ".signature.p7s",
  3273. "ThirdPartyNotices.txt",
  3274. "dotnet_library_license.txt",
  3275. "lib/MonoAndroid10/_._",
  3276. "lib/MonoTouch10/_._",
  3277. "lib/net45/_._",
  3278. "lib/netcore50/Microsoft.CSharp.dll",
  3279. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3280. "lib/portable-net45+win8+wp8+wpa81/_._",
  3281. "lib/win8/_._",
  3282. "lib/wp80/_._",
  3283. "lib/wpa81/_._",
  3284. "lib/xamarinios10/_._",
  3285. "lib/xamarinmac20/_._",
  3286. "lib/xamarintvos10/_._",
  3287. "lib/xamarinwatchos10/_._",
  3288. "microsoft.csharp.4.3.0.nupkg.sha512",
  3289. "microsoft.csharp.nuspec",
  3290. "ref/MonoAndroid10/_._",
  3291. "ref/MonoTouch10/_._",
  3292. "ref/net45/_._",
  3293. "ref/netcore50/Microsoft.CSharp.dll",
  3294. "ref/netcore50/Microsoft.CSharp.xml",
  3295. "ref/netcore50/de/Microsoft.CSharp.xml",
  3296. "ref/netcore50/es/Microsoft.CSharp.xml",
  3297. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3298. "ref/netcore50/it/Microsoft.CSharp.xml",
  3299. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3300. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3301. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3302. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3303. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3304. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3305. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3306. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3307. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3308. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3309. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3310. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3311. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3312. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3313. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3314. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3315. "ref/portable-net45+win8+wp8+wpa81/_._",
  3316. "ref/win8/_._",
  3317. "ref/wp80/_._",
  3318. "ref/wpa81/_._",
  3319. "ref/xamarinios10/_._",
  3320. "ref/xamarinmac20/_._",
  3321. "ref/xamarintvos10/_._",
  3322. "ref/xamarinwatchos10/_._"
  3323. ]
  3324. },
  3325. "Microsoft.Data.Sqlite/2.2.4": {
  3326. "sha512": "QgYDdW07QZUyZPwisIU3Db62FnK6Yfcuru7KAsHusLGstJ0kBIXFnG185PcWmm2ba4AN0ab1iwrhXZr/9Yxj0w==",
  3327. "type": "package",
  3328. "path": "microsoft.data.sqlite/2.2.4",
  3329. "files": [
  3330. ".nupkg.metadata",
  3331. ".signature.p7s",
  3332. "lib/netstandard2.0/_._",
  3333. "microsoft.data.sqlite.2.2.4.nupkg.sha512",
  3334. "microsoft.data.sqlite.nuspec"
  3335. ]
  3336. },
  3337. "Microsoft.Data.Sqlite.Core/2.2.4": {
  3338. "sha512": "69DJj8bUJpXPfWpmJ/Sh165GWjLjlL516l0GnJDImabfR+leXb61HaQF97THWvyx5yY7MvpO94QW5nyiXMVOAA==",
  3339. "type": "package",
  3340. "path": "microsoft.data.sqlite.core/2.2.4",
  3341. "files": [
  3342. ".nupkg.metadata",
  3343. ".signature.p7s",
  3344. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  3345. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  3346. "microsoft.data.sqlite.core.2.2.4.nupkg.sha512",
  3347. "microsoft.data.sqlite.core.nuspec"
  3348. ]
  3349. },
  3350. "Microsoft.EntityFrameworkCore/3.1.10": {
  3351. "sha512": "0IhJl9mVJ4IhHobKvOo2iLB0xfxX2eYaSz4VZX+bMSm8IyZA1tOmyaOtg7oSzeUAe6eqpKVQLTgMFzk2AqCcaA==",
  3352. "type": "package",
  3353. "path": "microsoft.entityframeworkcore/3.1.10",
  3354. "files": [
  3355. ".nupkg.metadata",
  3356. ".signature.p7s",
  3357. "Icon.png",
  3358. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  3359. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  3360. "microsoft.entityframeworkcore.3.1.10.nupkg.sha512",
  3361. "microsoft.entityframeworkcore.nuspec"
  3362. ]
  3363. },
  3364. "Microsoft.EntityFrameworkCore.Abstractions/3.1.10": {
  3365. "sha512": "B1kUQ7o6+4Ly2neo86RJCpTYzTPpW1xzpHyRaTmGQS/p7umZOGoBJay+i/YDLmZkUPI4XULGnu5KJKipA0awUw==",
  3366. "type": "package",
  3367. "path": "microsoft.entityframeworkcore.abstractions/3.1.10",
  3368. "files": [
  3369. ".nupkg.metadata",
  3370. ".signature.p7s",
  3371. "Icon.png",
  3372. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3373. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3374. "microsoft.entityframeworkcore.abstractions.3.1.10.nupkg.sha512",
  3375. "microsoft.entityframeworkcore.abstractions.nuspec"
  3376. ]
  3377. },
  3378. "Microsoft.EntityFrameworkCore.Analyzers/3.1.10": {
  3379. "sha512": "reHrrF8i/Wao7l2PVXJ+JeZzEC4OkbcbfnQs8vtiT+SQ5P4MdQj3WzMkupjebaJWhIJZRc6qPT4BD9BUWQU4wQ==",
  3380. "type": "package",
  3381. "path": "microsoft.entityframeworkcore.analyzers/3.1.10",
  3382. "files": [
  3383. ".nupkg.metadata",
  3384. ".signature.p7s",
  3385. "Icon.png",
  3386. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3387. "lib/netstandard2.0/_._",
  3388. "microsoft.entityframeworkcore.analyzers.3.1.10.nupkg.sha512",
  3389. "microsoft.entityframeworkcore.analyzers.nuspec"
  3390. ]
  3391. },
  3392. "Microsoft.EntityFrameworkCore.Relational/3.1.10": {
  3393. "sha512": "JpDMpGDx+wPvFSbw9vu13nfZESdu2SPFhLI1bPZwqDU0ZV40TmUOUN91hHjWhgh5qRX1jQTWMuvK3EmlpywgAw==",
  3394. "type": "package",
  3395. "path": "microsoft.entityframeworkcore.relational/3.1.10",
  3396. "files": [
  3397. ".nupkg.metadata",
  3398. ".signature.p7s",
  3399. "Icon.png",
  3400. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  3401. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  3402. "microsoft.entityframeworkcore.relational.3.1.10.nupkg.sha512",
  3403. "microsoft.entityframeworkcore.relational.nuspec"
  3404. ]
  3405. },
  3406. "Microsoft.Extensions.Caching.Abstractions/3.1.10": {
  3407. "sha512": "xdl25cxDgwVxF9ckD9vJ5AdjzRE1vTGLYj9kZf6aL317ZneUijkxd/nSuzN1gEuO74dwG/Yfr1zfs636D6YZsA==",
  3408. "type": "package",
  3409. "path": "microsoft.extensions.caching.abstractions/3.1.10",
  3410. "files": [
  3411. ".nupkg.metadata",
  3412. ".signature.p7s",
  3413. "Icon.png",
  3414. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  3415. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  3416. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3417. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3418. "microsoft.extensions.caching.abstractions.3.1.10.nupkg.sha512",
  3419. "microsoft.extensions.caching.abstractions.nuspec"
  3420. ]
  3421. },
  3422. "Microsoft.Extensions.Caching.Memory/3.1.10": {
  3423. "sha512": "pR6mRkJx67/itEnEpnBiiATeH/P6RnhqvriD6RdQsXepO+uisfUrd149CTGPc1G5J0Qf9bwSCJkb/MYkuQ6mqw==",
  3424. "type": "package",
  3425. "path": "microsoft.extensions.caching.memory/3.1.10",
  3426. "files": [
  3427. ".nupkg.metadata",
  3428. ".signature.p7s",
  3429. "Icon.png",
  3430. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  3431. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  3432. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3433. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3434. "microsoft.extensions.caching.memory.3.1.10.nupkg.sha512",
  3435. "microsoft.extensions.caching.memory.nuspec"
  3436. ]
  3437. },
  3438. "Microsoft.Extensions.Configuration/3.1.10": {
  3439. "sha512": "HHBhCP3wAJe7UIXjim0wFXty0WG/rZAP3aZyy03uuaxiOOPHJjbUdY6K9qkfQuP+hsRzfiT+np5k4rFmcSo3og==",
  3440. "type": "package",
  3441. "path": "microsoft.extensions.configuration/3.1.10",
  3442. "files": [
  3443. ".nupkg.metadata",
  3444. ".signature.p7s",
  3445. "Icon.png",
  3446. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  3447. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  3448. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3449. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3450. "microsoft.extensions.configuration.3.1.10.nupkg.sha512",
  3451. "microsoft.extensions.configuration.nuspec"
  3452. ]
  3453. },
  3454. "Microsoft.Extensions.Configuration.Abstractions/3.1.10": {
  3455. "sha512": "UEfngyXt8XYhmekUza9JsWlA37pNOtZAjcK5EEKQrHo2LDKJmZVmcyAUFlkzCcf97OSr+w/MiDLifDDNQk9agw==",
  3456. "type": "package",
  3457. "path": "microsoft.extensions.configuration.abstractions/3.1.10",
  3458. "files": [
  3459. ".nupkg.metadata",
  3460. ".signature.p7s",
  3461. "Icon.png",
  3462. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  3463. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  3464. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3465. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3466. "microsoft.extensions.configuration.abstractions.3.1.10.nupkg.sha512",
  3467. "microsoft.extensions.configuration.abstractions.nuspec"
  3468. ]
  3469. },
  3470. "Microsoft.Extensions.Configuration.Binder/3.1.10": {
  3471. "sha512": "B9nQBk0GZVkOgSB1oB9V/7kvxhBvLCqm2x4m8MIoSxrd9yga8MVq2HWqnai8zZdH1WL6OlOG5mCVrwgAVwNNJg==",
  3472. "type": "package",
  3473. "path": "microsoft.extensions.configuration.binder/3.1.10",
  3474. "files": [
  3475. ".nupkg.metadata",
  3476. ".signature.p7s",
  3477. "Icon.png",
  3478. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  3479. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  3480. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3481. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3482. "microsoft.extensions.configuration.binder.3.1.10.nupkg.sha512",
  3483. "microsoft.extensions.configuration.binder.nuspec"
  3484. ]
  3485. },
  3486. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  3487. "sha512": "itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
  3488. "type": "package",
  3489. "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
  3490. "files": [
  3491. ".nupkg.metadata",
  3492. ".signature.p7s",
  3493. "Icon.png",
  3494. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3495. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3496. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3497. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3498. "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
  3499. "microsoft.extensions.configuration.fileextensions.nuspec"
  3500. ]
  3501. },
  3502. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  3503. "sha512": "AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
  3504. "type": "package",
  3505. "path": "microsoft.extensions.configuration.json/3.1.2",
  3506. "files": [
  3507. ".nupkg.metadata",
  3508. ".signature.p7s",
  3509. "Icon.png",
  3510. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll",
  3511. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml",
  3512. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3513. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3514. "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
  3515. "microsoft.extensions.configuration.json.nuspec"
  3516. ]
  3517. },
  3518. "Microsoft.Extensions.DependencyInjection/3.1.10": {
  3519. "sha512": "fla8hKhQmld2s/7arhUxlu3dzZLBFJLg4BQiQZdqKND4MlmnMU9jhoxY4MMlSYl6MtxumtwASHMJnuV9f96IQQ==",
  3520. "type": "package",
  3521. "path": "microsoft.extensions.dependencyinjection/3.1.10",
  3522. "files": [
  3523. ".nupkg.metadata",
  3524. ".signature.p7s",
  3525. "Icon.png",
  3526. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3527. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3528. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
  3529. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
  3530. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3531. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3532. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3533. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3534. "microsoft.extensions.dependencyinjection.3.1.10.nupkg.sha512",
  3535. "microsoft.extensions.dependencyinjection.nuspec"
  3536. ]
  3537. },
  3538. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.10": {
  3539. "sha512": "bhjtAN7Ix5WOAr47RK16Lr1l2eizSBMCYQSavkooZyf6Xdf8XWAYGWsGsPqUFOeeRxzhpRho051rXaLn5wskVw==",
  3540. "type": "package",
  3541. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.10",
  3542. "files": [
  3543. ".nupkg.metadata",
  3544. ".signature.p7s",
  3545. "Icon.png",
  3546. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3547. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3548. "microsoft.extensions.dependencyinjection.abstractions.3.1.10.nupkg.sha512",
  3549. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  3550. ]
  3551. },
  3552. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  3553. "sha512": "O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
  3554. "type": "package",
  3555. "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
  3556. "files": [
  3557. ".nupkg.metadata",
  3558. ".signature.p7s",
  3559. "Icon.png",
  3560. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3561. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3562. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3563. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3564. "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
  3565. "microsoft.extensions.fileproviders.abstractions.nuspec"
  3566. ]
  3567. },
  3568. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  3569. "sha512": "lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
  3570. "type": "package",
  3571. "path": "microsoft.extensions.fileproviders.physical/3.1.2",
  3572. "files": [
  3573. ".nupkg.metadata",
  3574. ".signature.p7s",
  3575. "Icon.png",
  3576. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll",
  3577. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.xml",
  3578. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3579. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3580. "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
  3581. "microsoft.extensions.fileproviders.physical.nuspec"
  3582. ]
  3583. },
  3584. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  3585. "sha512": "/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
  3586. "type": "package",
  3587. "path": "microsoft.extensions.filesystemglobbing/3.1.2",
  3588. "files": [
  3589. ".nupkg.metadata",
  3590. ".signature.p7s",
  3591. "Icon.png",
  3592. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3593. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3594. "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
  3595. "microsoft.extensions.filesystemglobbing.nuspec"
  3596. ]
  3597. },
  3598. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  3599. "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  3600. "type": "package",
  3601. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  3602. "files": [
  3603. ".nupkg.metadata",
  3604. ".signature.p7s",
  3605. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3606. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3607. "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
  3608. "microsoft.extensions.hosting.abstractions.nuspec"
  3609. ]
  3610. },
  3611. "Microsoft.Extensions.Identity.Core/3.1.10": {
  3612. "sha512": "AuVQQAi7DtsrrHk6aO9BnMQCPGfI49AjeXOALTdbrJrPaLn35De9pAgobKftaUILwM4uzQdYEK012yqz2NH46w==",
  3613. "type": "package",
  3614. "path": "microsoft.extensions.identity.core/3.1.10",
  3615. "files": [
  3616. ".nupkg.metadata",
  3617. ".signature.p7s",
  3618. "Icon.png",
  3619. "THIRD-PARTY-NOTICES.TXT",
  3620. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll",
  3621. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.xml",
  3622. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  3623. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  3624. "microsoft.extensions.identity.core.3.1.10.nupkg.sha512",
  3625. "microsoft.extensions.identity.core.nuspec"
  3626. ]
  3627. },
  3628. "Microsoft.Extensions.Identity.Stores/3.1.10": {
  3629. "sha512": "USjhGGw7PivOcVVqNGPd2lg1S1J2jvrRePlgxNcPt4gSbTtGuaRBdd78dvpHoR1GQnJ93YqoyGH3X3FsHeDL/w==",
  3630. "type": "package",
  3631. "path": "microsoft.extensions.identity.stores/3.1.10",
  3632. "files": [
  3633. ".nupkg.metadata",
  3634. ".signature.p7s",
  3635. "Icon.png",
  3636. "THIRD-PARTY-NOTICES.TXT",
  3637. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll",
  3638. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.xml",
  3639. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  3640. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  3641. "microsoft.extensions.identity.stores.3.1.10.nupkg.sha512",
  3642. "microsoft.extensions.identity.stores.nuspec"
  3643. ]
  3644. },
  3645. "Microsoft.Extensions.Logging/3.1.10": {
  3646. "sha512": "GjP+4cUFdsNk/Px6BlJ7p7x7ibpawcaAV4tfrRJTv2s6Nb7yz5OEKA0kbNl1ZXKa6uMQzbNqc5+B/tJsqzgIXg==",
  3647. "type": "package",
  3648. "path": "microsoft.extensions.logging/3.1.10",
  3649. "files": [
  3650. ".nupkg.metadata",
  3651. ".signature.p7s",
  3652. "Icon.png",
  3653. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
  3654. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
  3655. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3656. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3657. "microsoft.extensions.logging.3.1.10.nupkg.sha512",
  3658. "microsoft.extensions.logging.nuspec"
  3659. ]
  3660. },
  3661. "Microsoft.Extensions.Logging.Abstractions/3.1.10": {
  3662. "sha512": "bKHbgzbGsPZbEaExRaJqBz3WQ1GfhMttM23e1nivLJ8HbA3Ad526mW2G2K350q3Dc3HG83I5W8uSZWG4Rv4IpA==",
  3663. "type": "package",
  3664. "path": "microsoft.extensions.logging.abstractions/3.1.10",
  3665. "files": [
  3666. ".nupkg.metadata",
  3667. ".signature.p7s",
  3668. "Icon.png",
  3669. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3670. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3671. "microsoft.extensions.logging.abstractions.3.1.10.nupkg.sha512",
  3672. "microsoft.extensions.logging.abstractions.nuspec"
  3673. ]
  3674. },
  3675. "Microsoft.Extensions.Options/3.1.10": {
  3676. "sha512": "CusdV4eIv+CGb9Fy6a+JcRqpcVJREmvFI8eHk3nQ76VLtEAIJpKQY5r5sRSs5w6NevNi2ukdnKleH0YCPudFZQ==",
  3677. "type": "package",
  3678. "path": "microsoft.extensions.options/3.1.10",
  3679. "files": [
  3680. ".nupkg.metadata",
  3681. ".signature.p7s",
  3682. "Icon.png",
  3683. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  3684. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  3685. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3686. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3687. "microsoft.extensions.options.3.1.10.nupkg.sha512",
  3688. "microsoft.extensions.options.nuspec"
  3689. ]
  3690. },
  3691. "Microsoft.Extensions.Primitives/3.1.10": {
  3692. "sha512": "YDuQS3BeaVY6PCWUm5f6qFTYsxhwntQrcfwUzbohU/0rZBL5XI+UsD5SgggHKHX+rFY4laaT428q608Sw/mDsw==",
  3693. "type": "package",
  3694. "path": "microsoft.extensions.primitives/3.1.10",
  3695. "files": [
  3696. ".nupkg.metadata",
  3697. ".signature.p7s",
  3698. "Icon.png",
  3699. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  3700. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  3701. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3702. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3703. "microsoft.extensions.primitives.3.1.10.nupkg.sha512",
  3704. "microsoft.extensions.primitives.nuspec"
  3705. ]
  3706. },
  3707. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  3708. "sha512": "0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  3709. "type": "package",
  3710. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  3711. "files": [
  3712. ".nupkg.metadata",
  3713. ".signature.p7s",
  3714. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3715. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3716. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  3717. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  3718. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3719. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3720. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  3721. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  3722. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3723. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3724. "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512",
  3725. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3726. ]
  3727. },
  3728. "Microsoft.IdentityModel.Logging/5.6.0": {
  3729. "sha512": "zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  3730. "type": "package",
  3731. "path": "microsoft.identitymodel.logging/5.6.0",
  3732. "files": [
  3733. ".nupkg.metadata",
  3734. ".signature.p7s",
  3735. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3736. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3737. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  3738. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  3739. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3740. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3741. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  3742. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  3743. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3744. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3745. "microsoft.identitymodel.logging.5.6.0.nupkg.sha512",
  3746. "microsoft.identitymodel.logging.nuspec"
  3747. ]
  3748. },
  3749. "Microsoft.IdentityModel.Tokens/5.6.0": {
  3750. "sha512": "C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  3751. "type": "package",
  3752. "path": "microsoft.identitymodel.tokens/5.6.0",
  3753. "files": [
  3754. ".nupkg.metadata",
  3755. ".signature.p7s",
  3756. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3757. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3758. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  3759. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  3760. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3761. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3762. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  3763. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  3764. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3765. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3766. "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512",
  3767. "microsoft.identitymodel.tokens.nuspec"
  3768. ]
  3769. },
  3770. "Microsoft.NET.Test.Sdk/16.5.0": {
  3771. "sha512": "yHZOhVSPuGqgHi+KhHiAZqNY08avkQraXKvgKgDU8c/ztmGzw7gmukkv49EaTq6T3xmp4XroWk3gAlbJHMxl8w==",
  3772. "type": "package",
  3773. "path": "microsoft.net.test.sdk/16.5.0",
  3774. "files": [
  3775. ".nupkg.metadata",
  3776. ".signature.p7s",
  3777. "build/net40/Microsoft.NET.Test.Sdk.props",
  3778. "build/net40/Microsoft.NET.Test.Sdk.targets",
  3779. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs",
  3780. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs",
  3781. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb",
  3782. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props",
  3783. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets",
  3784. "build/uap10.0/Microsoft.NET.Test.Sdk.props",
  3785. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
  3786. "microsoft.net.test.sdk.16.5.0.nupkg.sha512",
  3787. "microsoft.net.test.sdk.nuspec"
  3788. ]
  3789. },
  3790. "Microsoft.NETCore.Jit/2.0.8": {
  3791. "sha512": "webbzOhpGlR6qnCeb4m2OWHixBK0IgoyISVIhPVlLH8bY9yZtjnK4XQKkEkh/a9l5K26ddus7l+QpNh3EtnyYQ==",
  3792. "type": "package",
  3793. "path": "microsoft.netcore.jit/2.0.8",
  3794. "files": [
  3795. ".nupkg.metadata",
  3796. ".signature.p7s",
  3797. "LICENSE.TXT",
  3798. "THIRD-PARTY-NOTICES.TXT",
  3799. "microsoft.netcore.jit.2.0.8.nupkg.sha512",
  3800. "microsoft.netcore.jit.nuspec",
  3801. "runtime.json",
  3802. "version.txt"
  3803. ]
  3804. },
  3805. "Microsoft.NETCore.Platforms/5.0.0": {
  3806. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  3807. "type": "package",
  3808. "path": "microsoft.netcore.platforms/5.0.0",
  3809. "files": [
  3810. ".nupkg.metadata",
  3811. ".signature.p7s",
  3812. "Icon.png",
  3813. "LICENSE.TXT",
  3814. "THIRD-PARTY-NOTICES.TXT",
  3815. "lib/netstandard1.0/_._",
  3816. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  3817. "microsoft.netcore.platforms.nuspec",
  3818. "runtime.json",
  3819. "useSharedDesignerContext.txt",
  3820. "version.txt"
  3821. ]
  3822. },
  3823. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  3824. "sha512": "F0t5KmilC9zaZY3JZYMfWSo+r+5PeZCXLP8uFToHTKL5kL2pTu4YPyxgweYfzTh4tb7OfZL32xnKdkzbWBP0aw==",
  3825. "type": "package",
  3826. "path": "microsoft.netcore.runtime.coreclr/2.0.8",
  3827. "files": [
  3828. ".nupkg.metadata",
  3829. ".signature.p7s",
  3830. "LICENSE.TXT",
  3831. "THIRD-PARTY-NOTICES.TXT",
  3832. "microsoft.netcore.runtime.coreclr.2.0.8.nupkg.sha512",
  3833. "microsoft.netcore.runtime.coreclr.nuspec",
  3834. "ref/netstandard1.0/_._",
  3835. "runtime.json",
  3836. "version.txt"
  3837. ]
  3838. },
  3839. "Microsoft.NETCore.Targets/1.1.0": {
  3840. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3841. "type": "package",
  3842. "path": "microsoft.netcore.targets/1.1.0",
  3843. "files": [
  3844. ".nupkg.metadata",
  3845. ".signature.p7s",
  3846. "ThirdPartyNotices.txt",
  3847. "dotnet_library_license.txt",
  3848. "lib/netstandard1.0/_._",
  3849. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3850. "microsoft.netcore.targets.nuspec",
  3851. "runtime.json"
  3852. ]
  3853. },
  3854. "Microsoft.TestPlatform.ObjectModel/16.5.0": {
  3855. "sha512": "NnLFxmFBCAS6kye2JFszD5WKgj4Zve5KX/R0mhYwh6BVnSeybI2unRnjEPtLyY3CAVhwrY4bh/8LNFtslAcGZg==",
  3856. "type": "package",
  3857. "path": "microsoft.testplatform.objectmodel/16.5.0",
  3858. "files": [
  3859. ".nupkg.metadata",
  3860. ".signature.p7s",
  3861. "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll",
  3862. "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3863. "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3864. "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3865. "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3866. "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3867. "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3868. "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3869. "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3870. "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3871. "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3872. "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3873. "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3874. "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3875. "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3876. "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3877. "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3878. "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3879. "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3880. "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3881. "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3882. "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3883. "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3884. "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3885. "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3886. "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3887. "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3888. "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3889. "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3890. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3891. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3892. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3893. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3894. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3895. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3896. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3897. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3898. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3899. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3900. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3901. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3902. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3903. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3904. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3905. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3906. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3907. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3908. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3909. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3910. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3911. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3912. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3913. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3914. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3915. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3916. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3917. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3918. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3919. "microsoft.testplatform.objectmodel.16.5.0.nupkg.sha512",
  3920. "microsoft.testplatform.objectmodel.nuspec"
  3921. ]
  3922. },
  3923. "Microsoft.TestPlatform.TestHost/16.5.0": {
  3924. "sha512": "ytGymboQIvjNX5pLC0yp/Bz9sGDHqSnLQgBRtd4VrqOUgKmmcfxMYZ6p0TBZgAT1oijdC6xqUZ7rl8mbaaXTJw==",
  3925. "type": "package",
  3926. "path": "microsoft.testplatform.testhost/16.5.0",
  3927. "files": [
  3928. ".nupkg.metadata",
  3929. ".signature.p7s",
  3930. "ThirdPartyNotices.txt",
  3931. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props",
  3932. "build/netcoreapp2.1/x64/testhost.dll",
  3933. "build/netcoreapp2.1/x64/testhost.exe",
  3934. "build/netcoreapp2.1/x86/testhost.x86.dll",
  3935. "build/netcoreapp2.1/x86/testhost.x86.exe",
  3936. "build/uap10.0/Microsoft.TestPlatform.TestHost.props",
  3937. "build/uap10.0/Microsoft.TestPlatform.TestHost.targets",
  3938. "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3939. "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3940. "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3941. "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll",
  3942. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3943. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3944. "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3945. "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3946. "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3947. "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll",
  3948. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3949. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3950. "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3951. "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3952. "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3953. "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll",
  3954. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3955. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3956. "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3957. "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3958. "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3959. "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll",
  3960. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3961. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3962. "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3963. "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3964. "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3965. "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll",
  3966. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3967. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3968. "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3969. "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3970. "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3971. "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll",
  3972. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3973. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3974. "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3975. "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3976. "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3977. "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll",
  3978. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3979. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3980. "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3981. "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3982. "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3983. "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll",
  3984. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3985. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3986. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3987. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3988. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3989. "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll",
  3990. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3991. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3992. "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3993. "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3994. "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3995. "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll",
  3996. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3997. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3998. "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3999. "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4000. "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4001. "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll",
  4002. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4003. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4004. "build/uap10.0/x64/msdia140.dll",
  4005. "build/uap10.0/x86/msdia140.dll",
  4006. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4007. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4008. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4009. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll",
  4010. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4011. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4012. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4013. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  4014. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4015. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll",
  4016. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4017. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  4018. "lib/net45/_._",
  4019. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll",
  4020. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll",
  4021. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll",
  4022. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll",
  4023. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4024. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4025. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4026. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4027. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4028. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4029. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4030. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4031. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4032. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4033. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4034. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4035. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4036. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4037. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4038. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4039. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4040. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4041. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4042. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4043. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4044. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4045. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4046. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4047. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4048. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4049. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4050. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4051. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4052. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4053. "lib/netcoreapp2.1/testhost.deps.json",
  4054. "lib/netcoreapp2.1/testhost.dll",
  4055. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4056. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4057. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4058. "lib/netcoreapp2.1/x64/msdia140.dll",
  4059. "lib/netcoreapp2.1/x86/msdia140.dll",
  4060. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4061. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4062. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4063. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4064. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4065. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4066. "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  4067. "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  4068. "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll",
  4069. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  4070. "lib/uap10.0/testhost.dll",
  4071. "microsoft.testplatform.testhost.16.5.0.nupkg.sha512",
  4072. "microsoft.testplatform.testhost.nuspec"
  4073. ]
  4074. },
  4075. "Microsoft.Win32.Primitives/4.3.0": {
  4076. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4077. "type": "package",
  4078. "path": "microsoft.win32.primitives/4.3.0",
  4079. "files": [
  4080. ".nupkg.metadata",
  4081. ".signature.p7s",
  4082. "ThirdPartyNotices.txt",
  4083. "dotnet_library_license.txt",
  4084. "lib/MonoAndroid10/_._",
  4085. "lib/MonoTouch10/_._",
  4086. "lib/net46/Microsoft.Win32.Primitives.dll",
  4087. "lib/xamarinios10/_._",
  4088. "lib/xamarinmac20/_._",
  4089. "lib/xamarintvos10/_._",
  4090. "lib/xamarinwatchos10/_._",
  4091. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4092. "microsoft.win32.primitives.nuspec",
  4093. "ref/MonoAndroid10/_._",
  4094. "ref/MonoTouch10/_._",
  4095. "ref/net46/Microsoft.Win32.Primitives.dll",
  4096. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4097. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4098. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4099. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4100. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4101. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4102. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4103. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4104. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4105. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4106. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4107. "ref/xamarinios10/_._",
  4108. "ref/xamarinmac20/_._",
  4109. "ref/xamarintvos10/_._",
  4110. "ref/xamarinwatchos10/_._"
  4111. ]
  4112. },
  4113. "Microsoft.Win32.Registry/5.0.0": {
  4114. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  4115. "type": "package",
  4116. "path": "microsoft.win32.registry/5.0.0",
  4117. "files": [
  4118. ".nupkg.metadata",
  4119. ".signature.p7s",
  4120. "Icon.png",
  4121. "LICENSE.TXT",
  4122. "THIRD-PARTY-NOTICES.TXT",
  4123. "lib/net46/Microsoft.Win32.Registry.dll",
  4124. "lib/net461/Microsoft.Win32.Registry.dll",
  4125. "lib/net461/Microsoft.Win32.Registry.xml",
  4126. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4127. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4128. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  4129. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  4130. "microsoft.win32.registry.nuspec",
  4131. "ref/net46/Microsoft.Win32.Registry.dll",
  4132. "ref/net461/Microsoft.Win32.Registry.dll",
  4133. "ref/net461/Microsoft.Win32.Registry.xml",
  4134. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  4135. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  4136. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  4137. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  4138. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  4139. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  4140. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  4141. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  4142. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  4143. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  4144. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  4145. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  4146. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  4147. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4148. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  4149. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  4150. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4151. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4152. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  4153. "useSharedDesignerContext.txt",
  4154. "version.txt"
  4155. ]
  4156. },
  4157. "Microsoft.Win32.SystemEvents/4.7.0": {
  4158. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  4159. "type": "package",
  4160. "path": "microsoft.win32.systemevents/4.7.0",
  4161. "files": [
  4162. ".nupkg.metadata",
  4163. ".signature.p7s",
  4164. "LICENSE.TXT",
  4165. "THIRD-PARTY-NOTICES.TXT",
  4166. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4167. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4168. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4169. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4170. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  4171. "microsoft.win32.systemevents.nuspec",
  4172. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4173. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4174. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  4175. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  4176. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4177. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4178. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4179. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4180. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4181. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4182. "useSharedDesignerContext.txt",
  4183. "version.txt"
  4184. ]
  4185. },
  4186. "MSTest.TestAdapter/2.1.0": {
  4187. "sha512": "roxWjDyH5S+XlibaHM96VswxYq4vfbB53Ys9k3Qr2F1uNH+VpgIbygNQvtZUxSoAaI7aNSMMKA/HBfZPg5QDCA==",
  4188. "type": "package",
  4189. "path": "mstest.testadapter/2.1.0",
  4190. "files": [
  4191. ".nupkg.metadata",
  4192. ".signature.p7s",
  4193. "LICENSE.txt",
  4194. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  4195. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll",
  4196. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4197. "build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4198. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4199. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4200. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4201. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4202. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4203. "build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4204. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4205. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4206. "build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4207. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4208. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4209. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4210. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4211. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4212. "build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4213. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4214. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4215. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4216. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4217. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4218. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4219. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4220. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4221. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4222. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4223. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4224. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4225. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4226. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4227. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4228. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4229. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4230. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4231. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4232. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4233. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4234. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4235. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4236. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4237. "build/net45/MSTest.TestAdapter.props",
  4238. "build/net45/MSTest.TestAdapter.targets",
  4239. "build/netcoreapp1.0/MSTest.TestAdapter.props",
  4240. "build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4241. "build/uap10.0/MSTest.TestAdapter.props",
  4242. "build/uap10.0/MSTest.TestAdapter.targets",
  4243. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4244. "mstest.testadapter.2.1.0.nupkg.sha512",
  4245. "mstest.testadapter.nuspec"
  4246. ]
  4247. },
  4248. "MSTest.TestFramework/2.1.0": {
  4249. "sha512": "FcW3sokxmi52e4gzBdv4bv59yQWJ0Lg2F579U82O4V9Pr7aNwTe7HxlHChzQqvcqgnH69XH8aDfMlfM3Y1wjAg==",
  4250. "type": "package",
  4251. "path": "mstest.testframework/2.1.0",
  4252. "files": [
  4253. ".nupkg.metadata",
  4254. ".signature.p7s",
  4255. "LICENSE.txt",
  4256. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4257. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4258. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4259. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4260. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4261. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4262. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4263. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4264. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4265. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4266. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4267. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4268. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4269. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4270. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4271. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4272. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4273. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4274. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4275. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4276. "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4277. "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4278. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4279. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4280. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4281. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4282. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4283. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4284. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4285. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4286. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4287. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4288. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4289. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4290. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4291. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4292. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4293. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4294. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4295. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4296. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4297. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4298. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4299. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4300. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4301. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4302. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4303. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4304. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4305. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4306. "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4307. "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4308. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4309. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4310. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4311. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4312. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4313. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4314. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4315. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4316. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4317. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4318. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4319. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4320. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4321. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4322. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4323. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4324. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4325. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4326. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4327. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4328. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4329. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4330. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4331. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4332. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4333. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4334. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4335. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4336. "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4337. "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4338. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4339. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4340. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4341. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4342. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4343. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4344. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4345. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4346. "mstest.testframework.2.1.0.nupkg.sha512",
  4347. "mstest.testframework.nuspec"
  4348. ]
  4349. },
  4350. "MySql.Data/8.0.15": {
  4351. "sha512": "PnjT2+TzlYUBF5cILcLMD1ux85P5iiRTF9PWx+Mel6/Z/rx+k39aWuA0mozfdgd+0TlJjGKKTyQZfKeYlRXTUA==",
  4352. "type": "package",
  4353. "path": "mysql.data/8.0.15",
  4354. "files": [
  4355. ".nupkg.metadata",
  4356. ".signature.p7s",
  4357. "lib/net452/MySql.Data.dll",
  4358. "lib/net452/MySql.Data.xml",
  4359. "lib/netcoreapp2.0/MySql.Data.dll",
  4360. "lib/netcoreapp2.0/MySql.Data.xml",
  4361. "lib/netstandard1.6/MySql.Data.dll",
  4362. "lib/netstandard1.6/MySql.Data.xml",
  4363. "lib/netstandard2.0/MySql.Data.dll",
  4364. "lib/netstandard2.0/MySql.Data.xml",
  4365. "mysql.data.8.0.15.nupkg.sha512",
  4366. "mysql.data.nuspec"
  4367. ]
  4368. },
  4369. "NETStandard.Library/1.6.1": {
  4370. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4371. "type": "package",
  4372. "path": "netstandard.library/1.6.1",
  4373. "files": [
  4374. ".nupkg.metadata",
  4375. ".signature.p7s",
  4376. "ThirdPartyNotices.txt",
  4377. "dotnet_library_license.txt",
  4378. "netstandard.library.1.6.1.nupkg.sha512",
  4379. "netstandard.library.nuspec"
  4380. ]
  4381. },
  4382. "Newtonsoft.Json/10.0.3": {
  4383. "sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
  4384. "type": "package",
  4385. "path": "newtonsoft.json/10.0.3",
  4386. "hasTools": true,
  4387. "files": [
  4388. ".nupkg.metadata",
  4389. ".signature.p7s",
  4390. "LICENSE.md",
  4391. "lib/net20/Newtonsoft.Json.dll",
  4392. "lib/net20/Newtonsoft.Json.xml",
  4393. "lib/net35/Newtonsoft.Json.dll",
  4394. "lib/net35/Newtonsoft.Json.xml",
  4395. "lib/net40/Newtonsoft.Json.dll",
  4396. "lib/net40/Newtonsoft.Json.xml",
  4397. "lib/net45/Newtonsoft.Json.dll",
  4398. "lib/net45/Newtonsoft.Json.xml",
  4399. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4400. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4401. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4402. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4403. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4404. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4405. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4406. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4407. "newtonsoft.json.10.0.3.nupkg.sha512",
  4408. "newtonsoft.json.nuspec",
  4409. "tools/install.ps1"
  4410. ]
  4411. },
  4412. "NLog/4.7.5": {
  4413. "sha512": "1Udzim+UwoAGk0vW6T2rEBXJq1COvqTuE+4NFj2zHytuX1WOu+1Yes1qABG1IJOA5V3OMilIufUU1Ha9T0rrzQ==",
  4414. "type": "package",
  4415. "path": "nlog/4.7.5",
  4416. "files": [
  4417. ".nupkg.metadata",
  4418. ".signature.p7s",
  4419. "lib/monoandroid44/NLog.dll",
  4420. "lib/monoandroid44/NLog.xml",
  4421. "lib/net35/NLog.dll",
  4422. "lib/net35/NLog.xml",
  4423. "lib/net40-client/NLog.dll",
  4424. "lib/net40-client/NLog.xml",
  4425. "lib/net45/NLog.dll",
  4426. "lib/net45/NLog.xml",
  4427. "lib/netstandard1.3/NLog.dll",
  4428. "lib/netstandard1.3/NLog.xml",
  4429. "lib/netstandard1.5/NLog.dll",
  4430. "lib/netstandard1.5/NLog.xml",
  4431. "lib/netstandard2.0/NLog.dll",
  4432. "lib/netstandard2.0/NLog.xml",
  4433. "lib/sl4/NLog.dll",
  4434. "lib/sl4/NLog.xml",
  4435. "lib/sl5/NLog.dll",
  4436. "lib/sl5/NLog.xml",
  4437. "lib/wp8/NLog.dll",
  4438. "lib/wp8/NLog.xml",
  4439. "lib/xamarinios10/NLog.dll",
  4440. "lib/xamarinios10/NLog.xml",
  4441. "nlog.4.7.5.nupkg.sha512",
  4442. "nlog.nuspec"
  4443. ]
  4444. },
  4445. "NLog.Extensions.Logging/1.6.4": {
  4446. "sha512": "ESOBd/bzxFacwpWTdTXaAaItJz/0Mzibyw65YB0uQT4pf2hXtwHp2626qEiVOmaacIQbJH5wGpBLNcVpbQLpKA==",
  4447. "type": "package",
  4448. "path": "nlog.extensions.logging/1.6.4",
  4449. "files": [
  4450. ".nupkg.metadata",
  4451. ".signature.p7s",
  4452. "lib/net451/NLog.Extensions.Logging.dll",
  4453. "lib/net451/NLog.Extensions.Logging.xml",
  4454. "lib/net461/NLog.Extensions.Logging.dll",
  4455. "lib/net461/NLog.Extensions.Logging.xml",
  4456. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
  4457. "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
  4458. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  4459. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  4460. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  4461. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  4462. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  4463. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  4464. "nlog.extensions.logging.1.6.4.nupkg.sha512",
  4465. "nlog.extensions.logging.nuspec"
  4466. ]
  4467. },
  4468. "NLog.Web.AspNetCore/4.9.3": {
  4469. "sha512": "v3TiGaFXENM3/fVCFJJaien7A44EcGwceySh5rFNkp5RC3PZvsbDjEXoOeqsDz8+i5iuYQDMjTFuD2JReNdj9g==",
  4470. "type": "package",
  4471. "path": "nlog.web.aspnetcore/4.9.3",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "lib/net451/NLog.Web.AspNetCore.dll",
  4476. "lib/net451/NLog.Web.AspNetCore.xml",
  4477. "lib/net461/NLog.Web.AspNetCore.dll",
  4478. "lib/net461/NLog.Web.AspNetCore.xml",
  4479. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll",
  4480. "lib/netcoreapp3.0/NLog.Web.AspNetCore.xml",
  4481. "lib/netstandard1.5/NLog.Web.AspNetCore.dll",
  4482. "lib/netstandard1.5/NLog.Web.AspNetCore.xml",
  4483. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  4484. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  4485. "nlog.web.aspnetcore.4.9.3.nupkg.sha512",
  4486. "nlog.web.aspnetcore.nuspec"
  4487. ]
  4488. },
  4489. "Npgsql/3.2.7": {
  4490. "sha512": "CxSXzWn/MNbHX8L1xfQSzrZfJEA2Yt5cvT27Az5abmvbqtUY1ab6xAkmBj5FfLyKCIYEnmSrxn1IY1+Jy13oFA==",
  4491. "type": "package",
  4492. "path": "npgsql/3.2.7",
  4493. "files": [
  4494. ".nupkg.metadata",
  4495. ".signature.p7s",
  4496. "lib/net45/Npgsql.dll",
  4497. "lib/net45/Npgsql.xml",
  4498. "lib/net451/Npgsql.dll",
  4499. "lib/net451/Npgsql.xml",
  4500. "lib/netstandard1.3/Npgsql.dll",
  4501. "lib/netstandard1.3/Npgsql.xml",
  4502. "lib/netstandard2.0/Npgsql.dll",
  4503. "lib/netstandard2.0/Npgsql.xml",
  4504. "npgsql.3.2.7.nupkg.sha512",
  4505. "npgsql.nuspec"
  4506. ]
  4507. },
  4508. "NuGet.Frameworks/5.0.0": {
  4509. "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==",
  4510. "type": "package",
  4511. "path": "nuget.frameworks/5.0.0",
  4512. "files": [
  4513. ".nupkg.metadata",
  4514. ".signature.p7s",
  4515. "lib/net40/NuGet.Frameworks.dll",
  4516. "lib/net40/NuGet.Frameworks.xml",
  4517. "lib/net472/NuGet.Frameworks.dll",
  4518. "lib/net472/NuGet.Frameworks.xml",
  4519. "lib/netstandard2.0/NuGet.Frameworks.dll",
  4520. "lib/netstandard2.0/NuGet.Frameworks.xml",
  4521. "nuget.frameworks.5.0.0.nupkg.sha512",
  4522. "nuget.frameworks.nuspec"
  4523. ]
  4524. },
  4525. "Oracle.ManagedDataAccess.Core/2.18.3": {
  4526. "sha512": "YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==",
  4527. "type": "package",
  4528. "path": "oracle.manageddataaccess.core/2.18.3",
  4529. "files": [
  4530. ".nupkg.metadata",
  4531. ".signature.p7s",
  4532. "info.txt",
  4533. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll",
  4534. "oracle.manageddataaccess.core.2.18.3.nupkg.sha512",
  4535. "oracle.manageddataaccess.core.nuspec",
  4536. "readme.txt"
  4537. ]
  4538. },
  4539. "Portable.BouncyCastle/1.8.8": {
  4540. "sha512": "1rxdf8NfyAxLlqIEciCl/yNhmz1YiLkmp6rrF8p3/NVmyHHzPWLx8djtDvSAwhPLg64BXvsRcM3+5bP1HAUdYg==",
  4541. "type": "package",
  4542. "path": "portable.bouncycastle/1.8.8",
  4543. "files": [
  4544. ".nupkg.metadata",
  4545. ".signature.p7s",
  4546. "lib/net40/BouncyCastle.Crypto.dll",
  4547. "lib/net40/BouncyCastle.Crypto.xml",
  4548. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  4549. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  4550. "portable.bouncycastle.1.8.8.nupkg.sha512",
  4551. "portable.bouncycastle.nuspec"
  4552. ]
  4553. },
  4554. "Quartz/3.2.3": {
  4555. "sha512": "AWybQvHH/eI69NEiqe4x4jgCGYOCxHfsbrK7IdZJU35MC+85wneNtY4xd9CkUiLlYJvV7YsU0uBMzJV00HKtWg==",
  4556. "type": "package",
  4557. "path": "quartz/3.2.3",
  4558. "files": [
  4559. ".nupkg.metadata",
  4560. ".signature.p7s",
  4561. "lib/net461/Quartz.dll",
  4562. "lib/net461/Quartz.xml",
  4563. "lib/netstandard2.0/Quartz.dll",
  4564. "lib/netstandard2.0/Quartz.xml",
  4565. "quartz-logo-small.png",
  4566. "quartz.3.2.3.nupkg.sha512",
  4567. "quartz.nuspec"
  4568. ]
  4569. },
  4570. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4571. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  4572. "type": "package",
  4573. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4574. "files": [
  4575. ".nupkg.metadata",
  4576. ".signature.p7s",
  4577. "ThirdPartyNotices.txt",
  4578. "dotnet_library_license.txt",
  4579. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4580. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4581. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4582. ]
  4583. },
  4584. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4585. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  4586. "type": "package",
  4587. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4588. "files": [
  4589. ".nupkg.metadata",
  4590. ".signature.p7s",
  4591. "ThirdPartyNotices.txt",
  4592. "dotnet_library_license.txt",
  4593. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4594. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4595. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4596. ]
  4597. },
  4598. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4599. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  4600. "type": "package",
  4601. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4602. "files": [
  4603. ".nupkg.metadata",
  4604. ".signature.p7s",
  4605. "ThirdPartyNotices.txt",
  4606. "dotnet_library_license.txt",
  4607. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4608. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4609. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4610. ]
  4611. },
  4612. "runtime.native.System/4.3.0": {
  4613. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4614. "type": "package",
  4615. "path": "runtime.native.system/4.3.0",
  4616. "files": [
  4617. ".nupkg.metadata",
  4618. ".signature.p7s",
  4619. "ThirdPartyNotices.txt",
  4620. "dotnet_library_license.txt",
  4621. "lib/netstandard1.0/_._",
  4622. "runtime.native.system.4.3.0.nupkg.sha512",
  4623. "runtime.native.system.nuspec"
  4624. ]
  4625. },
  4626. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4627. "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  4628. "type": "package",
  4629. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  4630. "files": [
  4631. ".nupkg.metadata",
  4632. ".signature.p7s",
  4633. "LICENSE.TXT",
  4634. "THIRD-PARTY-NOTICES.TXT",
  4635. "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4636. "runtime.native.system.data.sqlclient.sni.nuspec",
  4637. "useSharedDesignerContext.txt",
  4638. "version.txt"
  4639. ]
  4640. },
  4641. "runtime.native.System.IO.Compression/4.3.0": {
  4642. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4643. "type": "package",
  4644. "path": "runtime.native.system.io.compression/4.3.0",
  4645. "files": [
  4646. ".nupkg.metadata",
  4647. ".signature.p7s",
  4648. "ThirdPartyNotices.txt",
  4649. "dotnet_library_license.txt",
  4650. "lib/netstandard1.0/_._",
  4651. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4652. "runtime.native.system.io.compression.nuspec"
  4653. ]
  4654. },
  4655. "runtime.native.System.Net.Http/4.3.0": {
  4656. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4657. "type": "package",
  4658. "path": "runtime.native.system.net.http/4.3.0",
  4659. "files": [
  4660. ".nupkg.metadata",
  4661. ".signature.p7s",
  4662. "ThirdPartyNotices.txt",
  4663. "dotnet_library_license.txt",
  4664. "lib/netstandard1.0/_._",
  4665. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4666. "runtime.native.system.net.http.nuspec"
  4667. ]
  4668. },
  4669. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  4670. "sha512": "UPrVPlqPRSVZaB4ADmbsQ77KXn9ORiWXyA1RP2W2+byCh3bhgT1bQz0jbeOoog9/2oTQ5wWZSDSMeb74MjezcA==",
  4671. "type": "package",
  4672. "path": "runtime.native.system.security.cryptography.apple/4.3.1",
  4673. "files": [
  4674. ".nupkg.metadata",
  4675. ".signature.p7s",
  4676. "ThirdPartyNotices.txt",
  4677. "dotnet_library_license.txt",
  4678. "lib/netstandard1.0/_._",
  4679. "runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  4680. "runtime.native.system.security.cryptography.apple.nuspec"
  4681. ]
  4682. },
  4683. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4684. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  4685. "type": "package",
  4686. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  4687. "files": [
  4688. ".nupkg.metadata",
  4689. ".signature.p7s",
  4690. "ThirdPartyNotices.txt",
  4691. "dotnet_library_license.txt",
  4692. "lib/netstandard1.0/_._",
  4693. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4694. "runtime.native.system.security.cryptography.openssl.nuspec"
  4695. ]
  4696. },
  4697. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4698. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  4699. "type": "package",
  4700. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4701. "files": [
  4702. ".nupkg.metadata",
  4703. ".signature.p7s",
  4704. "ThirdPartyNotices.txt",
  4705. "dotnet_library_license.txt",
  4706. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4707. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4708. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4709. ]
  4710. },
  4711. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4712. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  4713. "type": "package",
  4714. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4715. "files": [
  4716. ".nupkg.metadata",
  4717. ".signature.p7s",
  4718. "ThirdPartyNotices.txt",
  4719. "dotnet_library_license.txt",
  4720. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4721. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4722. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4723. ]
  4724. },
  4725. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  4726. "sha512": "t15yGf5r6vMV1rB5O6TgfXKChtCaN3niwFw44M2ImX3eZ8yzueplqMqXPCbWzoBDHJVz9fE+9LFUGCsUmS2Jgg==",
  4727. "type": "package",
  4728. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.1",
  4729. "files": [
  4730. ".nupkg.metadata",
  4731. ".signature.p7s",
  4732. "ThirdPartyNotices.txt",
  4733. "dotnet_library_license.txt",
  4734. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  4735. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4736. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4737. ]
  4738. },
  4739. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4740. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  4741. "type": "package",
  4742. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4743. "files": [
  4744. ".nupkg.metadata",
  4745. ".signature.p7s",
  4746. "ThirdPartyNotices.txt",
  4747. "dotnet_library_license.txt",
  4748. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4749. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4750. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4751. ]
  4752. },
  4753. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4754. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  4755. "type": "package",
  4756. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4757. "files": [
  4758. ".nupkg.metadata",
  4759. ".signature.p7s",
  4760. "ThirdPartyNotices.txt",
  4761. "dotnet_library_license.txt",
  4762. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4763. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4764. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4765. ]
  4766. },
  4767. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4768. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  4769. "type": "package",
  4770. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4771. "files": [
  4772. ".nupkg.metadata",
  4773. ".signature.p7s",
  4774. "ThirdPartyNotices.txt",
  4775. "dotnet_library_license.txt",
  4776. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4777. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4778. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4779. ]
  4780. },
  4781. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4782. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  4783. "type": "package",
  4784. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4785. "files": [
  4786. ".nupkg.metadata",
  4787. ".signature.p7s",
  4788. "ThirdPartyNotices.txt",
  4789. "dotnet_library_license.txt",
  4790. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4791. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4792. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4793. ]
  4794. },
  4795. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4796. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  4797. "type": "package",
  4798. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4799. "files": [
  4800. ".nupkg.metadata",
  4801. ".signature.p7s",
  4802. "ThirdPartyNotices.txt",
  4803. "dotnet_library_license.txt",
  4804. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4805. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4806. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4807. ]
  4808. },
  4809. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4810. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  4811. "type": "package",
  4812. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4813. "files": [
  4814. ".nupkg.metadata",
  4815. ".signature.p7s",
  4816. "ThirdPartyNotices.txt",
  4817. "dotnet_library_license.txt",
  4818. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4819. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  4820. "runtimes/win-arm64/native/sni.dll",
  4821. "useSharedDesignerContext.txt",
  4822. "version.txt"
  4823. ]
  4824. },
  4825. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4826. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  4827. "type": "package",
  4828. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4829. "files": [
  4830. ".nupkg.metadata",
  4831. ".signature.p7s",
  4832. "ThirdPartyNotices.txt",
  4833. "dotnet_library_license.txt",
  4834. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4835. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  4836. "runtimes/win-x64/native/sni.dll",
  4837. "useSharedDesignerContext.txt",
  4838. "version.txt"
  4839. ]
  4840. },
  4841. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4842. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4843. "type": "package",
  4844. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4845. "files": [
  4846. ".nupkg.metadata",
  4847. ".signature.p7s",
  4848. "ThirdPartyNotices.txt",
  4849. "dotnet_library_license.txt",
  4850. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4851. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  4852. "runtimes/win-x86/native/sni.dll",
  4853. "useSharedDesignerContext.txt",
  4854. "version.txt"
  4855. ]
  4856. },
  4857. "SQLitePCLRaw.bundle_green/1.1.12": {
  4858. "sha512": "U5lZv+E0JBCG5uQngaRgyIAlbzIwRczb0m46XJfLGXovtfVOaMNRY/oGyKAJjdexVrfqLRd+JyopGMySpAZRGQ==",
  4859. "type": "package",
  4860. "path": "sqlitepclraw.bundle_green/1.1.12",
  4861. "files": [
  4862. ".nupkg.metadata",
  4863. ".signature.p7s",
  4864. "build/wp8/SQLitePCLRaw.bundle_green.targets",
  4865. "build/wp80/arm/SQLitePCLRaw.batteries_green.dll",
  4866. "build/wp80/arm/SQLitePCLRaw.batteries_v2.dll",
  4867. "build/wp80/x86/SQLitePCLRaw.batteries_green.dll",
  4868. "build/wp80/x86/SQLitePCLRaw.batteries_v2.dll",
  4869. "lib/MonoAndroid/SQLitePCLRaw.batteries_green.dll",
  4870. "lib/MonoAndroid/SQLitePCLRaw.batteries_v2.dll",
  4871. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_green.dll",
  4872. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_v2.dll",
  4873. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4874. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4875. "lib/net35/SQLitePCLRaw.batteries_green.dll",
  4876. "lib/net35/SQLitePCLRaw.batteries_v2.dll",
  4877. "lib/net40/SQLitePCLRaw.batteries_green.dll",
  4878. "lib/net40/SQLitePCLRaw.batteries_v2.dll",
  4879. "lib/net45/SQLitePCLRaw.batteries_green.dll",
  4880. "lib/net45/SQLitePCLRaw.batteries_v2.dll",
  4881. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll",
  4882. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll",
  4883. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll",
  4884. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll",
  4885. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4886. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4887. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4888. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4889. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4890. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4891. "lib/uap10.0/SQLitePCLRaw.batteries_green.dll",
  4892. "lib/uap10.0/SQLitePCLRaw.batteries_v2.dll",
  4893. "lib/win8/SQLitePCLRaw.batteries_green.dll",
  4894. "lib/win8/SQLitePCLRaw.batteries_v2.dll",
  4895. "lib/win81/SQLitePCLRaw.batteries_green.dll",
  4896. "lib/win81/SQLitePCLRaw.batteries_v2.dll",
  4897. "lib/wp8/_._",
  4898. "lib/wpa81/SQLitePCLRaw.batteries_green.dll",
  4899. "lib/wpa81/SQLitePCLRaw.batteries_v2.dll",
  4900. "sqlitepclraw.bundle_green.1.1.12.nupkg.sha512",
  4901. "sqlitepclraw.bundle_green.nuspec"
  4902. ]
  4903. },
  4904. "SQLitePCLRaw.core/1.1.12": {
  4905. "sha512": "S4hr+tE275ran5jyKFW/FYPG6Bz6nsHUp9H8chqKxzk21PxJadLd9LnvLe6LMRP/IqY5+LOIIDQF3m/2iDlZ7Q==",
  4906. "type": "package",
  4907. "path": "sqlitepclraw.core/1.1.12",
  4908. "files": [
  4909. ".nupkg.metadata",
  4910. ".signature.p7s",
  4911. "lib/MonoAndroid/SQLitePCLRaw.core.dll",
  4912. "lib/Xamarin.Mac20/SQLitePCLRaw.core.dll",
  4913. "lib/Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4914. "lib/net35/SQLitePCLRaw.core.dll",
  4915. "lib/net40/SQLitePCLRaw.core.dll",
  4916. "lib/net45/SQLitePCLRaw.core.dll",
  4917. "lib/netstandard1.0/SQLitePCLRaw.core.dll",
  4918. "lib/netstandard1.1/SQLitePCLRaw.core.dll",
  4919. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4920. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4921. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4922. "lib/uap10.0/SQLitePCLRaw.core.dll",
  4923. "lib/win8/SQLitePCLRaw.core.dll",
  4924. "lib/win81/SQLitePCLRaw.core.dll",
  4925. "lib/wpa81/SQLitePCLRaw.core.dll",
  4926. "sqlitepclraw.core.1.1.12.nupkg.sha512",
  4927. "sqlitepclraw.core.nuspec"
  4928. ]
  4929. },
  4930. "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": {
  4931. "sha512": "Tn/YE1VxWtHa4MQ9KC//ptIw6cLAUh+xXSdpX7MyGINmb4/igqyx0IOEq5WeH/+cuI/EnDtdWAOn98eMQnKsTQ==",
  4932. "type": "package",
  4933. "path": "sqlitepclraw.lib.e_sqlite3.linux/1.1.12",
  4934. "files": [
  4935. ".nupkg.metadata",
  4936. ".signature.p7s",
  4937. "build/net35/SQLitePCLRaw.lib.e_sqlite3.linux.targets",
  4938. "lib/net35/_._",
  4939. "lib/netstandard1.0/_._",
  4940. "lib/netstandard2.0/_._",
  4941. "runtimes/alpine-x64/native/libe_sqlite3.so",
  4942. "runtimes/linux-arm/native/libe_sqlite3.so",
  4943. "runtimes/linux-arm64/native/libe_sqlite3.so",
  4944. "runtimes/linux-armel/native/libe_sqlite3.so",
  4945. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  4946. "runtimes/linux-x64/native/libe_sqlite3.so",
  4947. "runtimes/linux-x86/native/libe_sqlite3.so",
  4948. "sqlitepclraw.lib.e_sqlite3.linux.1.1.12.nupkg.sha512",
  4949. "sqlitepclraw.lib.e_sqlite3.linux.nuspec"
  4950. ]
  4951. },
  4952. "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": {
  4953. "sha512": "qfl1ljn6NOQDyM2i9JDZc6xekHoC+Fqe4GzuhWFCS6siI7lLInw09HHSZRqyimV36vjdQYnyBBFKSn53rSOYkA==",
  4954. "type": "package",
  4955. "path": "sqlitepclraw.lib.e_sqlite3.osx/1.1.12",
  4956. "files": [
  4957. ".nupkg.metadata",
  4958. ".signature.p7s",
  4959. "build/Xamarin.Mac20/SQLitePCLRaw.lib.e_sqlite3.osx.targets",
  4960. "build/net35/SQLitePCLRaw.lib.e_sqlite3.osx.targets",
  4961. "lib/Xamarin.Mac20/_._",
  4962. "lib/net35/_._",
  4963. "lib/netstandard1.0/_._",
  4964. "lib/netstandard2.0/_._",
  4965. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  4966. "sqlitepclraw.lib.e_sqlite3.osx.1.1.12.nupkg.sha512",
  4967. "sqlitepclraw.lib.e_sqlite3.osx.nuspec"
  4968. ]
  4969. },
  4970. "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": {
  4971. "sha512": "YfmaVhcEyAGU6BZ7NQiYYfCHKsCYjldwsafiFKArzqeM8MHuhfqft1Fjdv7ncukXrvKsHXhCrzJzKEMwPXiSSg==",
  4972. "type": "package",
  4973. "path": "sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.12",
  4974. "files": [
  4975. ".nupkg.metadata",
  4976. ".signature.p7s",
  4977. "build/net35/SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets",
  4978. "lib/net35/_._",
  4979. "lib/netstandard1.0/_._",
  4980. "lib/netstandard2.0/_._",
  4981. "runtimes/win-x64/native/e_sqlite3.dll",
  4982. "runtimes/win-x86/native/e_sqlite3.dll",
  4983. "runtimes/win8-arm/native/e_sqlite3.dll",
  4984. "sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.12.nupkg.sha512",
  4985. "sqlitepclraw.lib.e_sqlite3.v110_xp.nuspec"
  4986. ]
  4987. },
  4988. "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": {
  4989. "sha512": "qjz6Ad1Q5hiI8imCiG5Mpa/w8E8+rAk3SRJdX54uEOo5nPywiN1H0jmMZO+ID0nPibQA3yjlAHt5/GcLW9Iftg==",
  4990. "type": "package",
  4991. "path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.12",
  4992. "files": [
  4993. ".nupkg.metadata",
  4994. ".signature.p7s",
  4995. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll",
  4996. "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512",
  4997. "sqlitepclraw.provider.e_sqlite3.netstandard11.nuspec"
  4998. ]
  4999. },
  5000. "sqlSugarCore/5.0.0.18": {
  5001. "sha512": "AtNXN+yg50fIZuOHBggWvxY/sBH0nqTFEVM6CDmmc06WxUJ0MA8N7kBbKxVYVWbhpD8/INWZrGJ4tko3ZKD88A==",
  5002. "type": "package",
  5003. "path": "sqlsugarcore/5.0.0.18",
  5004. "files": [
  5005. ".nupkg.metadata",
  5006. ".signature.p7s",
  5007. "lib/netstandard2.0/SqlSugar.dll",
  5008. "sqlsugarcore.5.0.0.18.nupkg.sha512",
  5009. "sqlsugarcore.nuspec"
  5010. ]
  5011. },
  5012. "System.AppContext/4.3.0": {
  5013. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5014. "type": "package",
  5015. "path": "system.appcontext/4.3.0",
  5016. "files": [
  5017. ".nupkg.metadata",
  5018. ".signature.p7s",
  5019. "ThirdPartyNotices.txt",
  5020. "dotnet_library_license.txt",
  5021. "lib/MonoAndroid10/_._",
  5022. "lib/MonoTouch10/_._",
  5023. "lib/net46/System.AppContext.dll",
  5024. "lib/net463/System.AppContext.dll",
  5025. "lib/netcore50/System.AppContext.dll",
  5026. "lib/netstandard1.6/System.AppContext.dll",
  5027. "lib/xamarinios10/_._",
  5028. "lib/xamarinmac20/_._",
  5029. "lib/xamarintvos10/_._",
  5030. "lib/xamarinwatchos10/_._",
  5031. "ref/MonoAndroid10/_._",
  5032. "ref/MonoTouch10/_._",
  5033. "ref/net46/System.AppContext.dll",
  5034. "ref/net463/System.AppContext.dll",
  5035. "ref/netstandard/_._",
  5036. "ref/netstandard1.3/System.AppContext.dll",
  5037. "ref/netstandard1.3/System.AppContext.xml",
  5038. "ref/netstandard1.3/de/System.AppContext.xml",
  5039. "ref/netstandard1.3/es/System.AppContext.xml",
  5040. "ref/netstandard1.3/fr/System.AppContext.xml",
  5041. "ref/netstandard1.3/it/System.AppContext.xml",
  5042. "ref/netstandard1.3/ja/System.AppContext.xml",
  5043. "ref/netstandard1.3/ko/System.AppContext.xml",
  5044. "ref/netstandard1.3/ru/System.AppContext.xml",
  5045. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5046. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5047. "ref/netstandard1.6/System.AppContext.dll",
  5048. "ref/netstandard1.6/System.AppContext.xml",
  5049. "ref/netstandard1.6/de/System.AppContext.xml",
  5050. "ref/netstandard1.6/es/System.AppContext.xml",
  5051. "ref/netstandard1.6/fr/System.AppContext.xml",
  5052. "ref/netstandard1.6/it/System.AppContext.xml",
  5053. "ref/netstandard1.6/ja/System.AppContext.xml",
  5054. "ref/netstandard1.6/ko/System.AppContext.xml",
  5055. "ref/netstandard1.6/ru/System.AppContext.xml",
  5056. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5057. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5058. "ref/xamarinios10/_._",
  5059. "ref/xamarinmac20/_._",
  5060. "ref/xamarintvos10/_._",
  5061. "ref/xamarinwatchos10/_._",
  5062. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5063. "system.appcontext.4.3.0.nupkg.sha512",
  5064. "system.appcontext.nuspec"
  5065. ]
  5066. },
  5067. "System.Buffers/4.3.0": {
  5068. "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
  5069. "type": "package",
  5070. "path": "system.buffers/4.3.0",
  5071. "files": [
  5072. ".nupkg.metadata",
  5073. ".signature.p7s",
  5074. "ThirdPartyNotices.txt",
  5075. "dotnet_library_license.txt",
  5076. "lib/netstandard1.1/.xml",
  5077. "lib/netstandard1.1/System.Buffers.dll",
  5078. "system.buffers.4.3.0.nupkg.sha512",
  5079. "system.buffers.nuspec"
  5080. ]
  5081. },
  5082. "System.CodeDom/5.0.0": {
  5083. "sha512": "JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==",
  5084. "type": "package",
  5085. "path": "system.codedom/5.0.0",
  5086. "files": [
  5087. ".nupkg.metadata",
  5088. ".signature.p7s",
  5089. "Icon.png",
  5090. "LICENSE.TXT",
  5091. "THIRD-PARTY-NOTICES.TXT",
  5092. "lib/net461/System.CodeDom.dll",
  5093. "lib/net461/System.CodeDom.xml",
  5094. "lib/netstandard2.0/System.CodeDom.dll",
  5095. "lib/netstandard2.0/System.CodeDom.xml",
  5096. "ref/net461/System.CodeDom.dll",
  5097. "ref/net461/System.CodeDom.xml",
  5098. "ref/netstandard2.0/System.CodeDom.dll",
  5099. "ref/netstandard2.0/System.CodeDom.xml",
  5100. "system.codedom.5.0.0.nupkg.sha512",
  5101. "system.codedom.nuspec",
  5102. "useSharedDesignerContext.txt",
  5103. "version.txt"
  5104. ]
  5105. },
  5106. "System.Collections/4.3.0": {
  5107. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5108. "type": "package",
  5109. "path": "system.collections/4.3.0",
  5110. "files": [
  5111. ".nupkg.metadata",
  5112. ".signature.p7s",
  5113. "ThirdPartyNotices.txt",
  5114. "dotnet_library_license.txt",
  5115. "lib/MonoAndroid10/_._",
  5116. "lib/MonoTouch10/_._",
  5117. "lib/net45/_._",
  5118. "lib/portable-net45+win8+wp8+wpa81/_._",
  5119. "lib/win8/_._",
  5120. "lib/wp80/_._",
  5121. "lib/wpa81/_._",
  5122. "lib/xamarinios10/_._",
  5123. "lib/xamarinmac20/_._",
  5124. "lib/xamarintvos10/_._",
  5125. "lib/xamarinwatchos10/_._",
  5126. "ref/MonoAndroid10/_._",
  5127. "ref/MonoTouch10/_._",
  5128. "ref/net45/_._",
  5129. "ref/netcore50/System.Collections.dll",
  5130. "ref/netcore50/System.Collections.xml",
  5131. "ref/netcore50/de/System.Collections.xml",
  5132. "ref/netcore50/es/System.Collections.xml",
  5133. "ref/netcore50/fr/System.Collections.xml",
  5134. "ref/netcore50/it/System.Collections.xml",
  5135. "ref/netcore50/ja/System.Collections.xml",
  5136. "ref/netcore50/ko/System.Collections.xml",
  5137. "ref/netcore50/ru/System.Collections.xml",
  5138. "ref/netcore50/zh-hans/System.Collections.xml",
  5139. "ref/netcore50/zh-hant/System.Collections.xml",
  5140. "ref/netstandard1.0/System.Collections.dll",
  5141. "ref/netstandard1.0/System.Collections.xml",
  5142. "ref/netstandard1.0/de/System.Collections.xml",
  5143. "ref/netstandard1.0/es/System.Collections.xml",
  5144. "ref/netstandard1.0/fr/System.Collections.xml",
  5145. "ref/netstandard1.0/it/System.Collections.xml",
  5146. "ref/netstandard1.0/ja/System.Collections.xml",
  5147. "ref/netstandard1.0/ko/System.Collections.xml",
  5148. "ref/netstandard1.0/ru/System.Collections.xml",
  5149. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5150. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5151. "ref/netstandard1.3/System.Collections.dll",
  5152. "ref/netstandard1.3/System.Collections.xml",
  5153. "ref/netstandard1.3/de/System.Collections.xml",
  5154. "ref/netstandard1.3/es/System.Collections.xml",
  5155. "ref/netstandard1.3/fr/System.Collections.xml",
  5156. "ref/netstandard1.3/it/System.Collections.xml",
  5157. "ref/netstandard1.3/ja/System.Collections.xml",
  5158. "ref/netstandard1.3/ko/System.Collections.xml",
  5159. "ref/netstandard1.3/ru/System.Collections.xml",
  5160. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5161. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5162. "ref/portable-net45+win8+wp8+wpa81/_._",
  5163. "ref/win8/_._",
  5164. "ref/wp80/_._",
  5165. "ref/wpa81/_._",
  5166. "ref/xamarinios10/_._",
  5167. "ref/xamarinmac20/_._",
  5168. "ref/xamarintvos10/_._",
  5169. "ref/xamarinwatchos10/_._",
  5170. "system.collections.4.3.0.nupkg.sha512",
  5171. "system.collections.nuspec"
  5172. ]
  5173. },
  5174. "System.Collections.Concurrent/4.3.0": {
  5175. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5176. "type": "package",
  5177. "path": "system.collections.concurrent/4.3.0",
  5178. "files": [
  5179. ".nupkg.metadata",
  5180. ".signature.p7s",
  5181. "ThirdPartyNotices.txt",
  5182. "dotnet_library_license.txt",
  5183. "lib/MonoAndroid10/_._",
  5184. "lib/MonoTouch10/_._",
  5185. "lib/net45/_._",
  5186. "lib/netcore50/System.Collections.Concurrent.dll",
  5187. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5188. "lib/portable-net45+win8+wpa81/_._",
  5189. "lib/win8/_._",
  5190. "lib/wpa81/_._",
  5191. "lib/xamarinios10/_._",
  5192. "lib/xamarinmac20/_._",
  5193. "lib/xamarintvos10/_._",
  5194. "lib/xamarinwatchos10/_._",
  5195. "ref/MonoAndroid10/_._",
  5196. "ref/MonoTouch10/_._",
  5197. "ref/net45/_._",
  5198. "ref/netcore50/System.Collections.Concurrent.dll",
  5199. "ref/netcore50/System.Collections.Concurrent.xml",
  5200. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5201. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5202. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5203. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5204. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5205. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5206. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5207. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5208. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5209. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5210. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5211. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5212. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5213. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5214. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5215. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5216. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5217. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5218. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5219. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5220. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5221. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5222. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5223. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5224. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5225. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5226. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5227. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5228. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5229. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5230. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5231. "ref/portable-net45+win8+wpa81/_._",
  5232. "ref/win8/_._",
  5233. "ref/wpa81/_._",
  5234. "ref/xamarinios10/_._",
  5235. "ref/xamarinmac20/_._",
  5236. "ref/xamarintvos10/_._",
  5237. "ref/xamarinwatchos10/_._",
  5238. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5239. "system.collections.concurrent.nuspec"
  5240. ]
  5241. },
  5242. "System.Collections.Immutable/1.7.1": {
  5243. "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
  5244. "type": "package",
  5245. "path": "system.collections.immutable/1.7.1",
  5246. "files": [
  5247. ".nupkg.metadata",
  5248. ".signature.p7s",
  5249. "Icon.png",
  5250. "LICENSE.TXT",
  5251. "THIRD-PARTY-NOTICES.TXT",
  5252. "lib/net461/System.Collections.Immutable.dll",
  5253. "lib/net461/System.Collections.Immutable.xml",
  5254. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5255. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5256. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5257. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5258. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5259. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5260. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5261. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5262. "system.collections.immutable.1.7.1.nupkg.sha512",
  5263. "system.collections.immutable.nuspec",
  5264. "useSharedDesignerContext.txt",
  5265. "version.txt"
  5266. ]
  5267. },
  5268. "System.Collections.NonGeneric/4.3.0": {
  5269. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5270. "type": "package",
  5271. "path": "system.collections.nongeneric/4.3.0",
  5272. "files": [
  5273. ".nupkg.metadata",
  5274. ".signature.p7s",
  5275. "ThirdPartyNotices.txt",
  5276. "dotnet_library_license.txt",
  5277. "lib/MonoAndroid10/_._",
  5278. "lib/MonoTouch10/_._",
  5279. "lib/net46/System.Collections.NonGeneric.dll",
  5280. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5281. "lib/xamarinios10/_._",
  5282. "lib/xamarinmac20/_._",
  5283. "lib/xamarintvos10/_._",
  5284. "lib/xamarinwatchos10/_._",
  5285. "ref/MonoAndroid10/_._",
  5286. "ref/MonoTouch10/_._",
  5287. "ref/net46/System.Collections.NonGeneric.dll",
  5288. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5289. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5290. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5291. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5292. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5293. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5294. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5295. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5296. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5297. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5298. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5299. "ref/xamarinios10/_._",
  5300. "ref/xamarinmac20/_._",
  5301. "ref/xamarintvos10/_._",
  5302. "ref/xamarinwatchos10/_._",
  5303. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5304. "system.collections.nongeneric.nuspec"
  5305. ]
  5306. },
  5307. "System.Collections.Specialized/4.3.0": {
  5308. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  5309. "type": "package",
  5310. "path": "system.collections.specialized/4.3.0",
  5311. "files": [
  5312. ".nupkg.metadata",
  5313. ".signature.p7s",
  5314. "ThirdPartyNotices.txt",
  5315. "dotnet_library_license.txt",
  5316. "lib/MonoAndroid10/_._",
  5317. "lib/MonoTouch10/_._",
  5318. "lib/net46/System.Collections.Specialized.dll",
  5319. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5320. "lib/xamarinios10/_._",
  5321. "lib/xamarinmac20/_._",
  5322. "lib/xamarintvos10/_._",
  5323. "lib/xamarinwatchos10/_._",
  5324. "ref/MonoAndroid10/_._",
  5325. "ref/MonoTouch10/_._",
  5326. "ref/net46/System.Collections.Specialized.dll",
  5327. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5328. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5329. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5330. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5331. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5332. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5333. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5334. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5335. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5336. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5337. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5338. "ref/xamarinios10/_._",
  5339. "ref/xamarinmac20/_._",
  5340. "ref/xamarintvos10/_._",
  5341. "ref/xamarinwatchos10/_._",
  5342. "system.collections.specialized.4.3.0.nupkg.sha512",
  5343. "system.collections.specialized.nuspec"
  5344. ]
  5345. },
  5346. "System.ComponentModel/4.3.0": {
  5347. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5348. "type": "package",
  5349. "path": "system.componentmodel/4.3.0",
  5350. "files": [
  5351. ".nupkg.metadata",
  5352. ".signature.p7s",
  5353. "ThirdPartyNotices.txt",
  5354. "dotnet_library_license.txt",
  5355. "lib/MonoAndroid10/_._",
  5356. "lib/MonoTouch10/_._",
  5357. "lib/net45/_._",
  5358. "lib/netcore50/System.ComponentModel.dll",
  5359. "lib/netstandard1.3/System.ComponentModel.dll",
  5360. "lib/portable-net45+win8+wp8+wpa81/_._",
  5361. "lib/win8/_._",
  5362. "lib/wp80/_._",
  5363. "lib/wpa81/_._",
  5364. "lib/xamarinios10/_._",
  5365. "lib/xamarinmac20/_._",
  5366. "lib/xamarintvos10/_._",
  5367. "lib/xamarinwatchos10/_._",
  5368. "ref/MonoAndroid10/_._",
  5369. "ref/MonoTouch10/_._",
  5370. "ref/net45/_._",
  5371. "ref/netcore50/System.ComponentModel.dll",
  5372. "ref/netcore50/System.ComponentModel.xml",
  5373. "ref/netcore50/de/System.ComponentModel.xml",
  5374. "ref/netcore50/es/System.ComponentModel.xml",
  5375. "ref/netcore50/fr/System.ComponentModel.xml",
  5376. "ref/netcore50/it/System.ComponentModel.xml",
  5377. "ref/netcore50/ja/System.ComponentModel.xml",
  5378. "ref/netcore50/ko/System.ComponentModel.xml",
  5379. "ref/netcore50/ru/System.ComponentModel.xml",
  5380. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5381. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5382. "ref/netstandard1.0/System.ComponentModel.dll",
  5383. "ref/netstandard1.0/System.ComponentModel.xml",
  5384. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5385. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5386. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5387. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5388. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5389. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5390. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5391. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5392. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5393. "ref/portable-net45+win8+wp8+wpa81/_._",
  5394. "ref/win8/_._",
  5395. "ref/wp80/_._",
  5396. "ref/wpa81/_._",
  5397. "ref/xamarinios10/_._",
  5398. "ref/xamarinmac20/_._",
  5399. "ref/xamarintvos10/_._",
  5400. "ref/xamarinwatchos10/_._",
  5401. "system.componentmodel.4.3.0.nupkg.sha512",
  5402. "system.componentmodel.nuspec"
  5403. ]
  5404. },
  5405. "System.ComponentModel.Annotations/4.7.0": {
  5406. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  5407. "type": "package",
  5408. "path": "system.componentmodel.annotations/4.7.0",
  5409. "files": [
  5410. ".nupkg.metadata",
  5411. ".signature.p7s",
  5412. "LICENSE.TXT",
  5413. "THIRD-PARTY-NOTICES.TXT",
  5414. "lib/MonoAndroid10/_._",
  5415. "lib/MonoTouch10/_._",
  5416. "lib/net45/_._",
  5417. "lib/net461/System.ComponentModel.Annotations.dll",
  5418. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5419. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5420. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5421. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5422. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5423. "lib/portable-net45+win8/_._",
  5424. "lib/win8/_._",
  5425. "lib/xamarinios10/_._",
  5426. "lib/xamarinmac20/_._",
  5427. "lib/xamarintvos10/_._",
  5428. "lib/xamarinwatchos10/_._",
  5429. "ref/MonoAndroid10/_._",
  5430. "ref/MonoTouch10/_._",
  5431. "ref/net45/_._",
  5432. "ref/net461/System.ComponentModel.Annotations.dll",
  5433. "ref/net461/System.ComponentModel.Annotations.xml",
  5434. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5435. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5436. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5437. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5438. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5439. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5440. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5441. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5442. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5443. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5444. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5445. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5446. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5447. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5448. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5449. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5450. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5451. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5452. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5453. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5454. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5455. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5456. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5457. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5458. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5459. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5460. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5461. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5462. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5463. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5464. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5465. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5466. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5467. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5468. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5469. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5470. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5471. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5472. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5473. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5474. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5475. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5476. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5477. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5478. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5479. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5480. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5481. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5482. "ref/portable-net45+win8/_._",
  5483. "ref/win8/_._",
  5484. "ref/xamarinios10/_._",
  5485. "ref/xamarinmac20/_._",
  5486. "ref/xamarintvos10/_._",
  5487. "ref/xamarinwatchos10/_._",
  5488. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  5489. "system.componentmodel.annotations.nuspec",
  5490. "useSharedDesignerContext.txt",
  5491. "version.txt"
  5492. ]
  5493. },
  5494. "System.ComponentModel.Primitives/4.3.0": {
  5495. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5496. "type": "package",
  5497. "path": "system.componentmodel.primitives/4.3.0",
  5498. "files": [
  5499. ".nupkg.metadata",
  5500. ".signature.p7s",
  5501. "ThirdPartyNotices.txt",
  5502. "dotnet_library_license.txt",
  5503. "lib/MonoAndroid10/_._",
  5504. "lib/MonoTouch10/_._",
  5505. "lib/net45/System.ComponentModel.Primitives.dll",
  5506. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5507. "lib/xamarinios10/_._",
  5508. "lib/xamarinmac20/_._",
  5509. "lib/xamarintvos10/_._",
  5510. "lib/xamarinwatchos10/_._",
  5511. "ref/MonoAndroid10/_._",
  5512. "ref/MonoTouch10/_._",
  5513. "ref/net45/System.ComponentModel.Primitives.dll",
  5514. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5515. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5516. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5517. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5518. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5519. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5520. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5521. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5522. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5523. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5524. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5525. "ref/xamarinios10/_._",
  5526. "ref/xamarinmac20/_._",
  5527. "ref/xamarintvos10/_._",
  5528. "ref/xamarinwatchos10/_._",
  5529. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5530. "system.componentmodel.primitives.nuspec"
  5531. ]
  5532. },
  5533. "System.ComponentModel.TypeConverter/4.3.0": {
  5534. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5535. "type": "package",
  5536. "path": "system.componentmodel.typeconverter/4.3.0",
  5537. "files": [
  5538. ".nupkg.metadata",
  5539. ".signature.p7s",
  5540. "ThirdPartyNotices.txt",
  5541. "dotnet_library_license.txt",
  5542. "lib/MonoAndroid10/_._",
  5543. "lib/MonoTouch10/_._",
  5544. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5545. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5546. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5547. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5548. "lib/xamarinios10/_._",
  5549. "lib/xamarinmac20/_._",
  5550. "lib/xamarintvos10/_._",
  5551. "lib/xamarinwatchos10/_._",
  5552. "ref/MonoAndroid10/_._",
  5553. "ref/MonoTouch10/_._",
  5554. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5555. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5556. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5557. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5558. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5559. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5560. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5561. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5562. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5563. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5564. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5565. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5566. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5567. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5568. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5569. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5570. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5571. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5572. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5573. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5574. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5575. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5576. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5577. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5578. "ref/xamarinios10/_._",
  5579. "ref/xamarinmac20/_._",
  5580. "ref/xamarintvos10/_._",
  5581. "ref/xamarinwatchos10/_._",
  5582. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5583. "system.componentmodel.typeconverter.nuspec"
  5584. ]
  5585. },
  5586. "System.Configuration.ConfigurationManager/4.7.0": {
  5587. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  5588. "type": "package",
  5589. "path": "system.configuration.configurationmanager/4.7.0",
  5590. "files": [
  5591. ".nupkg.metadata",
  5592. ".signature.p7s",
  5593. "LICENSE.TXT",
  5594. "THIRD-PARTY-NOTICES.TXT",
  5595. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5596. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5597. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5598. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5599. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5600. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5601. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5602. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5603. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  5604. "system.configuration.configurationmanager.nuspec",
  5605. "useSharedDesignerContext.txt",
  5606. "version.txt"
  5607. ]
  5608. },
  5609. "System.Console/4.3.0": {
  5610. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5611. "type": "package",
  5612. "path": "system.console/4.3.0",
  5613. "files": [
  5614. ".nupkg.metadata",
  5615. ".signature.p7s",
  5616. "ThirdPartyNotices.txt",
  5617. "dotnet_library_license.txt",
  5618. "lib/MonoAndroid10/_._",
  5619. "lib/MonoTouch10/_._",
  5620. "lib/net46/System.Console.dll",
  5621. "lib/xamarinios10/_._",
  5622. "lib/xamarinmac20/_._",
  5623. "lib/xamarintvos10/_._",
  5624. "lib/xamarinwatchos10/_._",
  5625. "ref/MonoAndroid10/_._",
  5626. "ref/MonoTouch10/_._",
  5627. "ref/net46/System.Console.dll",
  5628. "ref/netstandard1.3/System.Console.dll",
  5629. "ref/netstandard1.3/System.Console.xml",
  5630. "ref/netstandard1.3/de/System.Console.xml",
  5631. "ref/netstandard1.3/es/System.Console.xml",
  5632. "ref/netstandard1.3/fr/System.Console.xml",
  5633. "ref/netstandard1.3/it/System.Console.xml",
  5634. "ref/netstandard1.3/ja/System.Console.xml",
  5635. "ref/netstandard1.3/ko/System.Console.xml",
  5636. "ref/netstandard1.3/ru/System.Console.xml",
  5637. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5638. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5639. "ref/xamarinios10/_._",
  5640. "ref/xamarinmac20/_._",
  5641. "ref/xamarintvos10/_._",
  5642. "ref/xamarinwatchos10/_._",
  5643. "system.console.4.3.0.nupkg.sha512",
  5644. "system.console.nuspec"
  5645. ]
  5646. },
  5647. "System.Data.Common/4.3.0": {
  5648. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  5649. "type": "package",
  5650. "path": "system.data.common/4.3.0",
  5651. "files": [
  5652. ".nupkg.metadata",
  5653. ".signature.p7s",
  5654. "ThirdPartyNotices.txt",
  5655. "dotnet_library_license.txt",
  5656. "lib/MonoAndroid10/_._",
  5657. "lib/MonoTouch10/_._",
  5658. "lib/net451/System.Data.Common.dll",
  5659. "lib/netstandard1.2/System.Data.Common.dll",
  5660. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5661. "lib/xamarinios10/_._",
  5662. "lib/xamarinmac20/_._",
  5663. "lib/xamarintvos10/_._",
  5664. "lib/xamarinwatchos10/_._",
  5665. "ref/MonoAndroid10/_._",
  5666. "ref/MonoTouch10/_._",
  5667. "ref/net451/System.Data.Common.dll",
  5668. "ref/netstandard1.2/System.Data.Common.dll",
  5669. "ref/netstandard1.2/System.Data.Common.xml",
  5670. "ref/netstandard1.2/de/System.Data.Common.xml",
  5671. "ref/netstandard1.2/es/System.Data.Common.xml",
  5672. "ref/netstandard1.2/fr/System.Data.Common.xml",
  5673. "ref/netstandard1.2/it/System.Data.Common.xml",
  5674. "ref/netstandard1.2/ja/System.Data.Common.xml",
  5675. "ref/netstandard1.2/ko/System.Data.Common.xml",
  5676. "ref/netstandard1.2/ru/System.Data.Common.xml",
  5677. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  5678. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  5679. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5680. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  5681. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  5682. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  5683. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  5684. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  5685. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  5686. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  5687. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  5688. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  5689. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  5690. "ref/xamarinios10/_._",
  5691. "ref/xamarinmac20/_._",
  5692. "ref/xamarintvos10/_._",
  5693. "ref/xamarinwatchos10/_._",
  5694. "system.data.common.4.3.0.nupkg.sha512",
  5695. "system.data.common.nuspec"
  5696. ]
  5697. },
  5698. "System.Data.SqlClient/4.4.0": {
  5699. "sha512": "fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==",
  5700. "type": "package",
  5701. "path": "system.data.sqlclient/4.4.0",
  5702. "files": [
  5703. ".nupkg.metadata",
  5704. ".signature.p7s",
  5705. "LICENSE.TXT",
  5706. "THIRD-PARTY-NOTICES.TXT",
  5707. "lib/MonoAndroid10/_._",
  5708. "lib/MonoTouch10/_._",
  5709. "lib/net451/System.Data.SqlClient.dll",
  5710. "lib/net46/System.Data.SqlClient.dll",
  5711. "lib/net461/System.Data.SqlClient.dll",
  5712. "lib/netstandard1.2/System.Data.SqlClient.dll",
  5713. "lib/netstandard1.3/System.Data.SqlClient.dll",
  5714. "lib/netstandard2.0/System.Data.SqlClient.dll",
  5715. "lib/xamarinios10/_._",
  5716. "lib/xamarinmac20/_._",
  5717. "lib/xamarintvos10/_._",
  5718. "lib/xamarinwatchos10/_._",
  5719. "ref/MonoAndroid10/_._",
  5720. "ref/MonoTouch10/_._",
  5721. "ref/net451/System.Data.SqlClient.dll",
  5722. "ref/net46/System.Data.SqlClient.dll",
  5723. "ref/net461/System.Data.SqlClient.dll",
  5724. "ref/net461/System.Data.SqlClient.xml",
  5725. "ref/netstandard1.2/System.Data.SqlClient.dll",
  5726. "ref/netstandard1.2/System.Data.SqlClient.xml",
  5727. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  5728. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  5729. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  5730. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  5731. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  5732. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  5733. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  5734. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  5735. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  5736. "ref/netstandard1.3/System.Data.SqlClient.dll",
  5737. "ref/netstandard1.3/System.Data.SqlClient.xml",
  5738. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  5739. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  5740. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  5741. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  5742. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  5743. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  5744. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  5745. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  5746. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  5747. "ref/netstandard2.0/System.Data.SqlClient.dll",
  5748. "ref/netstandard2.0/System.Data.SqlClient.xml",
  5749. "ref/xamarinios10/_._",
  5750. "ref/xamarinmac20/_._",
  5751. "ref/xamarintvos10/_._",
  5752. "ref/xamarinwatchos10/_._",
  5753. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  5754. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  5755. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  5756. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  5757. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  5758. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  5759. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  5760. "system.data.sqlclient.4.4.0.nupkg.sha512",
  5761. "system.data.sqlclient.nuspec",
  5762. "useSharedDesignerContext.txt",
  5763. "version.txt"
  5764. ]
  5765. },
  5766. "System.Diagnostics.Debug/4.3.0": {
  5767. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5768. "type": "package",
  5769. "path": "system.diagnostics.debug/4.3.0",
  5770. "files": [
  5771. ".nupkg.metadata",
  5772. ".signature.p7s",
  5773. "ThirdPartyNotices.txt",
  5774. "dotnet_library_license.txt",
  5775. "lib/MonoAndroid10/_._",
  5776. "lib/MonoTouch10/_._",
  5777. "lib/net45/_._",
  5778. "lib/portable-net45+win8+wp8+wpa81/_._",
  5779. "lib/win8/_._",
  5780. "lib/wp80/_._",
  5781. "lib/wpa81/_._",
  5782. "lib/xamarinios10/_._",
  5783. "lib/xamarinmac20/_._",
  5784. "lib/xamarintvos10/_._",
  5785. "lib/xamarinwatchos10/_._",
  5786. "ref/MonoAndroid10/_._",
  5787. "ref/MonoTouch10/_._",
  5788. "ref/net45/_._",
  5789. "ref/netcore50/System.Diagnostics.Debug.dll",
  5790. "ref/netcore50/System.Diagnostics.Debug.xml",
  5791. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5792. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5793. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5794. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5795. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5796. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5797. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5798. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5799. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5800. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5801. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5802. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5803. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5804. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5805. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5806. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5807. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5808. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5809. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5810. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5811. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5812. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5813. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5814. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5815. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5816. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5817. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5818. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5819. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5820. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5821. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5822. "ref/portable-net45+win8+wp8+wpa81/_._",
  5823. "ref/win8/_._",
  5824. "ref/wp80/_._",
  5825. "ref/wpa81/_._",
  5826. "ref/xamarinios10/_._",
  5827. "ref/xamarinmac20/_._",
  5828. "ref/xamarintvos10/_._",
  5829. "ref/xamarinwatchos10/_._",
  5830. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5831. "system.diagnostics.debug.nuspec"
  5832. ]
  5833. },
  5834. "System.Diagnostics.DiagnosticSource/4.7.1": {
  5835. "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  5836. "type": "package",
  5837. "path": "system.diagnostics.diagnosticsource/4.7.1",
  5838. "files": [
  5839. ".nupkg.metadata",
  5840. ".signature.p7s",
  5841. "Icon.png",
  5842. "LICENSE.TXT",
  5843. "THIRD-PARTY-NOTICES.TXT",
  5844. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5845. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5846. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5847. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5848. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5849. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5850. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5851. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5852. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5853. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5854. "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
  5855. "system.diagnostics.diagnosticsource.nuspec",
  5856. "useSharedDesignerContext.txt",
  5857. "version.txt"
  5858. ]
  5859. },
  5860. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  5861. "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
  5862. "type": "package",
  5863. "path": "system.diagnostics.textwritertracelistener/4.3.0",
  5864. "files": [
  5865. ".nupkg.metadata",
  5866. ".signature.p7s",
  5867. "ThirdPartyNotices.txt",
  5868. "dotnet_library_license.txt",
  5869. "lib/MonoAndroid10/_._",
  5870. "lib/MonoTouch10/_._",
  5871. "lib/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5872. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5873. "lib/xamarinios10/_._",
  5874. "lib/xamarinmac20/_._",
  5875. "lib/xamarintvos10/_._",
  5876. "lib/xamarinwatchos10/_._",
  5877. "ref/MonoAndroid10/_._",
  5878. "ref/MonoTouch10/_._",
  5879. "ref/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5880. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5881. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml",
  5882. "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml",
  5883. "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml",
  5884. "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml",
  5885. "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml",
  5886. "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml",
  5887. "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml",
  5888. "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml",
  5889. "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml",
  5890. "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml",
  5891. "ref/xamarinios10/_._",
  5892. "ref/xamarinmac20/_._",
  5893. "ref/xamarintvos10/_._",
  5894. "ref/xamarinwatchos10/_._",
  5895. "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512",
  5896. "system.diagnostics.textwritertracelistener.nuspec"
  5897. ]
  5898. },
  5899. "System.Diagnostics.Tools/4.3.0": {
  5900. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5901. "type": "package",
  5902. "path": "system.diagnostics.tools/4.3.0",
  5903. "files": [
  5904. ".nupkg.metadata",
  5905. ".signature.p7s",
  5906. "ThirdPartyNotices.txt",
  5907. "dotnet_library_license.txt",
  5908. "lib/MonoAndroid10/_._",
  5909. "lib/MonoTouch10/_._",
  5910. "lib/net45/_._",
  5911. "lib/portable-net45+win8+wp8+wpa81/_._",
  5912. "lib/win8/_._",
  5913. "lib/wp80/_._",
  5914. "lib/wpa81/_._",
  5915. "lib/xamarinios10/_._",
  5916. "lib/xamarinmac20/_._",
  5917. "lib/xamarintvos10/_._",
  5918. "lib/xamarinwatchos10/_._",
  5919. "ref/MonoAndroid10/_._",
  5920. "ref/MonoTouch10/_._",
  5921. "ref/net45/_._",
  5922. "ref/netcore50/System.Diagnostics.Tools.dll",
  5923. "ref/netcore50/System.Diagnostics.Tools.xml",
  5924. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5925. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5926. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5927. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5928. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5929. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5930. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5931. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5932. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5933. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5934. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5935. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5936. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5937. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5938. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5939. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5940. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5941. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5942. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5943. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5944. "ref/portable-net45+win8+wp8+wpa81/_._",
  5945. "ref/win8/_._",
  5946. "ref/wp80/_._",
  5947. "ref/wpa81/_._",
  5948. "ref/xamarinios10/_._",
  5949. "ref/xamarinmac20/_._",
  5950. "ref/xamarintvos10/_._",
  5951. "ref/xamarinwatchos10/_._",
  5952. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5953. "system.diagnostics.tools.nuspec"
  5954. ]
  5955. },
  5956. "System.Diagnostics.TraceSource/4.3.0": {
  5957. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  5958. "type": "package",
  5959. "path": "system.diagnostics.tracesource/4.3.0",
  5960. "files": [
  5961. ".nupkg.metadata",
  5962. ".signature.p7s",
  5963. "ThirdPartyNotices.txt",
  5964. "dotnet_library_license.txt",
  5965. "lib/MonoAndroid10/_._",
  5966. "lib/MonoTouch10/_._",
  5967. "lib/net46/System.Diagnostics.TraceSource.dll",
  5968. "lib/xamarinios10/_._",
  5969. "lib/xamarinmac20/_._",
  5970. "lib/xamarintvos10/_._",
  5971. "lib/xamarinwatchos10/_._",
  5972. "ref/MonoAndroid10/_._",
  5973. "ref/MonoTouch10/_._",
  5974. "ref/net46/System.Diagnostics.TraceSource.dll",
  5975. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5976. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5977. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5978. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5979. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5980. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5981. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5982. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5983. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5984. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5985. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5986. "ref/xamarinios10/_._",
  5987. "ref/xamarinmac20/_._",
  5988. "ref/xamarintvos10/_._",
  5989. "ref/xamarinwatchos10/_._",
  5990. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5991. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5992. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5993. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  5994. "system.diagnostics.tracesource.nuspec"
  5995. ]
  5996. },
  5997. "System.Diagnostics.Tracing/4.3.0": {
  5998. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5999. "type": "package",
  6000. "path": "system.diagnostics.tracing/4.3.0",
  6001. "files": [
  6002. ".nupkg.metadata",
  6003. ".signature.p7s",
  6004. "ThirdPartyNotices.txt",
  6005. "dotnet_library_license.txt",
  6006. "lib/MonoAndroid10/_._",
  6007. "lib/MonoTouch10/_._",
  6008. "lib/net45/_._",
  6009. "lib/net462/System.Diagnostics.Tracing.dll",
  6010. "lib/portable-net45+win8+wpa81/_._",
  6011. "lib/win8/_._",
  6012. "lib/wpa81/_._",
  6013. "lib/xamarinios10/_._",
  6014. "lib/xamarinmac20/_._",
  6015. "lib/xamarintvos10/_._",
  6016. "lib/xamarinwatchos10/_._",
  6017. "ref/MonoAndroid10/_._",
  6018. "ref/MonoTouch10/_._",
  6019. "ref/net45/_._",
  6020. "ref/net462/System.Diagnostics.Tracing.dll",
  6021. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6022. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6023. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6024. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6025. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6026. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6027. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6028. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6029. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6030. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6031. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6032. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6033. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6034. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6035. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6036. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6037. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6038. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6039. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6040. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6041. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6042. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6043. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6044. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6045. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6046. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6047. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6048. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6049. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6050. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6051. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6052. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6053. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6054. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6055. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6056. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6057. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6058. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6059. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6060. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6061. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6062. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6063. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6064. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6065. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6066. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6067. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6068. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6069. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6070. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6071. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6072. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6073. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6074. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6075. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6076. "ref/portable-net45+win8+wpa81/_._",
  6077. "ref/win8/_._",
  6078. "ref/wpa81/_._",
  6079. "ref/xamarinios10/_._",
  6080. "ref/xamarinmac20/_._",
  6081. "ref/xamarintvos10/_._",
  6082. "ref/xamarinwatchos10/_._",
  6083. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6084. "system.diagnostics.tracing.nuspec"
  6085. ]
  6086. },
  6087. "System.Drawing.Common/4.7.0": {
  6088. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  6089. "type": "package",
  6090. "path": "system.drawing.common/4.7.0",
  6091. "files": [
  6092. ".nupkg.metadata",
  6093. ".signature.p7s",
  6094. "LICENSE.TXT",
  6095. "THIRD-PARTY-NOTICES.TXT",
  6096. "lib/MonoAndroid10/_._",
  6097. "lib/MonoTouch10/_._",
  6098. "lib/net461/System.Drawing.Common.dll",
  6099. "lib/netstandard2.0/System.Drawing.Common.dll",
  6100. "lib/xamarinios10/_._",
  6101. "lib/xamarinmac20/_._",
  6102. "lib/xamarintvos10/_._",
  6103. "lib/xamarinwatchos10/_._",
  6104. "ref/MonoAndroid10/_._",
  6105. "ref/MonoTouch10/_._",
  6106. "ref/net461/System.Drawing.Common.dll",
  6107. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6108. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6109. "ref/netstandard2.0/System.Drawing.Common.dll",
  6110. "ref/xamarinios10/_._",
  6111. "ref/xamarinmac20/_._",
  6112. "ref/xamarintvos10/_._",
  6113. "ref/xamarinwatchos10/_._",
  6114. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6115. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6116. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6117. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6118. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6119. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6120. "system.drawing.common.4.7.0.nupkg.sha512",
  6121. "system.drawing.common.nuspec",
  6122. "useSharedDesignerContext.txt",
  6123. "version.txt"
  6124. ]
  6125. },
  6126. "System.Dynamic.Runtime/4.3.0": {
  6127. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6128. "type": "package",
  6129. "path": "system.dynamic.runtime/4.3.0",
  6130. "files": [
  6131. ".nupkg.metadata",
  6132. ".signature.p7s",
  6133. "ThirdPartyNotices.txt",
  6134. "dotnet_library_license.txt",
  6135. "lib/MonoAndroid10/_._",
  6136. "lib/MonoTouch10/_._",
  6137. "lib/net45/_._",
  6138. "lib/netcore50/System.Dynamic.Runtime.dll",
  6139. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6140. "lib/portable-net45+win8+wp8+wpa81/_._",
  6141. "lib/win8/_._",
  6142. "lib/wp80/_._",
  6143. "lib/wpa81/_._",
  6144. "lib/xamarinios10/_._",
  6145. "lib/xamarinmac20/_._",
  6146. "lib/xamarintvos10/_._",
  6147. "lib/xamarinwatchos10/_._",
  6148. "ref/MonoAndroid10/_._",
  6149. "ref/MonoTouch10/_._",
  6150. "ref/net45/_._",
  6151. "ref/netcore50/System.Dynamic.Runtime.dll",
  6152. "ref/netcore50/System.Dynamic.Runtime.xml",
  6153. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6154. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6155. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6156. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6157. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6158. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6159. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6160. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6161. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6162. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6163. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6164. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6165. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6166. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6167. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6168. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6169. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6170. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6171. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6172. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6173. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6174. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6175. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6176. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6177. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6178. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6179. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6180. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6181. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6182. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6183. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6184. "ref/portable-net45+win8+wp8+wpa81/_._",
  6185. "ref/win8/_._",
  6186. "ref/wp80/_._",
  6187. "ref/wpa81/_._",
  6188. "ref/xamarinios10/_._",
  6189. "ref/xamarinmac20/_._",
  6190. "ref/xamarintvos10/_._",
  6191. "ref/xamarinwatchos10/_._",
  6192. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6193. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6194. "system.dynamic.runtime.nuspec"
  6195. ]
  6196. },
  6197. "System.Globalization/4.3.0": {
  6198. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6199. "type": "package",
  6200. "path": "system.globalization/4.3.0",
  6201. "files": [
  6202. ".nupkg.metadata",
  6203. ".signature.p7s",
  6204. "ThirdPartyNotices.txt",
  6205. "dotnet_library_license.txt",
  6206. "lib/MonoAndroid10/_._",
  6207. "lib/MonoTouch10/_._",
  6208. "lib/net45/_._",
  6209. "lib/portable-net45+win8+wp8+wpa81/_._",
  6210. "lib/win8/_._",
  6211. "lib/wp80/_._",
  6212. "lib/wpa81/_._",
  6213. "lib/xamarinios10/_._",
  6214. "lib/xamarinmac20/_._",
  6215. "lib/xamarintvos10/_._",
  6216. "lib/xamarinwatchos10/_._",
  6217. "ref/MonoAndroid10/_._",
  6218. "ref/MonoTouch10/_._",
  6219. "ref/net45/_._",
  6220. "ref/netcore50/System.Globalization.dll",
  6221. "ref/netcore50/System.Globalization.xml",
  6222. "ref/netcore50/de/System.Globalization.xml",
  6223. "ref/netcore50/es/System.Globalization.xml",
  6224. "ref/netcore50/fr/System.Globalization.xml",
  6225. "ref/netcore50/it/System.Globalization.xml",
  6226. "ref/netcore50/ja/System.Globalization.xml",
  6227. "ref/netcore50/ko/System.Globalization.xml",
  6228. "ref/netcore50/ru/System.Globalization.xml",
  6229. "ref/netcore50/zh-hans/System.Globalization.xml",
  6230. "ref/netcore50/zh-hant/System.Globalization.xml",
  6231. "ref/netstandard1.0/System.Globalization.dll",
  6232. "ref/netstandard1.0/System.Globalization.xml",
  6233. "ref/netstandard1.0/de/System.Globalization.xml",
  6234. "ref/netstandard1.0/es/System.Globalization.xml",
  6235. "ref/netstandard1.0/fr/System.Globalization.xml",
  6236. "ref/netstandard1.0/it/System.Globalization.xml",
  6237. "ref/netstandard1.0/ja/System.Globalization.xml",
  6238. "ref/netstandard1.0/ko/System.Globalization.xml",
  6239. "ref/netstandard1.0/ru/System.Globalization.xml",
  6240. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6241. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6242. "ref/netstandard1.3/System.Globalization.dll",
  6243. "ref/netstandard1.3/System.Globalization.xml",
  6244. "ref/netstandard1.3/de/System.Globalization.xml",
  6245. "ref/netstandard1.3/es/System.Globalization.xml",
  6246. "ref/netstandard1.3/fr/System.Globalization.xml",
  6247. "ref/netstandard1.3/it/System.Globalization.xml",
  6248. "ref/netstandard1.3/ja/System.Globalization.xml",
  6249. "ref/netstandard1.3/ko/System.Globalization.xml",
  6250. "ref/netstandard1.3/ru/System.Globalization.xml",
  6251. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6252. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6253. "ref/portable-net45+win8+wp8+wpa81/_._",
  6254. "ref/win8/_._",
  6255. "ref/wp80/_._",
  6256. "ref/wpa81/_._",
  6257. "ref/xamarinios10/_._",
  6258. "ref/xamarinmac20/_._",
  6259. "ref/xamarintvos10/_._",
  6260. "ref/xamarinwatchos10/_._",
  6261. "system.globalization.4.3.0.nupkg.sha512",
  6262. "system.globalization.nuspec"
  6263. ]
  6264. },
  6265. "System.Globalization.Calendars/4.3.0": {
  6266. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6267. "type": "package",
  6268. "path": "system.globalization.calendars/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/net46/System.Globalization.Calendars.dll",
  6277. "lib/xamarinios10/_._",
  6278. "lib/xamarinmac20/_._",
  6279. "lib/xamarintvos10/_._",
  6280. "lib/xamarinwatchos10/_._",
  6281. "ref/MonoAndroid10/_._",
  6282. "ref/MonoTouch10/_._",
  6283. "ref/net46/System.Globalization.Calendars.dll",
  6284. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6285. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6286. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6287. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6288. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6289. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6290. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6291. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6292. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6293. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6294. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6295. "ref/xamarinios10/_._",
  6296. "ref/xamarinmac20/_._",
  6297. "ref/xamarintvos10/_._",
  6298. "ref/xamarinwatchos10/_._",
  6299. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6300. "system.globalization.calendars.nuspec"
  6301. ]
  6302. },
  6303. "System.Globalization.Extensions/4.3.0": {
  6304. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6305. "type": "package",
  6306. "path": "system.globalization.extensions/4.3.0",
  6307. "files": [
  6308. ".nupkg.metadata",
  6309. ".signature.p7s",
  6310. "ThirdPartyNotices.txt",
  6311. "dotnet_library_license.txt",
  6312. "lib/MonoAndroid10/_._",
  6313. "lib/MonoTouch10/_._",
  6314. "lib/net46/System.Globalization.Extensions.dll",
  6315. "lib/xamarinios10/_._",
  6316. "lib/xamarinmac20/_._",
  6317. "lib/xamarintvos10/_._",
  6318. "lib/xamarinwatchos10/_._",
  6319. "ref/MonoAndroid10/_._",
  6320. "ref/MonoTouch10/_._",
  6321. "ref/net46/System.Globalization.Extensions.dll",
  6322. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6323. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6324. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6325. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6326. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6327. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6328. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6329. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6330. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6331. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6332. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6333. "ref/xamarinios10/_._",
  6334. "ref/xamarinmac20/_._",
  6335. "ref/xamarintvos10/_._",
  6336. "ref/xamarinwatchos10/_._",
  6337. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6338. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6339. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6340. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6341. "system.globalization.extensions.nuspec"
  6342. ]
  6343. },
  6344. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  6345. "sha512": "KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  6346. "type": "package",
  6347. "path": "system.identitymodel.tokens.jwt/5.6.0",
  6348. "files": [
  6349. ".nupkg.metadata",
  6350. ".signature.p7s",
  6351. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  6352. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  6353. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  6354. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  6355. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  6356. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  6357. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  6358. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  6359. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  6360. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  6361. "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512",
  6362. "system.identitymodel.tokens.jwt.nuspec"
  6363. ]
  6364. },
  6365. "System.IO/4.3.0": {
  6366. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6367. "type": "package",
  6368. "path": "system.io/4.3.0",
  6369. "files": [
  6370. ".nupkg.metadata",
  6371. ".signature.p7s",
  6372. "ThirdPartyNotices.txt",
  6373. "dotnet_library_license.txt",
  6374. "lib/MonoAndroid10/_._",
  6375. "lib/MonoTouch10/_._",
  6376. "lib/net45/_._",
  6377. "lib/net462/System.IO.dll",
  6378. "lib/portable-net45+win8+wp8+wpa81/_._",
  6379. "lib/win8/_._",
  6380. "lib/wp80/_._",
  6381. "lib/wpa81/_._",
  6382. "lib/xamarinios10/_._",
  6383. "lib/xamarinmac20/_._",
  6384. "lib/xamarintvos10/_._",
  6385. "lib/xamarinwatchos10/_._",
  6386. "ref/MonoAndroid10/_._",
  6387. "ref/MonoTouch10/_._",
  6388. "ref/net45/_._",
  6389. "ref/net462/System.IO.dll",
  6390. "ref/netcore50/System.IO.dll",
  6391. "ref/netcore50/System.IO.xml",
  6392. "ref/netcore50/de/System.IO.xml",
  6393. "ref/netcore50/es/System.IO.xml",
  6394. "ref/netcore50/fr/System.IO.xml",
  6395. "ref/netcore50/it/System.IO.xml",
  6396. "ref/netcore50/ja/System.IO.xml",
  6397. "ref/netcore50/ko/System.IO.xml",
  6398. "ref/netcore50/ru/System.IO.xml",
  6399. "ref/netcore50/zh-hans/System.IO.xml",
  6400. "ref/netcore50/zh-hant/System.IO.xml",
  6401. "ref/netstandard1.0/System.IO.dll",
  6402. "ref/netstandard1.0/System.IO.xml",
  6403. "ref/netstandard1.0/de/System.IO.xml",
  6404. "ref/netstandard1.0/es/System.IO.xml",
  6405. "ref/netstandard1.0/fr/System.IO.xml",
  6406. "ref/netstandard1.0/it/System.IO.xml",
  6407. "ref/netstandard1.0/ja/System.IO.xml",
  6408. "ref/netstandard1.0/ko/System.IO.xml",
  6409. "ref/netstandard1.0/ru/System.IO.xml",
  6410. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6411. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6412. "ref/netstandard1.3/System.IO.dll",
  6413. "ref/netstandard1.3/System.IO.xml",
  6414. "ref/netstandard1.3/de/System.IO.xml",
  6415. "ref/netstandard1.3/es/System.IO.xml",
  6416. "ref/netstandard1.3/fr/System.IO.xml",
  6417. "ref/netstandard1.3/it/System.IO.xml",
  6418. "ref/netstandard1.3/ja/System.IO.xml",
  6419. "ref/netstandard1.3/ko/System.IO.xml",
  6420. "ref/netstandard1.3/ru/System.IO.xml",
  6421. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6422. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6423. "ref/netstandard1.5/System.IO.dll",
  6424. "ref/netstandard1.5/System.IO.xml",
  6425. "ref/netstandard1.5/de/System.IO.xml",
  6426. "ref/netstandard1.5/es/System.IO.xml",
  6427. "ref/netstandard1.5/fr/System.IO.xml",
  6428. "ref/netstandard1.5/it/System.IO.xml",
  6429. "ref/netstandard1.5/ja/System.IO.xml",
  6430. "ref/netstandard1.5/ko/System.IO.xml",
  6431. "ref/netstandard1.5/ru/System.IO.xml",
  6432. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6433. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6434. "ref/portable-net45+win8+wp8+wpa81/_._",
  6435. "ref/win8/_._",
  6436. "ref/wp80/_._",
  6437. "ref/wpa81/_._",
  6438. "ref/xamarinios10/_._",
  6439. "ref/xamarinmac20/_._",
  6440. "ref/xamarintvos10/_._",
  6441. "ref/xamarinwatchos10/_._",
  6442. "system.io.4.3.0.nupkg.sha512",
  6443. "system.io.nuspec"
  6444. ]
  6445. },
  6446. "System.IO.Compression/4.3.0": {
  6447. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6448. "type": "package",
  6449. "path": "system.io.compression/4.3.0",
  6450. "files": [
  6451. ".nupkg.metadata",
  6452. ".signature.p7s",
  6453. "ThirdPartyNotices.txt",
  6454. "dotnet_library_license.txt",
  6455. "lib/MonoAndroid10/_._",
  6456. "lib/MonoTouch10/_._",
  6457. "lib/net45/_._",
  6458. "lib/net46/System.IO.Compression.dll",
  6459. "lib/portable-net45+win8+wpa81/_._",
  6460. "lib/win8/_._",
  6461. "lib/wpa81/_._",
  6462. "lib/xamarinios10/_._",
  6463. "lib/xamarinmac20/_._",
  6464. "lib/xamarintvos10/_._",
  6465. "lib/xamarinwatchos10/_._",
  6466. "ref/MonoAndroid10/_._",
  6467. "ref/MonoTouch10/_._",
  6468. "ref/net45/_._",
  6469. "ref/net46/System.IO.Compression.dll",
  6470. "ref/netcore50/System.IO.Compression.dll",
  6471. "ref/netcore50/System.IO.Compression.xml",
  6472. "ref/netcore50/de/System.IO.Compression.xml",
  6473. "ref/netcore50/es/System.IO.Compression.xml",
  6474. "ref/netcore50/fr/System.IO.Compression.xml",
  6475. "ref/netcore50/it/System.IO.Compression.xml",
  6476. "ref/netcore50/ja/System.IO.Compression.xml",
  6477. "ref/netcore50/ko/System.IO.Compression.xml",
  6478. "ref/netcore50/ru/System.IO.Compression.xml",
  6479. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6480. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6481. "ref/netstandard1.1/System.IO.Compression.dll",
  6482. "ref/netstandard1.1/System.IO.Compression.xml",
  6483. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6484. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6485. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6486. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6487. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6488. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6489. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6490. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6491. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6492. "ref/netstandard1.3/System.IO.Compression.dll",
  6493. "ref/netstandard1.3/System.IO.Compression.xml",
  6494. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6495. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6496. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6497. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6498. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6499. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6500. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6501. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6502. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6503. "ref/portable-net45+win8+wpa81/_._",
  6504. "ref/win8/_._",
  6505. "ref/wpa81/_._",
  6506. "ref/xamarinios10/_._",
  6507. "ref/xamarinmac20/_._",
  6508. "ref/xamarintvos10/_._",
  6509. "ref/xamarinwatchos10/_._",
  6510. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6511. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6512. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6513. "system.io.compression.4.3.0.nupkg.sha512",
  6514. "system.io.compression.nuspec"
  6515. ]
  6516. },
  6517. "System.IO.Compression.ZipFile/4.3.0": {
  6518. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6519. "type": "package",
  6520. "path": "system.io.compression.zipfile/4.3.0",
  6521. "files": [
  6522. ".nupkg.metadata",
  6523. ".signature.p7s",
  6524. "ThirdPartyNotices.txt",
  6525. "dotnet_library_license.txt",
  6526. "lib/MonoAndroid10/_._",
  6527. "lib/MonoTouch10/_._",
  6528. "lib/net46/System.IO.Compression.ZipFile.dll",
  6529. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6530. "lib/xamarinios10/_._",
  6531. "lib/xamarinmac20/_._",
  6532. "lib/xamarintvos10/_._",
  6533. "lib/xamarinwatchos10/_._",
  6534. "ref/MonoAndroid10/_._",
  6535. "ref/MonoTouch10/_._",
  6536. "ref/net46/System.IO.Compression.ZipFile.dll",
  6537. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6538. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6539. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6540. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6541. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6542. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6543. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6544. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6545. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6546. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6547. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6548. "ref/xamarinios10/_._",
  6549. "ref/xamarinmac20/_._",
  6550. "ref/xamarintvos10/_._",
  6551. "ref/xamarinwatchos10/_._",
  6552. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6553. "system.io.compression.zipfile.nuspec"
  6554. ]
  6555. },
  6556. "System.IO.FileSystem/4.3.0": {
  6557. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6558. "type": "package",
  6559. "path": "system.io.filesystem/4.3.0",
  6560. "files": [
  6561. ".nupkg.metadata",
  6562. ".signature.p7s",
  6563. "ThirdPartyNotices.txt",
  6564. "dotnet_library_license.txt",
  6565. "lib/MonoAndroid10/_._",
  6566. "lib/MonoTouch10/_._",
  6567. "lib/net46/System.IO.FileSystem.dll",
  6568. "lib/xamarinios10/_._",
  6569. "lib/xamarinmac20/_._",
  6570. "lib/xamarintvos10/_._",
  6571. "lib/xamarinwatchos10/_._",
  6572. "ref/MonoAndroid10/_._",
  6573. "ref/MonoTouch10/_._",
  6574. "ref/net46/System.IO.FileSystem.dll",
  6575. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6576. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6577. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6578. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6579. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6580. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6581. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6582. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6583. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6584. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6585. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6586. "ref/xamarinios10/_._",
  6587. "ref/xamarinmac20/_._",
  6588. "ref/xamarintvos10/_._",
  6589. "ref/xamarinwatchos10/_._",
  6590. "system.io.filesystem.4.3.0.nupkg.sha512",
  6591. "system.io.filesystem.nuspec"
  6592. ]
  6593. },
  6594. "System.IO.FileSystem.Primitives/4.3.0": {
  6595. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6596. "type": "package",
  6597. "path": "system.io.filesystem.primitives/4.3.0",
  6598. "files": [
  6599. ".nupkg.metadata",
  6600. ".signature.p7s",
  6601. "ThirdPartyNotices.txt",
  6602. "dotnet_library_license.txt",
  6603. "lib/MonoAndroid10/_._",
  6604. "lib/MonoTouch10/_._",
  6605. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6606. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6607. "lib/xamarinios10/_._",
  6608. "lib/xamarinmac20/_._",
  6609. "lib/xamarintvos10/_._",
  6610. "lib/xamarinwatchos10/_._",
  6611. "ref/MonoAndroid10/_._",
  6612. "ref/MonoTouch10/_._",
  6613. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6614. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6615. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6616. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6617. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6618. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6619. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6620. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6621. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6622. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6623. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6624. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6625. "ref/xamarinios10/_._",
  6626. "ref/xamarinmac20/_._",
  6627. "ref/xamarintvos10/_._",
  6628. "ref/xamarinwatchos10/_._",
  6629. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6630. "system.io.filesystem.primitives.nuspec"
  6631. ]
  6632. },
  6633. "System.Linq/4.3.0": {
  6634. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6635. "type": "package",
  6636. "path": "system.linq/4.3.0",
  6637. "files": [
  6638. ".nupkg.metadata",
  6639. ".signature.p7s",
  6640. "ThirdPartyNotices.txt",
  6641. "dotnet_library_license.txt",
  6642. "lib/MonoAndroid10/_._",
  6643. "lib/MonoTouch10/_._",
  6644. "lib/net45/_._",
  6645. "lib/net463/System.Linq.dll",
  6646. "lib/netcore50/System.Linq.dll",
  6647. "lib/netstandard1.6/System.Linq.dll",
  6648. "lib/portable-net45+win8+wp8+wpa81/_._",
  6649. "lib/win8/_._",
  6650. "lib/wp80/_._",
  6651. "lib/wpa81/_._",
  6652. "lib/xamarinios10/_._",
  6653. "lib/xamarinmac20/_._",
  6654. "lib/xamarintvos10/_._",
  6655. "lib/xamarinwatchos10/_._",
  6656. "ref/MonoAndroid10/_._",
  6657. "ref/MonoTouch10/_._",
  6658. "ref/net45/_._",
  6659. "ref/net463/System.Linq.dll",
  6660. "ref/netcore50/System.Linq.dll",
  6661. "ref/netcore50/System.Linq.xml",
  6662. "ref/netcore50/de/System.Linq.xml",
  6663. "ref/netcore50/es/System.Linq.xml",
  6664. "ref/netcore50/fr/System.Linq.xml",
  6665. "ref/netcore50/it/System.Linq.xml",
  6666. "ref/netcore50/ja/System.Linq.xml",
  6667. "ref/netcore50/ko/System.Linq.xml",
  6668. "ref/netcore50/ru/System.Linq.xml",
  6669. "ref/netcore50/zh-hans/System.Linq.xml",
  6670. "ref/netcore50/zh-hant/System.Linq.xml",
  6671. "ref/netstandard1.0/System.Linq.dll",
  6672. "ref/netstandard1.0/System.Linq.xml",
  6673. "ref/netstandard1.0/de/System.Linq.xml",
  6674. "ref/netstandard1.0/es/System.Linq.xml",
  6675. "ref/netstandard1.0/fr/System.Linq.xml",
  6676. "ref/netstandard1.0/it/System.Linq.xml",
  6677. "ref/netstandard1.0/ja/System.Linq.xml",
  6678. "ref/netstandard1.0/ko/System.Linq.xml",
  6679. "ref/netstandard1.0/ru/System.Linq.xml",
  6680. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6681. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6682. "ref/netstandard1.6/System.Linq.dll",
  6683. "ref/netstandard1.6/System.Linq.xml",
  6684. "ref/netstandard1.6/de/System.Linq.xml",
  6685. "ref/netstandard1.6/es/System.Linq.xml",
  6686. "ref/netstandard1.6/fr/System.Linq.xml",
  6687. "ref/netstandard1.6/it/System.Linq.xml",
  6688. "ref/netstandard1.6/ja/System.Linq.xml",
  6689. "ref/netstandard1.6/ko/System.Linq.xml",
  6690. "ref/netstandard1.6/ru/System.Linq.xml",
  6691. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6692. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6693. "ref/portable-net45+win8+wp8+wpa81/_._",
  6694. "ref/win8/_._",
  6695. "ref/wp80/_._",
  6696. "ref/wpa81/_._",
  6697. "ref/xamarinios10/_._",
  6698. "ref/xamarinmac20/_._",
  6699. "ref/xamarintvos10/_._",
  6700. "ref/xamarinwatchos10/_._",
  6701. "system.linq.4.3.0.nupkg.sha512",
  6702. "system.linq.nuspec"
  6703. ]
  6704. },
  6705. "System.Linq.Expressions/4.3.0": {
  6706. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6707. "type": "package",
  6708. "path": "system.linq.expressions/4.3.0",
  6709. "files": [
  6710. ".nupkg.metadata",
  6711. ".signature.p7s",
  6712. "ThirdPartyNotices.txt",
  6713. "dotnet_library_license.txt",
  6714. "lib/MonoAndroid10/_._",
  6715. "lib/MonoTouch10/_._",
  6716. "lib/net45/_._",
  6717. "lib/net463/System.Linq.Expressions.dll",
  6718. "lib/netcore50/System.Linq.Expressions.dll",
  6719. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6720. "lib/portable-net45+win8+wp8+wpa81/_._",
  6721. "lib/win8/_._",
  6722. "lib/wp80/_._",
  6723. "lib/wpa81/_._",
  6724. "lib/xamarinios10/_._",
  6725. "lib/xamarinmac20/_._",
  6726. "lib/xamarintvos10/_._",
  6727. "lib/xamarinwatchos10/_._",
  6728. "ref/MonoAndroid10/_._",
  6729. "ref/MonoTouch10/_._",
  6730. "ref/net45/_._",
  6731. "ref/net463/System.Linq.Expressions.dll",
  6732. "ref/netcore50/System.Linq.Expressions.dll",
  6733. "ref/netcore50/System.Linq.Expressions.xml",
  6734. "ref/netcore50/de/System.Linq.Expressions.xml",
  6735. "ref/netcore50/es/System.Linq.Expressions.xml",
  6736. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6737. "ref/netcore50/it/System.Linq.Expressions.xml",
  6738. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6739. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6740. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6741. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6742. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6743. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6744. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6745. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6746. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6747. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6748. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6749. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6750. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6751. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6752. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6753. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6754. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6755. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6756. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6757. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6758. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6759. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6760. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6761. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6762. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6763. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6764. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6765. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6766. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6767. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6768. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6769. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6770. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6771. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6772. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6773. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6774. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6775. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6776. "ref/portable-net45+win8+wp8+wpa81/_._",
  6777. "ref/win8/_._",
  6778. "ref/wp80/_._",
  6779. "ref/wpa81/_._",
  6780. "ref/xamarinios10/_._",
  6781. "ref/xamarinmac20/_._",
  6782. "ref/xamarintvos10/_._",
  6783. "ref/xamarinwatchos10/_._",
  6784. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6785. "system.linq.expressions.4.3.0.nupkg.sha512",
  6786. "system.linq.expressions.nuspec"
  6787. ]
  6788. },
  6789. "System.Management/5.0.0": {
  6790. "sha512": "MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==",
  6791. "type": "package",
  6792. "path": "system.management/5.0.0",
  6793. "files": [
  6794. ".nupkg.metadata",
  6795. ".signature.p7s",
  6796. "Icon.png",
  6797. "LICENSE.TXT",
  6798. "THIRD-PARTY-NOTICES.TXT",
  6799. "lib/net45/_._",
  6800. "lib/netstandard2.0/System.Management.dll",
  6801. "lib/netstandard2.0/System.Management.xml",
  6802. "ref/net45/_._",
  6803. "ref/netstandard2.0/System.Management.dll",
  6804. "ref/netstandard2.0/System.Management.xml",
  6805. "runtimes/win/lib/net45/_._",
  6806. "runtimes/win/lib/netcoreapp2.0/System.Management.dll",
  6807. "runtimes/win/lib/netcoreapp2.0/System.Management.xml",
  6808. "system.management.5.0.0.nupkg.sha512",
  6809. "system.management.nuspec",
  6810. "useSharedDesignerContext.txt",
  6811. "version.txt"
  6812. ]
  6813. },
  6814. "System.Net.Http/4.3.0": {
  6815. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6816. "type": "package",
  6817. "path": "system.net.http/4.3.0",
  6818. "files": [
  6819. ".nupkg.metadata",
  6820. ".signature.p7s",
  6821. "ThirdPartyNotices.txt",
  6822. "dotnet_library_license.txt",
  6823. "lib/Xamarinmac20/_._",
  6824. "lib/monoandroid10/_._",
  6825. "lib/monotouch10/_._",
  6826. "lib/net45/_._",
  6827. "lib/net46/System.Net.Http.dll",
  6828. "lib/portable-net45+win8+wpa81/_._",
  6829. "lib/win8/_._",
  6830. "lib/wpa81/_._",
  6831. "lib/xamarinios10/_._",
  6832. "lib/xamarintvos10/_._",
  6833. "lib/xamarinwatchos10/_._",
  6834. "ref/Xamarinmac20/_._",
  6835. "ref/monoandroid10/_._",
  6836. "ref/monotouch10/_._",
  6837. "ref/net45/_._",
  6838. "ref/net46/System.Net.Http.dll",
  6839. "ref/net46/System.Net.Http.xml",
  6840. "ref/net46/de/System.Net.Http.xml",
  6841. "ref/net46/es/System.Net.Http.xml",
  6842. "ref/net46/fr/System.Net.Http.xml",
  6843. "ref/net46/it/System.Net.Http.xml",
  6844. "ref/net46/ja/System.Net.Http.xml",
  6845. "ref/net46/ko/System.Net.Http.xml",
  6846. "ref/net46/ru/System.Net.Http.xml",
  6847. "ref/net46/zh-hans/System.Net.Http.xml",
  6848. "ref/net46/zh-hant/System.Net.Http.xml",
  6849. "ref/netcore50/System.Net.Http.dll",
  6850. "ref/netcore50/System.Net.Http.xml",
  6851. "ref/netcore50/de/System.Net.Http.xml",
  6852. "ref/netcore50/es/System.Net.Http.xml",
  6853. "ref/netcore50/fr/System.Net.Http.xml",
  6854. "ref/netcore50/it/System.Net.Http.xml",
  6855. "ref/netcore50/ja/System.Net.Http.xml",
  6856. "ref/netcore50/ko/System.Net.Http.xml",
  6857. "ref/netcore50/ru/System.Net.Http.xml",
  6858. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6859. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6860. "ref/netstandard1.1/System.Net.Http.dll",
  6861. "ref/netstandard1.1/System.Net.Http.xml",
  6862. "ref/netstandard1.1/de/System.Net.Http.xml",
  6863. "ref/netstandard1.1/es/System.Net.Http.xml",
  6864. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6865. "ref/netstandard1.1/it/System.Net.Http.xml",
  6866. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6867. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6868. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6869. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6870. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6871. "ref/netstandard1.3/System.Net.Http.dll",
  6872. "ref/netstandard1.3/System.Net.Http.xml",
  6873. "ref/netstandard1.3/de/System.Net.Http.xml",
  6874. "ref/netstandard1.3/es/System.Net.Http.xml",
  6875. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6876. "ref/netstandard1.3/it/System.Net.Http.xml",
  6877. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6878. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6879. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6880. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6881. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6882. "ref/portable-net45+win8+wpa81/_._",
  6883. "ref/win8/_._",
  6884. "ref/wpa81/_._",
  6885. "ref/xamarinios10/_._",
  6886. "ref/xamarintvos10/_._",
  6887. "ref/xamarinwatchos10/_._",
  6888. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6889. "runtimes/win/lib/net46/System.Net.Http.dll",
  6890. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6891. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6892. "system.net.http.4.3.0.nupkg.sha512",
  6893. "system.net.http.nuspec"
  6894. ]
  6895. },
  6896. "System.Net.Http.WinHttpHandler/4.4.0": {
  6897. "sha512": "ZmsFZIZ4PL2UfUlfj4KCzzAGGE2SF39ENIqtvfgu0bwMEAe3J3CqZr765E2W6eQQtNK08/8DpHcsA0sAKZdEtA==",
  6898. "type": "package",
  6899. "path": "system.net.http.winhttphandler/4.4.0",
  6900. "files": [
  6901. ".nupkg.metadata",
  6902. ".signature.p7s",
  6903. "LICENSE.TXT",
  6904. "THIRD-PARTY-NOTICES.TXT",
  6905. "lib/net46/System.Net.Http.WinHttpHandler.dll",
  6906. "lib/net461/System.Net.Http.WinHttpHandler.dll",
  6907. "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6908. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6909. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6910. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.xml",
  6911. "ref/netstandard1.3/de/System.Net.Http.WinHttpHandler.xml",
  6912. "ref/netstandard1.3/es/System.Net.Http.WinHttpHandler.xml",
  6913. "ref/netstandard1.3/fr/System.Net.Http.WinHttpHandler.xml",
  6914. "ref/netstandard1.3/it/System.Net.Http.WinHttpHandler.xml",
  6915. "ref/netstandard1.3/ja/System.Net.Http.WinHttpHandler.xml",
  6916. "ref/netstandard1.3/ko/System.Net.Http.WinHttpHandler.xml",
  6917. "ref/netstandard1.3/ru/System.Net.Http.WinHttpHandler.xml",
  6918. "ref/netstandard1.3/zh-hans/System.Net.Http.WinHttpHandler.xml",
  6919. "ref/netstandard1.3/zh-hant/System.Net.Http.WinHttpHandler.xml",
  6920. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6921. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.xml",
  6922. "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll",
  6923. "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll",
  6924. "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6925. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6926. "system.net.http.winhttphandler.4.4.0.nupkg.sha512",
  6927. "system.net.http.winhttphandler.nuspec",
  6928. "useSharedDesignerContext.txt",
  6929. "version.txt"
  6930. ]
  6931. },
  6932. "System.Net.Primitives/4.3.0": {
  6933. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6934. "type": "package",
  6935. "path": "system.net.primitives/4.3.0",
  6936. "files": [
  6937. ".nupkg.metadata",
  6938. ".signature.p7s",
  6939. "ThirdPartyNotices.txt",
  6940. "dotnet_library_license.txt",
  6941. "lib/MonoAndroid10/_._",
  6942. "lib/MonoTouch10/_._",
  6943. "lib/net45/_._",
  6944. "lib/portable-net45+win8+wp8+wpa81/_._",
  6945. "lib/win8/_._",
  6946. "lib/wp80/_._",
  6947. "lib/wpa81/_._",
  6948. "lib/xamarinios10/_._",
  6949. "lib/xamarinmac20/_._",
  6950. "lib/xamarintvos10/_._",
  6951. "lib/xamarinwatchos10/_._",
  6952. "ref/MonoAndroid10/_._",
  6953. "ref/MonoTouch10/_._",
  6954. "ref/net45/_._",
  6955. "ref/netcore50/System.Net.Primitives.dll",
  6956. "ref/netcore50/System.Net.Primitives.xml",
  6957. "ref/netcore50/de/System.Net.Primitives.xml",
  6958. "ref/netcore50/es/System.Net.Primitives.xml",
  6959. "ref/netcore50/fr/System.Net.Primitives.xml",
  6960. "ref/netcore50/it/System.Net.Primitives.xml",
  6961. "ref/netcore50/ja/System.Net.Primitives.xml",
  6962. "ref/netcore50/ko/System.Net.Primitives.xml",
  6963. "ref/netcore50/ru/System.Net.Primitives.xml",
  6964. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6965. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6966. "ref/netstandard1.0/System.Net.Primitives.dll",
  6967. "ref/netstandard1.0/System.Net.Primitives.xml",
  6968. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6969. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6970. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6971. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6972. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6973. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6974. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6975. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6976. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6977. "ref/netstandard1.1/System.Net.Primitives.dll",
  6978. "ref/netstandard1.1/System.Net.Primitives.xml",
  6979. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6980. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6981. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6982. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6983. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6984. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6985. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6986. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6987. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6988. "ref/netstandard1.3/System.Net.Primitives.dll",
  6989. "ref/netstandard1.3/System.Net.Primitives.xml",
  6990. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6991. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6992. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6993. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6994. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6995. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6996. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6997. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6998. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6999. "ref/portable-net45+win8+wp8+wpa81/_._",
  7000. "ref/win8/_._",
  7001. "ref/wp80/_._",
  7002. "ref/wpa81/_._",
  7003. "ref/xamarinios10/_._",
  7004. "ref/xamarinmac20/_._",
  7005. "ref/xamarintvos10/_._",
  7006. "ref/xamarinwatchos10/_._",
  7007. "system.net.primitives.4.3.0.nupkg.sha512",
  7008. "system.net.primitives.nuspec"
  7009. ]
  7010. },
  7011. "System.Net.Requests/4.3.0": {
  7012. "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
  7013. "type": "package",
  7014. "path": "system.net.requests/4.3.0",
  7015. "files": [
  7016. ".nupkg.metadata",
  7017. ".signature.p7s",
  7018. "ThirdPartyNotices.txt",
  7019. "dotnet_library_license.txt",
  7020. "lib/MonoAndroid10/_._",
  7021. "lib/MonoTouch10/_._",
  7022. "lib/net45/_._",
  7023. "lib/portable-net45+win8+wp8+wpa81/_._",
  7024. "lib/win8/_._",
  7025. "lib/wp80/_._",
  7026. "lib/wpa81/_._",
  7027. "lib/xamarinios10/_._",
  7028. "lib/xamarinmac20/_._",
  7029. "lib/xamarintvos10/_._",
  7030. "lib/xamarinwatchos10/_._",
  7031. "ref/MonoAndroid10/_._",
  7032. "ref/MonoTouch10/_._",
  7033. "ref/net45/_._",
  7034. "ref/net46/_._",
  7035. "ref/netcore50/System.Net.Requests.dll",
  7036. "ref/netcore50/System.Net.Requests.xml",
  7037. "ref/netcore50/de/System.Net.Requests.xml",
  7038. "ref/netcore50/es/System.Net.Requests.xml",
  7039. "ref/netcore50/fr/System.Net.Requests.xml",
  7040. "ref/netcore50/it/System.Net.Requests.xml",
  7041. "ref/netcore50/ja/System.Net.Requests.xml",
  7042. "ref/netcore50/ko/System.Net.Requests.xml",
  7043. "ref/netcore50/ru/System.Net.Requests.xml",
  7044. "ref/netcore50/zh-hans/System.Net.Requests.xml",
  7045. "ref/netcore50/zh-hant/System.Net.Requests.xml",
  7046. "ref/netstandard1.0/System.Net.Requests.dll",
  7047. "ref/netstandard1.0/System.Net.Requests.xml",
  7048. "ref/netstandard1.0/de/System.Net.Requests.xml",
  7049. "ref/netstandard1.0/es/System.Net.Requests.xml",
  7050. "ref/netstandard1.0/fr/System.Net.Requests.xml",
  7051. "ref/netstandard1.0/it/System.Net.Requests.xml",
  7052. "ref/netstandard1.0/ja/System.Net.Requests.xml",
  7053. "ref/netstandard1.0/ko/System.Net.Requests.xml",
  7054. "ref/netstandard1.0/ru/System.Net.Requests.xml",
  7055. "ref/netstandard1.0/zh-hans/System.Net.Requests.xml",
  7056. "ref/netstandard1.0/zh-hant/System.Net.Requests.xml",
  7057. "ref/netstandard1.1/System.Net.Requests.dll",
  7058. "ref/netstandard1.1/System.Net.Requests.xml",
  7059. "ref/netstandard1.1/de/System.Net.Requests.xml",
  7060. "ref/netstandard1.1/es/System.Net.Requests.xml",
  7061. "ref/netstandard1.1/fr/System.Net.Requests.xml",
  7062. "ref/netstandard1.1/it/System.Net.Requests.xml",
  7063. "ref/netstandard1.1/ja/System.Net.Requests.xml",
  7064. "ref/netstandard1.1/ko/System.Net.Requests.xml",
  7065. "ref/netstandard1.1/ru/System.Net.Requests.xml",
  7066. "ref/netstandard1.1/zh-hans/System.Net.Requests.xml",
  7067. "ref/netstandard1.1/zh-hant/System.Net.Requests.xml",
  7068. "ref/netstandard1.3/System.Net.Requests.dll",
  7069. "ref/netstandard1.3/System.Net.Requests.xml",
  7070. "ref/netstandard1.3/de/System.Net.Requests.xml",
  7071. "ref/netstandard1.3/es/System.Net.Requests.xml",
  7072. "ref/netstandard1.3/fr/System.Net.Requests.xml",
  7073. "ref/netstandard1.3/it/System.Net.Requests.xml",
  7074. "ref/netstandard1.3/ja/System.Net.Requests.xml",
  7075. "ref/netstandard1.3/ko/System.Net.Requests.xml",
  7076. "ref/netstandard1.3/ru/System.Net.Requests.xml",
  7077. "ref/netstandard1.3/zh-hans/System.Net.Requests.xml",
  7078. "ref/netstandard1.3/zh-hant/System.Net.Requests.xml",
  7079. "ref/portable-net45+win8+wp8+wpa81/_._",
  7080. "ref/win8/_._",
  7081. "ref/wp80/_._",
  7082. "ref/wpa81/_._",
  7083. "ref/xamarinios10/_._",
  7084. "ref/xamarinmac20/_._",
  7085. "ref/xamarintvos10/_._",
  7086. "ref/xamarinwatchos10/_._",
  7087. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll",
  7088. "runtimes/win/lib/net46/_._",
  7089. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll",
  7090. "system.net.requests.4.3.0.nupkg.sha512",
  7091. "system.net.requests.nuspec"
  7092. ]
  7093. },
  7094. "System.Net.Sockets/4.3.0": {
  7095. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7096. "type": "package",
  7097. "path": "system.net.sockets/4.3.0",
  7098. "files": [
  7099. ".nupkg.metadata",
  7100. ".signature.p7s",
  7101. "ThirdPartyNotices.txt",
  7102. "dotnet_library_license.txt",
  7103. "lib/MonoAndroid10/_._",
  7104. "lib/MonoTouch10/_._",
  7105. "lib/net46/System.Net.Sockets.dll",
  7106. "lib/xamarinios10/_._",
  7107. "lib/xamarinmac20/_._",
  7108. "lib/xamarintvos10/_._",
  7109. "lib/xamarinwatchos10/_._",
  7110. "ref/MonoAndroid10/_._",
  7111. "ref/MonoTouch10/_._",
  7112. "ref/net46/System.Net.Sockets.dll",
  7113. "ref/netstandard1.3/System.Net.Sockets.dll",
  7114. "ref/netstandard1.3/System.Net.Sockets.xml",
  7115. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7116. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7117. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7118. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7119. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7120. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7121. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7122. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7123. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7124. "ref/xamarinios10/_._",
  7125. "ref/xamarinmac20/_._",
  7126. "ref/xamarintvos10/_._",
  7127. "ref/xamarinwatchos10/_._",
  7128. "system.net.sockets.4.3.0.nupkg.sha512",
  7129. "system.net.sockets.nuspec"
  7130. ]
  7131. },
  7132. "System.Net.WebHeaderCollection/4.3.0": {
  7133. "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
  7134. "type": "package",
  7135. "path": "system.net.webheadercollection/4.3.0",
  7136. "files": [
  7137. ".nupkg.metadata",
  7138. ".signature.p7s",
  7139. "ThirdPartyNotices.txt",
  7140. "dotnet_library_license.txt",
  7141. "lib/MonoAndroid10/_._",
  7142. "lib/MonoTouch10/_._",
  7143. "lib/net46/_._",
  7144. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7145. "lib/xamarinios10/_._",
  7146. "lib/xamarinmac20/_._",
  7147. "lib/xamarintvos10/_._",
  7148. "lib/xamarinwatchos10/_._",
  7149. "ref/MonoAndroid10/_._",
  7150. "ref/MonoTouch10/_._",
  7151. "ref/net46/_._",
  7152. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7153. "ref/netstandard1.3/System.Net.WebHeaderCollection.xml",
  7154. "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml",
  7155. "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml",
  7156. "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml",
  7157. "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml",
  7158. "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml",
  7159. "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml",
  7160. "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml",
  7161. "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml",
  7162. "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml",
  7163. "ref/xamarinios10/_._",
  7164. "ref/xamarinmac20/_._",
  7165. "ref/xamarintvos10/_._",
  7166. "ref/xamarinwatchos10/_._",
  7167. "system.net.webheadercollection.4.3.0.nupkg.sha512",
  7168. "system.net.webheadercollection.nuspec"
  7169. ]
  7170. },
  7171. "System.ObjectModel/4.3.0": {
  7172. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7173. "type": "package",
  7174. "path": "system.objectmodel/4.3.0",
  7175. "files": [
  7176. ".nupkg.metadata",
  7177. ".signature.p7s",
  7178. "ThirdPartyNotices.txt",
  7179. "dotnet_library_license.txt",
  7180. "lib/MonoAndroid10/_._",
  7181. "lib/MonoTouch10/_._",
  7182. "lib/net45/_._",
  7183. "lib/netcore50/System.ObjectModel.dll",
  7184. "lib/netstandard1.3/System.ObjectModel.dll",
  7185. "lib/portable-net45+win8+wp8+wpa81/_._",
  7186. "lib/win8/_._",
  7187. "lib/wp80/_._",
  7188. "lib/wpa81/_._",
  7189. "lib/xamarinios10/_._",
  7190. "lib/xamarinmac20/_._",
  7191. "lib/xamarintvos10/_._",
  7192. "lib/xamarinwatchos10/_._",
  7193. "ref/MonoAndroid10/_._",
  7194. "ref/MonoTouch10/_._",
  7195. "ref/net45/_._",
  7196. "ref/netcore50/System.ObjectModel.dll",
  7197. "ref/netcore50/System.ObjectModel.xml",
  7198. "ref/netcore50/de/System.ObjectModel.xml",
  7199. "ref/netcore50/es/System.ObjectModel.xml",
  7200. "ref/netcore50/fr/System.ObjectModel.xml",
  7201. "ref/netcore50/it/System.ObjectModel.xml",
  7202. "ref/netcore50/ja/System.ObjectModel.xml",
  7203. "ref/netcore50/ko/System.ObjectModel.xml",
  7204. "ref/netcore50/ru/System.ObjectModel.xml",
  7205. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7206. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7207. "ref/netstandard1.0/System.ObjectModel.dll",
  7208. "ref/netstandard1.0/System.ObjectModel.xml",
  7209. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7210. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7211. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7212. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7213. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7214. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7215. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7216. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7217. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7218. "ref/netstandard1.3/System.ObjectModel.dll",
  7219. "ref/netstandard1.3/System.ObjectModel.xml",
  7220. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7221. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7222. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7223. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7224. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7225. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7226. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7227. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7228. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7229. "ref/portable-net45+win8+wp8+wpa81/_._",
  7230. "ref/win8/_._",
  7231. "ref/wp80/_._",
  7232. "ref/wpa81/_._",
  7233. "ref/xamarinios10/_._",
  7234. "ref/xamarinmac20/_._",
  7235. "ref/xamarintvos10/_._",
  7236. "ref/xamarinwatchos10/_._",
  7237. "system.objectmodel.4.3.0.nupkg.sha512",
  7238. "system.objectmodel.nuspec"
  7239. ]
  7240. },
  7241. "System.Private.ServiceModel/4.4.4": {
  7242. "sha512": "tsDkr5hwYwxV2LaB3H5BvCltCX57wv7JzwU5q8IV9vrFdzq/e/nPJAj4U5Ny/FzR4sMTVRprVSwl4mZqfFkt4Q==",
  7243. "type": "package",
  7244. "path": "system.private.servicemodel/4.4.4",
  7245. "files": [
  7246. ".nupkg.metadata",
  7247. ".signature.p7s",
  7248. "LICENSE.TXT",
  7249. "THIRD-PARTY-NOTICES.TXT",
  7250. "ref/netstandard/_._",
  7251. "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll",
  7252. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll",
  7253. "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll",
  7254. "runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll",
  7255. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll",
  7256. "system.private.servicemodel.4.4.4.nupkg.sha512",
  7257. "system.private.servicemodel.nuspec",
  7258. "version.txt"
  7259. ]
  7260. },
  7261. "System.Reflection/4.3.0": {
  7262. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7263. "type": "package",
  7264. "path": "system.reflection/4.3.0",
  7265. "files": [
  7266. ".nupkg.metadata",
  7267. ".signature.p7s",
  7268. "ThirdPartyNotices.txt",
  7269. "dotnet_library_license.txt",
  7270. "lib/MonoAndroid10/_._",
  7271. "lib/MonoTouch10/_._",
  7272. "lib/net45/_._",
  7273. "lib/net462/System.Reflection.dll",
  7274. "lib/portable-net45+win8+wp8+wpa81/_._",
  7275. "lib/win8/_._",
  7276. "lib/wp80/_._",
  7277. "lib/wpa81/_._",
  7278. "lib/xamarinios10/_._",
  7279. "lib/xamarinmac20/_._",
  7280. "lib/xamarintvos10/_._",
  7281. "lib/xamarinwatchos10/_._",
  7282. "ref/MonoAndroid10/_._",
  7283. "ref/MonoTouch10/_._",
  7284. "ref/net45/_._",
  7285. "ref/net462/System.Reflection.dll",
  7286. "ref/netcore50/System.Reflection.dll",
  7287. "ref/netcore50/System.Reflection.xml",
  7288. "ref/netcore50/de/System.Reflection.xml",
  7289. "ref/netcore50/es/System.Reflection.xml",
  7290. "ref/netcore50/fr/System.Reflection.xml",
  7291. "ref/netcore50/it/System.Reflection.xml",
  7292. "ref/netcore50/ja/System.Reflection.xml",
  7293. "ref/netcore50/ko/System.Reflection.xml",
  7294. "ref/netcore50/ru/System.Reflection.xml",
  7295. "ref/netcore50/zh-hans/System.Reflection.xml",
  7296. "ref/netcore50/zh-hant/System.Reflection.xml",
  7297. "ref/netstandard1.0/System.Reflection.dll",
  7298. "ref/netstandard1.0/System.Reflection.xml",
  7299. "ref/netstandard1.0/de/System.Reflection.xml",
  7300. "ref/netstandard1.0/es/System.Reflection.xml",
  7301. "ref/netstandard1.0/fr/System.Reflection.xml",
  7302. "ref/netstandard1.0/it/System.Reflection.xml",
  7303. "ref/netstandard1.0/ja/System.Reflection.xml",
  7304. "ref/netstandard1.0/ko/System.Reflection.xml",
  7305. "ref/netstandard1.0/ru/System.Reflection.xml",
  7306. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7307. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7308. "ref/netstandard1.3/System.Reflection.dll",
  7309. "ref/netstandard1.3/System.Reflection.xml",
  7310. "ref/netstandard1.3/de/System.Reflection.xml",
  7311. "ref/netstandard1.3/es/System.Reflection.xml",
  7312. "ref/netstandard1.3/fr/System.Reflection.xml",
  7313. "ref/netstandard1.3/it/System.Reflection.xml",
  7314. "ref/netstandard1.3/ja/System.Reflection.xml",
  7315. "ref/netstandard1.3/ko/System.Reflection.xml",
  7316. "ref/netstandard1.3/ru/System.Reflection.xml",
  7317. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7318. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7319. "ref/netstandard1.5/System.Reflection.dll",
  7320. "ref/netstandard1.5/System.Reflection.xml",
  7321. "ref/netstandard1.5/de/System.Reflection.xml",
  7322. "ref/netstandard1.5/es/System.Reflection.xml",
  7323. "ref/netstandard1.5/fr/System.Reflection.xml",
  7324. "ref/netstandard1.5/it/System.Reflection.xml",
  7325. "ref/netstandard1.5/ja/System.Reflection.xml",
  7326. "ref/netstandard1.5/ko/System.Reflection.xml",
  7327. "ref/netstandard1.5/ru/System.Reflection.xml",
  7328. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7329. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7330. "ref/portable-net45+win8+wp8+wpa81/_._",
  7331. "ref/win8/_._",
  7332. "ref/wp80/_._",
  7333. "ref/wpa81/_._",
  7334. "ref/xamarinios10/_._",
  7335. "ref/xamarinmac20/_._",
  7336. "ref/xamarintvos10/_._",
  7337. "ref/xamarinwatchos10/_._",
  7338. "system.reflection.4.3.0.nupkg.sha512",
  7339. "system.reflection.nuspec"
  7340. ]
  7341. },
  7342. "System.Reflection.DispatchProxy/4.4.0": {
  7343. "sha512": "xK6JE0mpsBD+T0qu3V6dmVRa06PxAvIIM/zSjouqP7Sk6X+FQj+9XFRz9GmZk9aJGMU1LX6AgTZIlsYZ64QKsw==",
  7344. "type": "package",
  7345. "path": "system.reflection.dispatchproxy/4.4.0",
  7346. "files": [
  7347. ".nupkg.metadata",
  7348. ".signature.p7s",
  7349. "LICENSE.TXT",
  7350. "THIRD-PARTY-NOTICES.TXT",
  7351. "lib/MonoAndroid10/_._",
  7352. "lib/MonoTouch10/_._",
  7353. "lib/net461/System.Reflection.DispatchProxy.dll",
  7354. "lib/netcoreapp2.0/_._",
  7355. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7356. "lib/netstandard2.0/System.Reflection.DispatchProxy.dll",
  7357. "lib/xamarinios10/_._",
  7358. "lib/xamarinmac20/_._",
  7359. "lib/xamarintvos10/_._",
  7360. "lib/xamarinwatchos10/_._",
  7361. "ref/MonoAndroid10/_._",
  7362. "ref/MonoTouch10/_._",
  7363. "ref/netcoreapp2.0/_._",
  7364. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7365. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  7366. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  7367. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  7368. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  7369. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  7370. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  7371. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  7372. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  7373. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  7374. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  7375. "ref/netstandard2.0/System.Reflection.DispatchProxy.dll",
  7376. "ref/netstandard2.0/System.Reflection.DispatchProxy.xml",
  7377. "ref/xamarinios10/_._",
  7378. "ref/xamarinmac20/_._",
  7379. "ref/xamarintvos10/_._",
  7380. "ref/xamarinwatchos10/_._",
  7381. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
  7382. "system.reflection.dispatchproxy.4.4.0.nupkg.sha512",
  7383. "system.reflection.dispatchproxy.nuspec",
  7384. "useSharedDesignerContext.txt",
  7385. "version.txt"
  7386. ]
  7387. },
  7388. "System.Reflection.Emit/4.3.0": {
  7389. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7390. "type": "package",
  7391. "path": "system.reflection.emit/4.3.0",
  7392. "files": [
  7393. ".nupkg.metadata",
  7394. ".signature.p7s",
  7395. "ThirdPartyNotices.txt",
  7396. "dotnet_library_license.txt",
  7397. "lib/MonoAndroid10/_._",
  7398. "lib/monotouch10/_._",
  7399. "lib/net45/_._",
  7400. "lib/netcore50/System.Reflection.Emit.dll",
  7401. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7402. "lib/xamarinios10/_._",
  7403. "lib/xamarinmac20/_._",
  7404. "lib/xamarintvos10/_._",
  7405. "lib/xamarinwatchos10/_._",
  7406. "ref/MonoAndroid10/_._",
  7407. "ref/net45/_._",
  7408. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7409. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7410. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7411. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7412. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7413. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7414. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7415. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7416. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7417. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7418. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7419. "ref/xamarinmac20/_._",
  7420. "system.reflection.emit.4.3.0.nupkg.sha512",
  7421. "system.reflection.emit.nuspec"
  7422. ]
  7423. },
  7424. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7425. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7426. "type": "package",
  7427. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7428. "files": [
  7429. ".nupkg.metadata",
  7430. ".signature.p7s",
  7431. "ThirdPartyNotices.txt",
  7432. "dotnet_library_license.txt",
  7433. "lib/MonoAndroid10/_._",
  7434. "lib/MonoTouch10/_._",
  7435. "lib/net45/_._",
  7436. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7437. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7438. "lib/portable-net45+wp8/_._",
  7439. "lib/wp80/_._",
  7440. "lib/xamarinios10/_._",
  7441. "lib/xamarinmac20/_._",
  7442. "lib/xamarintvos10/_._",
  7443. "lib/xamarinwatchos10/_._",
  7444. "ref/MonoAndroid10/_._",
  7445. "ref/MonoTouch10/_._",
  7446. "ref/net45/_._",
  7447. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7448. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7449. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7450. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7451. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7452. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7453. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7454. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7455. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7456. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7457. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7458. "ref/portable-net45+wp8/_._",
  7459. "ref/wp80/_._",
  7460. "ref/xamarinios10/_._",
  7461. "ref/xamarinmac20/_._",
  7462. "ref/xamarintvos10/_._",
  7463. "ref/xamarinwatchos10/_._",
  7464. "runtimes/aot/lib/netcore50/_._",
  7465. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7466. "system.reflection.emit.ilgeneration.nuspec"
  7467. ]
  7468. },
  7469. "System.Reflection.Emit.Lightweight/4.3.0": {
  7470. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7471. "type": "package",
  7472. "path": "system.reflection.emit.lightweight/4.3.0",
  7473. "files": [
  7474. ".nupkg.metadata",
  7475. ".signature.p7s",
  7476. "ThirdPartyNotices.txt",
  7477. "dotnet_library_license.txt",
  7478. "lib/MonoAndroid10/_._",
  7479. "lib/MonoTouch10/_._",
  7480. "lib/net45/_._",
  7481. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7482. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7483. "lib/portable-net45+wp8/_._",
  7484. "lib/wp80/_._",
  7485. "lib/xamarinios10/_._",
  7486. "lib/xamarinmac20/_._",
  7487. "lib/xamarintvos10/_._",
  7488. "lib/xamarinwatchos10/_._",
  7489. "ref/MonoAndroid10/_._",
  7490. "ref/MonoTouch10/_._",
  7491. "ref/net45/_._",
  7492. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7493. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7494. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7495. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7496. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7497. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7498. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7499. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7500. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7501. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7502. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7503. "ref/portable-net45+wp8/_._",
  7504. "ref/wp80/_._",
  7505. "ref/xamarinios10/_._",
  7506. "ref/xamarinmac20/_._",
  7507. "ref/xamarintvos10/_._",
  7508. "ref/xamarinwatchos10/_._",
  7509. "runtimes/aot/lib/netcore50/_._",
  7510. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7511. "system.reflection.emit.lightweight.nuspec"
  7512. ]
  7513. },
  7514. "System.Reflection.Extensions/4.3.0": {
  7515. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7516. "type": "package",
  7517. "path": "system.reflection.extensions/4.3.0",
  7518. "files": [
  7519. ".nupkg.metadata",
  7520. ".signature.p7s",
  7521. "ThirdPartyNotices.txt",
  7522. "dotnet_library_license.txt",
  7523. "lib/MonoAndroid10/_._",
  7524. "lib/MonoTouch10/_._",
  7525. "lib/net45/_._",
  7526. "lib/portable-net45+win8+wp8+wpa81/_._",
  7527. "lib/win8/_._",
  7528. "lib/wp80/_._",
  7529. "lib/wpa81/_._",
  7530. "lib/xamarinios10/_._",
  7531. "lib/xamarinmac20/_._",
  7532. "lib/xamarintvos10/_._",
  7533. "lib/xamarinwatchos10/_._",
  7534. "ref/MonoAndroid10/_._",
  7535. "ref/MonoTouch10/_._",
  7536. "ref/net45/_._",
  7537. "ref/netcore50/System.Reflection.Extensions.dll",
  7538. "ref/netcore50/System.Reflection.Extensions.xml",
  7539. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7540. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7541. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7542. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7543. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7544. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7545. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7546. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7547. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7548. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7549. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7550. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7551. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7552. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7553. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7554. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7555. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7556. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7557. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7558. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7559. "ref/portable-net45+win8+wp8+wpa81/_._",
  7560. "ref/win8/_._",
  7561. "ref/wp80/_._",
  7562. "ref/wpa81/_._",
  7563. "ref/xamarinios10/_._",
  7564. "ref/xamarinmac20/_._",
  7565. "ref/xamarintvos10/_._",
  7566. "ref/xamarinwatchos10/_._",
  7567. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7568. "system.reflection.extensions.nuspec"
  7569. ]
  7570. },
  7571. "System.Reflection.Primitives/4.3.0": {
  7572. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7573. "type": "package",
  7574. "path": "system.reflection.primitives/4.3.0",
  7575. "files": [
  7576. ".nupkg.metadata",
  7577. ".signature.p7s",
  7578. "ThirdPartyNotices.txt",
  7579. "dotnet_library_license.txt",
  7580. "lib/MonoAndroid10/_._",
  7581. "lib/MonoTouch10/_._",
  7582. "lib/net45/_._",
  7583. "lib/portable-net45+win8+wp8+wpa81/_._",
  7584. "lib/win8/_._",
  7585. "lib/wp80/_._",
  7586. "lib/wpa81/_._",
  7587. "lib/xamarinios10/_._",
  7588. "lib/xamarinmac20/_._",
  7589. "lib/xamarintvos10/_._",
  7590. "lib/xamarinwatchos10/_._",
  7591. "ref/MonoAndroid10/_._",
  7592. "ref/MonoTouch10/_._",
  7593. "ref/net45/_._",
  7594. "ref/netcore50/System.Reflection.Primitives.dll",
  7595. "ref/netcore50/System.Reflection.Primitives.xml",
  7596. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7597. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7598. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7599. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7600. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7601. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7602. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7603. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7604. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7605. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7606. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7607. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7608. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7609. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7610. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7611. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7612. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7613. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7614. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7615. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7616. "ref/portable-net45+win8+wp8+wpa81/_._",
  7617. "ref/win8/_._",
  7618. "ref/wp80/_._",
  7619. "ref/wpa81/_._",
  7620. "ref/xamarinios10/_._",
  7621. "ref/xamarinmac20/_._",
  7622. "ref/xamarintvos10/_._",
  7623. "ref/xamarinwatchos10/_._",
  7624. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7625. "system.reflection.primitives.nuspec"
  7626. ]
  7627. },
  7628. "System.Reflection.TypeExtensions/4.7.0": {
  7629. "sha512": "VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==",
  7630. "type": "package",
  7631. "path": "system.reflection.typeextensions/4.7.0",
  7632. "files": [
  7633. ".nupkg.metadata",
  7634. ".signature.p7s",
  7635. "LICENSE.TXT",
  7636. "THIRD-PARTY-NOTICES.TXT",
  7637. "lib/MonoAndroid10/_._",
  7638. "lib/MonoTouch10/_._",
  7639. "lib/net46/System.Reflection.TypeExtensions.dll",
  7640. "lib/net461/System.Reflection.TypeExtensions.dll",
  7641. "lib/net461/System.Reflection.TypeExtensions.xml",
  7642. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7643. "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll",
  7644. "lib/netcoreapp2.0/_._",
  7645. "lib/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7646. "lib/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7647. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7648. "lib/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7649. "lib/netstandard2.0/System.Reflection.TypeExtensions.dll",
  7650. "lib/netstandard2.0/System.Reflection.TypeExtensions.xml",
  7651. "lib/uap10.0.16299/_._",
  7652. "lib/xamarinios10/_._",
  7653. "lib/xamarinmac20/_._",
  7654. "lib/xamarintvos10/_._",
  7655. "lib/xamarinwatchos10/_._",
  7656. "ref/MonoAndroid10/_._",
  7657. "ref/MonoTouch10/_._",
  7658. "ref/net46/System.Reflection.TypeExtensions.dll",
  7659. "ref/net461/System.Reflection.TypeExtensions.dll",
  7660. "ref/net461/System.Reflection.TypeExtensions.xml",
  7661. "ref/net472/System.Reflection.TypeExtensions.dll",
  7662. "ref/net472/System.Reflection.TypeExtensions.xml",
  7663. "ref/netcoreapp2.0/_._",
  7664. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7665. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7666. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7667. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7668. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7669. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7670. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7671. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7672. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7673. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7674. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7675. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7676. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7677. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7678. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7679. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7680. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7681. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7682. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7683. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7684. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7685. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7686. "ref/netstandard2.0/System.Reflection.TypeExtensions.dll",
  7687. "ref/netstandard2.0/System.Reflection.TypeExtensions.xml",
  7688. "ref/uap10.0.16299/_._",
  7689. "ref/xamarinios10/_._",
  7690. "ref/xamarinmac20/_._",
  7691. "ref/xamarintvos10/_._",
  7692. "ref/xamarinwatchos10/_._",
  7693. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7694. "runtimes/aot/lib/uap10.0.16299/_._",
  7695. "system.reflection.typeextensions.4.7.0.nupkg.sha512",
  7696. "system.reflection.typeextensions.nuspec",
  7697. "useSharedDesignerContext.txt",
  7698. "version.txt"
  7699. ]
  7700. },
  7701. "System.Resources.ResourceManager/4.3.0": {
  7702. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7703. "type": "package",
  7704. "path": "system.resources.resourcemanager/4.3.0",
  7705. "files": [
  7706. ".nupkg.metadata",
  7707. ".signature.p7s",
  7708. "ThirdPartyNotices.txt",
  7709. "dotnet_library_license.txt",
  7710. "lib/MonoAndroid10/_._",
  7711. "lib/MonoTouch10/_._",
  7712. "lib/net45/_._",
  7713. "lib/portable-net45+win8+wp8+wpa81/_._",
  7714. "lib/win8/_._",
  7715. "lib/wp80/_._",
  7716. "lib/wpa81/_._",
  7717. "lib/xamarinios10/_._",
  7718. "lib/xamarinmac20/_._",
  7719. "lib/xamarintvos10/_._",
  7720. "lib/xamarinwatchos10/_._",
  7721. "ref/MonoAndroid10/_._",
  7722. "ref/MonoTouch10/_._",
  7723. "ref/net45/_._",
  7724. "ref/netcore50/System.Resources.ResourceManager.dll",
  7725. "ref/netcore50/System.Resources.ResourceManager.xml",
  7726. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7727. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7728. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7729. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7730. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7731. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7732. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7733. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7734. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7735. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7736. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7737. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7738. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7739. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7740. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7741. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7742. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7743. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7744. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7745. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7746. "ref/portable-net45+win8+wp8+wpa81/_._",
  7747. "ref/win8/_._",
  7748. "ref/wp80/_._",
  7749. "ref/wpa81/_._",
  7750. "ref/xamarinios10/_._",
  7751. "ref/xamarinmac20/_._",
  7752. "ref/xamarintvos10/_._",
  7753. "ref/xamarinwatchos10/_._",
  7754. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7755. "system.resources.resourcemanager.nuspec"
  7756. ]
  7757. },
  7758. "System.Runtime/4.3.0": {
  7759. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7760. "type": "package",
  7761. "path": "system.runtime/4.3.0",
  7762. "files": [
  7763. ".nupkg.metadata",
  7764. ".signature.p7s",
  7765. "ThirdPartyNotices.txt",
  7766. "dotnet_library_license.txt",
  7767. "lib/MonoAndroid10/_._",
  7768. "lib/MonoTouch10/_._",
  7769. "lib/net45/_._",
  7770. "lib/net462/System.Runtime.dll",
  7771. "lib/portable-net45+win8+wp80+wpa81/_._",
  7772. "lib/win8/_._",
  7773. "lib/wp80/_._",
  7774. "lib/wpa81/_._",
  7775. "lib/xamarinios10/_._",
  7776. "lib/xamarinmac20/_._",
  7777. "lib/xamarintvos10/_._",
  7778. "lib/xamarinwatchos10/_._",
  7779. "ref/MonoAndroid10/_._",
  7780. "ref/MonoTouch10/_._",
  7781. "ref/net45/_._",
  7782. "ref/net462/System.Runtime.dll",
  7783. "ref/netcore50/System.Runtime.dll",
  7784. "ref/netcore50/System.Runtime.xml",
  7785. "ref/netcore50/de/System.Runtime.xml",
  7786. "ref/netcore50/es/System.Runtime.xml",
  7787. "ref/netcore50/fr/System.Runtime.xml",
  7788. "ref/netcore50/it/System.Runtime.xml",
  7789. "ref/netcore50/ja/System.Runtime.xml",
  7790. "ref/netcore50/ko/System.Runtime.xml",
  7791. "ref/netcore50/ru/System.Runtime.xml",
  7792. "ref/netcore50/zh-hans/System.Runtime.xml",
  7793. "ref/netcore50/zh-hant/System.Runtime.xml",
  7794. "ref/netstandard1.0/System.Runtime.dll",
  7795. "ref/netstandard1.0/System.Runtime.xml",
  7796. "ref/netstandard1.0/de/System.Runtime.xml",
  7797. "ref/netstandard1.0/es/System.Runtime.xml",
  7798. "ref/netstandard1.0/fr/System.Runtime.xml",
  7799. "ref/netstandard1.0/it/System.Runtime.xml",
  7800. "ref/netstandard1.0/ja/System.Runtime.xml",
  7801. "ref/netstandard1.0/ko/System.Runtime.xml",
  7802. "ref/netstandard1.0/ru/System.Runtime.xml",
  7803. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7804. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7805. "ref/netstandard1.2/System.Runtime.dll",
  7806. "ref/netstandard1.2/System.Runtime.xml",
  7807. "ref/netstandard1.2/de/System.Runtime.xml",
  7808. "ref/netstandard1.2/es/System.Runtime.xml",
  7809. "ref/netstandard1.2/fr/System.Runtime.xml",
  7810. "ref/netstandard1.2/it/System.Runtime.xml",
  7811. "ref/netstandard1.2/ja/System.Runtime.xml",
  7812. "ref/netstandard1.2/ko/System.Runtime.xml",
  7813. "ref/netstandard1.2/ru/System.Runtime.xml",
  7814. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7815. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7816. "ref/netstandard1.3/System.Runtime.dll",
  7817. "ref/netstandard1.3/System.Runtime.xml",
  7818. "ref/netstandard1.3/de/System.Runtime.xml",
  7819. "ref/netstandard1.3/es/System.Runtime.xml",
  7820. "ref/netstandard1.3/fr/System.Runtime.xml",
  7821. "ref/netstandard1.3/it/System.Runtime.xml",
  7822. "ref/netstandard1.3/ja/System.Runtime.xml",
  7823. "ref/netstandard1.3/ko/System.Runtime.xml",
  7824. "ref/netstandard1.3/ru/System.Runtime.xml",
  7825. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7826. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7827. "ref/netstandard1.5/System.Runtime.dll",
  7828. "ref/netstandard1.5/System.Runtime.xml",
  7829. "ref/netstandard1.5/de/System.Runtime.xml",
  7830. "ref/netstandard1.5/es/System.Runtime.xml",
  7831. "ref/netstandard1.5/fr/System.Runtime.xml",
  7832. "ref/netstandard1.5/it/System.Runtime.xml",
  7833. "ref/netstandard1.5/ja/System.Runtime.xml",
  7834. "ref/netstandard1.5/ko/System.Runtime.xml",
  7835. "ref/netstandard1.5/ru/System.Runtime.xml",
  7836. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7837. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7838. "ref/portable-net45+win8+wp80+wpa81/_._",
  7839. "ref/win8/_._",
  7840. "ref/wp80/_._",
  7841. "ref/wpa81/_._",
  7842. "ref/xamarinios10/_._",
  7843. "ref/xamarinmac20/_._",
  7844. "ref/xamarintvos10/_._",
  7845. "ref/xamarinwatchos10/_._",
  7846. "system.runtime.4.3.0.nupkg.sha512",
  7847. "system.runtime.nuspec"
  7848. ]
  7849. },
  7850. "System.Runtime.Extensions/4.3.0": {
  7851. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7852. "type": "package",
  7853. "path": "system.runtime.extensions/4.3.0",
  7854. "files": [
  7855. ".nupkg.metadata",
  7856. ".signature.p7s",
  7857. "ThirdPartyNotices.txt",
  7858. "dotnet_library_license.txt",
  7859. "lib/MonoAndroid10/_._",
  7860. "lib/MonoTouch10/_._",
  7861. "lib/net45/_._",
  7862. "lib/net462/System.Runtime.Extensions.dll",
  7863. "lib/portable-net45+win8+wp8+wpa81/_._",
  7864. "lib/win8/_._",
  7865. "lib/wp80/_._",
  7866. "lib/wpa81/_._",
  7867. "lib/xamarinios10/_._",
  7868. "lib/xamarinmac20/_._",
  7869. "lib/xamarintvos10/_._",
  7870. "lib/xamarinwatchos10/_._",
  7871. "ref/MonoAndroid10/_._",
  7872. "ref/MonoTouch10/_._",
  7873. "ref/net45/_._",
  7874. "ref/net462/System.Runtime.Extensions.dll",
  7875. "ref/netcore50/System.Runtime.Extensions.dll",
  7876. "ref/netcore50/System.Runtime.Extensions.xml",
  7877. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7878. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7879. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7880. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7881. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7882. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7883. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7884. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7885. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7886. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7887. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7888. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7889. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7890. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7891. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7892. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7893. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7894. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7895. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7896. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7897. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7898. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7899. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7900. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7901. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7902. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7903. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7904. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7905. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7906. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7907. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7908. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7909. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7910. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7911. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7912. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7913. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7914. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7915. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7916. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7917. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7918. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7919. "ref/portable-net45+win8+wp8+wpa81/_._",
  7920. "ref/win8/_._",
  7921. "ref/wp80/_._",
  7922. "ref/wpa81/_._",
  7923. "ref/xamarinios10/_._",
  7924. "ref/xamarinmac20/_._",
  7925. "ref/xamarintvos10/_._",
  7926. "ref/xamarinwatchos10/_._",
  7927. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7928. "system.runtime.extensions.nuspec"
  7929. ]
  7930. },
  7931. "System.Runtime.Handles/4.3.0": {
  7932. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7933. "type": "package",
  7934. "path": "system.runtime.handles/4.3.0",
  7935. "files": [
  7936. ".nupkg.metadata",
  7937. ".signature.p7s",
  7938. "ThirdPartyNotices.txt",
  7939. "dotnet_library_license.txt",
  7940. "lib/MonoAndroid10/_._",
  7941. "lib/MonoTouch10/_._",
  7942. "lib/net46/_._",
  7943. "lib/xamarinios10/_._",
  7944. "lib/xamarinmac20/_._",
  7945. "lib/xamarintvos10/_._",
  7946. "lib/xamarinwatchos10/_._",
  7947. "ref/MonoAndroid10/_._",
  7948. "ref/MonoTouch10/_._",
  7949. "ref/net46/_._",
  7950. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7951. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7952. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7953. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7954. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7955. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7956. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7957. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7958. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7959. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7960. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7961. "ref/xamarinios10/_._",
  7962. "ref/xamarinmac20/_._",
  7963. "ref/xamarintvos10/_._",
  7964. "ref/xamarinwatchos10/_._",
  7965. "system.runtime.handles.4.3.0.nupkg.sha512",
  7966. "system.runtime.handles.nuspec"
  7967. ]
  7968. },
  7969. "System.Runtime.InteropServices/4.3.0": {
  7970. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7971. "type": "package",
  7972. "path": "system.runtime.interopservices/4.3.0",
  7973. "files": [
  7974. ".nupkg.metadata",
  7975. ".signature.p7s",
  7976. "ThirdPartyNotices.txt",
  7977. "dotnet_library_license.txt",
  7978. "lib/MonoAndroid10/_._",
  7979. "lib/MonoTouch10/_._",
  7980. "lib/net45/_._",
  7981. "lib/net462/System.Runtime.InteropServices.dll",
  7982. "lib/net463/System.Runtime.InteropServices.dll",
  7983. "lib/portable-net45+win8+wpa81/_._",
  7984. "lib/win8/_._",
  7985. "lib/wpa81/_._",
  7986. "lib/xamarinios10/_._",
  7987. "lib/xamarinmac20/_._",
  7988. "lib/xamarintvos10/_._",
  7989. "lib/xamarinwatchos10/_._",
  7990. "ref/MonoAndroid10/_._",
  7991. "ref/MonoTouch10/_._",
  7992. "ref/net45/_._",
  7993. "ref/net462/System.Runtime.InteropServices.dll",
  7994. "ref/net463/System.Runtime.InteropServices.dll",
  7995. "ref/netcore50/System.Runtime.InteropServices.dll",
  7996. "ref/netcore50/System.Runtime.InteropServices.xml",
  7997. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7998. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7999. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8000. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8001. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8002. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8003. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8004. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8005. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8006. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8007. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8008. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8009. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8010. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8011. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8012. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8013. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8014. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8015. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8016. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8017. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8018. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8019. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8020. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8021. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8022. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8023. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8024. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8025. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8026. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8027. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8028. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8029. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8030. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8031. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8032. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8033. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8034. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8035. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8036. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8037. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8038. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8039. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8040. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8041. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8042. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8043. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8044. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8045. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8046. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8047. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8048. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8049. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8050. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8051. "ref/portable-net45+win8+wpa81/_._",
  8052. "ref/win8/_._",
  8053. "ref/wpa81/_._",
  8054. "ref/xamarinios10/_._",
  8055. "ref/xamarinmac20/_._",
  8056. "ref/xamarintvos10/_._",
  8057. "ref/xamarinwatchos10/_._",
  8058. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8059. "system.runtime.interopservices.nuspec"
  8060. ]
  8061. },
  8062. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8063. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8064. "type": "package",
  8065. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8066. "files": [
  8067. ".nupkg.metadata",
  8068. ".signature.p7s",
  8069. "ThirdPartyNotices.txt",
  8070. "dotnet_library_license.txt",
  8071. "lib/MonoAndroid10/_._",
  8072. "lib/MonoTouch10/_._",
  8073. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8074. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8075. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8076. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8077. "lib/xamarinios10/_._",
  8078. "lib/xamarinmac20/_._",
  8079. "lib/xamarintvos10/_._",
  8080. "lib/xamarinwatchos10/_._",
  8081. "ref/MonoAndroid10/_._",
  8082. "ref/MonoTouch10/_._",
  8083. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8084. "ref/xamarinios10/_._",
  8085. "ref/xamarinmac20/_._",
  8086. "ref/xamarintvos10/_._",
  8087. "ref/xamarinwatchos10/_._",
  8088. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8089. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8090. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8091. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8092. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8093. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8094. "system.runtime.interopservices.runtimeinformation.nuspec"
  8095. ]
  8096. },
  8097. "System.Runtime.Loader/4.3.0": {
  8098. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  8099. "type": "package",
  8100. "path": "system.runtime.loader/4.3.0",
  8101. "files": [
  8102. ".nupkg.metadata",
  8103. ".signature.p7s",
  8104. "ThirdPartyNotices.txt",
  8105. "dotnet_library_license.txt",
  8106. "lib/MonoAndroid10/_._",
  8107. "lib/MonoTouch10/_._",
  8108. "lib/net462/_._",
  8109. "lib/netstandard1.5/System.Runtime.Loader.dll",
  8110. "lib/xamarinios10/_._",
  8111. "lib/xamarinmac20/_._",
  8112. "lib/xamarintvos10/_._",
  8113. "lib/xamarinwatchos10/_._",
  8114. "ref/netstandard1.5/System.Runtime.Loader.dll",
  8115. "ref/netstandard1.5/System.Runtime.Loader.xml",
  8116. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  8117. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  8118. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  8119. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  8120. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  8121. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  8122. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  8123. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8124. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  8125. "system.runtime.loader.4.3.0.nupkg.sha512",
  8126. "system.runtime.loader.nuspec"
  8127. ]
  8128. },
  8129. "System.Runtime.Numerics/4.3.0": {
  8130. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8131. "type": "package",
  8132. "path": "system.runtime.numerics/4.3.0",
  8133. "files": [
  8134. ".nupkg.metadata",
  8135. ".signature.p7s",
  8136. "ThirdPartyNotices.txt",
  8137. "dotnet_library_license.txt",
  8138. "lib/MonoAndroid10/_._",
  8139. "lib/MonoTouch10/_._",
  8140. "lib/net45/_._",
  8141. "lib/netcore50/System.Runtime.Numerics.dll",
  8142. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8143. "lib/portable-net45+win8+wpa81/_._",
  8144. "lib/win8/_._",
  8145. "lib/wpa81/_._",
  8146. "lib/xamarinios10/_._",
  8147. "lib/xamarinmac20/_._",
  8148. "lib/xamarintvos10/_._",
  8149. "lib/xamarinwatchos10/_._",
  8150. "ref/MonoAndroid10/_._",
  8151. "ref/MonoTouch10/_._",
  8152. "ref/net45/_._",
  8153. "ref/netcore50/System.Runtime.Numerics.dll",
  8154. "ref/netcore50/System.Runtime.Numerics.xml",
  8155. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8156. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8157. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8158. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8159. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8160. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8161. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8162. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8163. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8164. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8165. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8166. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8167. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8168. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8169. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8170. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8171. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8172. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8173. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8174. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8175. "ref/portable-net45+win8+wpa81/_._",
  8176. "ref/win8/_._",
  8177. "ref/wpa81/_._",
  8178. "ref/xamarinios10/_._",
  8179. "ref/xamarinmac20/_._",
  8180. "ref/xamarintvos10/_._",
  8181. "ref/xamarinwatchos10/_._",
  8182. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8183. "system.runtime.numerics.nuspec"
  8184. ]
  8185. },
  8186. "System.Runtime.Serialization.Formatters/4.3.0": {
  8187. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  8188. "type": "package",
  8189. "path": "system.runtime.serialization.formatters/4.3.0",
  8190. "files": [
  8191. ".nupkg.metadata",
  8192. ".signature.p7s",
  8193. "ThirdPartyNotices.txt",
  8194. "dotnet_library_license.txt",
  8195. "lib/MonoAndroid10/_._",
  8196. "lib/MonoTouch10/_._",
  8197. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  8198. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  8199. "lib/xamarinios10/_._",
  8200. "lib/xamarinmac20/_._",
  8201. "lib/xamarintvos10/_._",
  8202. "lib/xamarinwatchos10/_._",
  8203. "ref/MonoAndroid10/_._",
  8204. "ref/MonoTouch10/_._",
  8205. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  8206. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  8207. "ref/xamarinios10/_._",
  8208. "ref/xamarinmac20/_._",
  8209. "ref/xamarintvos10/_._",
  8210. "ref/xamarinwatchos10/_._",
  8211. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  8212. "system.runtime.serialization.formatters.nuspec"
  8213. ]
  8214. },
  8215. "System.Runtime.Serialization.Primitives/4.3.0": {
  8216. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  8217. "type": "package",
  8218. "path": "system.runtime.serialization.primitives/4.3.0",
  8219. "files": [
  8220. ".nupkg.metadata",
  8221. ".signature.p7s",
  8222. "ThirdPartyNotices.txt",
  8223. "dotnet_library_license.txt",
  8224. "lib/MonoAndroid10/_._",
  8225. "lib/MonoTouch10/_._",
  8226. "lib/net45/_._",
  8227. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8228. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8229. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8230. "lib/portable-net45+win8+wp8+wpa81/_._",
  8231. "lib/win8/_._",
  8232. "lib/wp80/_._",
  8233. "lib/wpa81/_._",
  8234. "lib/xamarinios10/_._",
  8235. "lib/xamarinmac20/_._",
  8236. "lib/xamarintvos10/_._",
  8237. "lib/xamarinwatchos10/_._",
  8238. "ref/MonoAndroid10/_._",
  8239. "ref/MonoTouch10/_._",
  8240. "ref/net45/_._",
  8241. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8242. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8243. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8244. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8245. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8246. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8247. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8248. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8249. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8250. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8251. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8252. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8253. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8254. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8255. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8256. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8257. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8258. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8259. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8260. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8261. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8262. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8263. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8264. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8265. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8266. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8267. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8268. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8269. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8270. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8271. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8272. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8273. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8274. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8275. "ref/portable-net45+win8+wp8+wpa81/_._",
  8276. "ref/win8/_._",
  8277. "ref/wp80/_._",
  8278. "ref/wpa81/_._",
  8279. "ref/xamarinios10/_._",
  8280. "ref/xamarinmac20/_._",
  8281. "ref/xamarintvos10/_._",
  8282. "ref/xamarinwatchos10/_._",
  8283. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8284. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  8285. "system.runtime.serialization.primitives.nuspec"
  8286. ]
  8287. },
  8288. "System.Security.AccessControl/5.0.0": {
  8289. "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  8290. "type": "package",
  8291. "path": "system.security.accesscontrol/5.0.0",
  8292. "files": [
  8293. ".nupkg.metadata",
  8294. ".signature.p7s",
  8295. "Icon.png",
  8296. "LICENSE.TXT",
  8297. "THIRD-PARTY-NOTICES.TXT",
  8298. "lib/net46/System.Security.AccessControl.dll",
  8299. "lib/net461/System.Security.AccessControl.dll",
  8300. "lib/net461/System.Security.AccessControl.xml",
  8301. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8302. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8303. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8304. "lib/uap10.0.16299/_._",
  8305. "ref/net46/System.Security.AccessControl.dll",
  8306. "ref/net461/System.Security.AccessControl.dll",
  8307. "ref/net461/System.Security.AccessControl.xml",
  8308. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8309. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8310. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8311. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8312. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8313. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8314. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8315. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8316. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8317. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8318. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8319. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8320. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8321. "ref/uap10.0.16299/_._",
  8322. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8323. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8324. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8325. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8326. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8327. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8328. "runtimes/win/lib/uap10.0.16299/_._",
  8329. "system.security.accesscontrol.5.0.0.nupkg.sha512",
  8330. "system.security.accesscontrol.nuspec",
  8331. "useSharedDesignerContext.txt",
  8332. "version.txt"
  8333. ]
  8334. },
  8335. "System.Security.Cryptography.Algorithms/4.3.1": {
  8336. "sha512": "DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==",
  8337. "type": "package",
  8338. "path": "system.security.cryptography.algorithms/4.3.1",
  8339. "files": [
  8340. ".nupkg.metadata",
  8341. ".signature.p7s",
  8342. "ThirdPartyNotices.txt",
  8343. "dotnet_library_license.txt",
  8344. "lib/MonoAndroid10/_._",
  8345. "lib/MonoTouch10/_._",
  8346. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8347. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8348. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8349. "lib/xamarinios10/_._",
  8350. "lib/xamarinmac20/_._",
  8351. "lib/xamarintvos10/_._",
  8352. "lib/xamarinwatchos10/_._",
  8353. "ref/MonoAndroid10/_._",
  8354. "ref/MonoTouch10/_._",
  8355. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8356. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8357. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8358. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8359. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8360. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8361. "ref/xamarinios10/_._",
  8362. "ref/xamarinmac20/_._",
  8363. "ref/xamarintvos10/_._",
  8364. "ref/xamarinwatchos10/_._",
  8365. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8366. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8367. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8368. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8369. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8370. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8371. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8372. "system.security.cryptography.algorithms.4.3.1.nupkg.sha512",
  8373. "system.security.cryptography.algorithms.nuspec"
  8374. ]
  8375. },
  8376. "System.Security.Cryptography.Cng/4.5.0": {
  8377. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8378. "type": "package",
  8379. "path": "system.security.cryptography.cng/4.5.0",
  8380. "files": [
  8381. ".nupkg.metadata",
  8382. ".signature.p7s",
  8383. "LICENSE.TXT",
  8384. "THIRD-PARTY-NOTICES.TXT",
  8385. "lib/MonoAndroid10/_._",
  8386. "lib/MonoTouch10/_._",
  8387. "lib/net46/System.Security.Cryptography.Cng.dll",
  8388. "lib/net461/System.Security.Cryptography.Cng.dll",
  8389. "lib/net462/System.Security.Cryptography.Cng.dll",
  8390. "lib/net47/System.Security.Cryptography.Cng.dll",
  8391. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8392. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8393. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8394. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8395. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8396. "lib/uap10.0.16299/_._",
  8397. "lib/xamarinios10/_._",
  8398. "lib/xamarinmac20/_._",
  8399. "lib/xamarintvos10/_._",
  8400. "lib/xamarinwatchos10/_._",
  8401. "ref/MonoAndroid10/_._",
  8402. "ref/MonoTouch10/_._",
  8403. "ref/net46/System.Security.Cryptography.Cng.dll",
  8404. "ref/net461/System.Security.Cryptography.Cng.dll",
  8405. "ref/net461/System.Security.Cryptography.Cng.xml",
  8406. "ref/net462/System.Security.Cryptography.Cng.dll",
  8407. "ref/net462/System.Security.Cryptography.Cng.xml",
  8408. "ref/net47/System.Security.Cryptography.Cng.dll",
  8409. "ref/net47/System.Security.Cryptography.Cng.xml",
  8410. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8411. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8412. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8413. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8414. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8415. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8416. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8417. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8418. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8419. "ref/uap10.0.16299/_._",
  8420. "ref/xamarinios10/_._",
  8421. "ref/xamarinmac20/_._",
  8422. "ref/xamarintvos10/_._",
  8423. "ref/xamarinwatchos10/_._",
  8424. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8425. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8426. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8427. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8428. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8429. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8430. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8431. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8432. "runtimes/win/lib/uap10.0.16299/_._",
  8433. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8434. "system.security.cryptography.cng.nuspec",
  8435. "useSharedDesignerContext.txt",
  8436. "version.txt"
  8437. ]
  8438. },
  8439. "System.Security.Cryptography.Csp/4.3.0": {
  8440. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8441. "type": "package",
  8442. "path": "system.security.cryptography.csp/4.3.0",
  8443. "files": [
  8444. ".nupkg.metadata",
  8445. ".signature.p7s",
  8446. "ThirdPartyNotices.txt",
  8447. "dotnet_library_license.txt",
  8448. "lib/MonoAndroid10/_._",
  8449. "lib/MonoTouch10/_._",
  8450. "lib/net46/System.Security.Cryptography.Csp.dll",
  8451. "lib/xamarinios10/_._",
  8452. "lib/xamarinmac20/_._",
  8453. "lib/xamarintvos10/_._",
  8454. "lib/xamarinwatchos10/_._",
  8455. "ref/MonoAndroid10/_._",
  8456. "ref/MonoTouch10/_._",
  8457. "ref/net46/System.Security.Cryptography.Csp.dll",
  8458. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8459. "ref/xamarinios10/_._",
  8460. "ref/xamarinmac20/_._",
  8461. "ref/xamarintvos10/_._",
  8462. "ref/xamarinwatchos10/_._",
  8463. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8464. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8465. "runtimes/win/lib/netcore50/_._",
  8466. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8467. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8468. "system.security.cryptography.csp.nuspec"
  8469. ]
  8470. },
  8471. "System.Security.Cryptography.Encoding/4.3.0": {
  8472. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8473. "type": "package",
  8474. "path": "system.security.cryptography.encoding/4.3.0",
  8475. "files": [
  8476. ".nupkg.metadata",
  8477. ".signature.p7s",
  8478. "ThirdPartyNotices.txt",
  8479. "dotnet_library_license.txt",
  8480. "lib/MonoAndroid10/_._",
  8481. "lib/MonoTouch10/_._",
  8482. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8483. "lib/xamarinios10/_._",
  8484. "lib/xamarinmac20/_._",
  8485. "lib/xamarintvos10/_._",
  8486. "lib/xamarinwatchos10/_._",
  8487. "ref/MonoAndroid10/_._",
  8488. "ref/MonoTouch10/_._",
  8489. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8490. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8491. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8492. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8493. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8494. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8495. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8496. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8497. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8498. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8499. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8500. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8501. "ref/xamarinios10/_._",
  8502. "ref/xamarinmac20/_._",
  8503. "ref/xamarintvos10/_._",
  8504. "ref/xamarinwatchos10/_._",
  8505. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8506. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8507. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8508. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8509. "system.security.cryptography.encoding.nuspec"
  8510. ]
  8511. },
  8512. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8513. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8514. "type": "package",
  8515. "path": "system.security.cryptography.openssl/4.3.0",
  8516. "files": [
  8517. ".nupkg.metadata",
  8518. ".signature.p7s",
  8519. "ThirdPartyNotices.txt",
  8520. "dotnet_library_license.txt",
  8521. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8522. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8523. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8524. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8525. "system.security.cryptography.openssl.nuspec"
  8526. ]
  8527. },
  8528. "System.Security.Cryptography.Primitives/4.3.0": {
  8529. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8530. "type": "package",
  8531. "path": "system.security.cryptography.primitives/4.3.0",
  8532. "files": [
  8533. ".nupkg.metadata",
  8534. ".signature.p7s",
  8535. "ThirdPartyNotices.txt",
  8536. "dotnet_library_license.txt",
  8537. "lib/MonoAndroid10/_._",
  8538. "lib/MonoTouch10/_._",
  8539. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8540. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8541. "lib/xamarinios10/_._",
  8542. "lib/xamarinmac20/_._",
  8543. "lib/xamarintvos10/_._",
  8544. "lib/xamarinwatchos10/_._",
  8545. "ref/MonoAndroid10/_._",
  8546. "ref/MonoTouch10/_._",
  8547. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8548. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8549. "ref/xamarinios10/_._",
  8550. "ref/xamarinmac20/_._",
  8551. "ref/xamarintvos10/_._",
  8552. "ref/xamarinwatchos10/_._",
  8553. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8554. "system.security.cryptography.primitives.nuspec"
  8555. ]
  8556. },
  8557. "System.Security.Cryptography.ProtectedData/4.7.0": {
  8558. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  8559. "type": "package",
  8560. "path": "system.security.cryptography.protecteddata/4.7.0",
  8561. "files": [
  8562. ".nupkg.metadata",
  8563. ".signature.p7s",
  8564. "LICENSE.TXT",
  8565. "THIRD-PARTY-NOTICES.TXT",
  8566. "lib/MonoAndroid10/_._",
  8567. "lib/MonoTouch10/_._",
  8568. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8569. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8570. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8571. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8572. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8573. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8574. "lib/xamarinios10/_._",
  8575. "lib/xamarinmac20/_._",
  8576. "lib/xamarintvos10/_._",
  8577. "lib/xamarinwatchos10/_._",
  8578. "ref/MonoAndroid10/_._",
  8579. "ref/MonoTouch10/_._",
  8580. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8581. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8582. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8583. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8584. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8585. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8586. "ref/xamarinios10/_._",
  8587. "ref/xamarinmac20/_._",
  8588. "ref/xamarintvos10/_._",
  8589. "ref/xamarinwatchos10/_._",
  8590. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8591. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8592. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8593. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8594. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8595. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8596. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  8597. "system.security.cryptography.protecteddata.nuspec",
  8598. "useSharedDesignerContext.txt",
  8599. "version.txt"
  8600. ]
  8601. },
  8602. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8603. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8604. "type": "package",
  8605. "path": "system.security.cryptography.x509certificates/4.3.0",
  8606. "files": [
  8607. ".nupkg.metadata",
  8608. ".signature.p7s",
  8609. "ThirdPartyNotices.txt",
  8610. "dotnet_library_license.txt",
  8611. "lib/MonoAndroid10/_._",
  8612. "lib/MonoTouch10/_._",
  8613. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8614. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8615. "lib/xamarinios10/_._",
  8616. "lib/xamarinmac20/_._",
  8617. "lib/xamarintvos10/_._",
  8618. "lib/xamarinwatchos10/_._",
  8619. "ref/MonoAndroid10/_._",
  8620. "ref/MonoTouch10/_._",
  8621. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8622. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8623. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8624. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8625. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8626. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8627. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8628. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8629. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8630. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8631. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8632. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8633. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8634. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8635. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8636. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8637. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8638. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8639. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8640. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8641. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8642. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8643. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8644. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8645. "ref/xamarinios10/_._",
  8646. "ref/xamarinmac20/_._",
  8647. "ref/xamarintvos10/_._",
  8648. "ref/xamarinwatchos10/_._",
  8649. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8650. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8651. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8652. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8653. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8654. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8655. "system.security.cryptography.x509certificates.nuspec"
  8656. ]
  8657. },
  8658. "System.Security.Permissions/4.7.0": {
  8659. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8660. "type": "package",
  8661. "path": "system.security.permissions/4.7.0",
  8662. "files": [
  8663. ".nupkg.metadata",
  8664. ".signature.p7s",
  8665. "LICENSE.TXT",
  8666. "THIRD-PARTY-NOTICES.TXT",
  8667. "lib/net461/System.Security.Permissions.dll",
  8668. "lib/net461/System.Security.Permissions.xml",
  8669. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8670. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8671. "lib/netstandard2.0/System.Security.Permissions.dll",
  8672. "lib/netstandard2.0/System.Security.Permissions.xml",
  8673. "ref/net461/System.Security.Permissions.dll",
  8674. "ref/net461/System.Security.Permissions.xml",
  8675. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8676. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8677. "ref/netstandard2.0/System.Security.Permissions.dll",
  8678. "ref/netstandard2.0/System.Security.Permissions.xml",
  8679. "system.security.permissions.4.7.0.nupkg.sha512",
  8680. "system.security.permissions.nuspec",
  8681. "useSharedDesignerContext.txt",
  8682. "version.txt"
  8683. ]
  8684. },
  8685. "System.Security.Principal.Windows/5.0.0": {
  8686. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  8687. "type": "package",
  8688. "path": "system.security.principal.windows/5.0.0",
  8689. "files": [
  8690. ".nupkg.metadata",
  8691. ".signature.p7s",
  8692. "Icon.png",
  8693. "LICENSE.TXT",
  8694. "THIRD-PARTY-NOTICES.TXT",
  8695. "lib/net46/System.Security.Principal.Windows.dll",
  8696. "lib/net461/System.Security.Principal.Windows.dll",
  8697. "lib/net461/System.Security.Principal.Windows.xml",
  8698. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8699. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8700. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8701. "lib/uap10.0.16299/_._",
  8702. "ref/net46/System.Security.Principal.Windows.dll",
  8703. "ref/net461/System.Security.Principal.Windows.dll",
  8704. "ref/net461/System.Security.Principal.Windows.xml",
  8705. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8706. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8707. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8708. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8709. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8710. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8711. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8712. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8713. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8714. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8715. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8716. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8717. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8718. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8719. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8720. "ref/uap10.0.16299/_._",
  8721. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8722. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8723. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8724. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8725. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8726. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8727. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8728. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8729. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8730. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8731. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8732. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8733. "runtimes/win/lib/uap10.0.16299/_._",
  8734. "system.security.principal.windows.5.0.0.nupkg.sha512",
  8735. "system.security.principal.windows.nuspec",
  8736. "useSharedDesignerContext.txt",
  8737. "version.txt"
  8738. ]
  8739. },
  8740. "System.ServiceModel.Duplex/4.4.4": {
  8741. "sha512": "y/XLnKJ+xnuEUjrgJkXeLKCH4A+EwkX2TdOcTdgsEtxWmWq1+RbCjMd0zIlyNrbGD+nM9BxNg9rLVWVAPq81RA==",
  8742. "type": "package",
  8743. "path": "system.servicemodel.duplex/4.4.4",
  8744. "files": [
  8745. ".nupkg.metadata",
  8746. ".signature.p7s",
  8747. "LICENSE.TXT",
  8748. "THIRD-PARTY-NOTICES.TXT",
  8749. "lib/MonoAndroid10/_._",
  8750. "lib/MonoTouch10/_._",
  8751. "lib/net45/_._",
  8752. "lib/net461/System.ServiceModel.Duplex.dll",
  8753. "lib/netcore50/System.ServiceModel.Duplex.dll",
  8754. "lib/netstandard1.3/System.ServiceModel.Duplex.dll",
  8755. "lib/netstandard2.0/System.ServiceModel.Duplex.dll",
  8756. "lib/portable-net45+win8/_._",
  8757. "lib/win8/_._",
  8758. "lib/xamarinios10/_._",
  8759. "lib/xamarinmac20/_._",
  8760. "lib/xamarintvos10/_._",
  8761. "lib/xamarinwatchos10/_._",
  8762. "ref/MonoAndroid10/_._",
  8763. "ref/MonoTouch10/_._",
  8764. "ref/net45/_._",
  8765. "ref/net461/System.ServiceModel.Duplex.dll",
  8766. "ref/netcore50/System.ServiceModel.Duplex.dll",
  8767. "ref/netstandard1.1/System.ServiceModel.Duplex.dll",
  8768. "ref/netstandard2.0/System.ServiceModel.Duplex.dll",
  8769. "ref/portable-net45+win8/_._",
  8770. "ref/win8/_._",
  8771. "ref/xamarinios10/_._",
  8772. "ref/xamarinmac20/_._",
  8773. "ref/xamarintvos10/_._",
  8774. "ref/xamarinwatchos10/_._",
  8775. "system.servicemodel.duplex.4.4.4.nupkg.sha512",
  8776. "system.servicemodel.duplex.nuspec",
  8777. "version.txt"
  8778. ]
  8779. },
  8780. "System.ServiceModel.Http/4.4.4": {
  8781. "sha512": "f7OWPKqfTaCzjpc6n+/xqNwv7YAHKMiBCPIgwxIXVnf0Vu9+yzfX6tXV9pSSCEFuqJ5tXGLz9MRRExrQEqVUkA==",
  8782. "type": "package",
  8783. "path": "system.servicemodel.http/4.4.4",
  8784. "files": [
  8785. ".nupkg.metadata",
  8786. ".signature.p7s",
  8787. "LICENSE.TXT",
  8788. "THIRD-PARTY-NOTICES.TXT",
  8789. "lib/MonoAndroid10/_._",
  8790. "lib/MonoTouch10/_._",
  8791. "lib/net45/_._",
  8792. "lib/net46/System.ServiceModel.Http.dll",
  8793. "lib/net461/System.ServiceModel.Http.dll",
  8794. "lib/netcore50/System.ServiceModel.Http.dll",
  8795. "lib/netstandard1.3/System.ServiceModel.Http.dll",
  8796. "lib/netstandard2.0/System.ServiceModel.Http.dll",
  8797. "lib/portable-net45+win8+wp8/_._",
  8798. "lib/win8/_._",
  8799. "lib/wp8/_._",
  8800. "lib/xamarinios10/_._",
  8801. "lib/xamarinmac20/_._",
  8802. "lib/xamarintvos10/_._",
  8803. "lib/xamarinwatchos10/_._",
  8804. "ref/MonoAndroid10/_._",
  8805. "ref/MonoTouch10/_._",
  8806. "ref/net45/_._",
  8807. "ref/net46/System.ServiceModel.Http.dll",
  8808. "ref/net461/System.ServiceModel.Http.dll",
  8809. "ref/netcore50/System.ServiceModel.Http.dll",
  8810. "ref/netstandard1.0/System.ServiceModel.Http.dll",
  8811. "ref/netstandard1.1/System.ServiceModel.Http.dll",
  8812. "ref/netstandard1.3/System.ServiceModel.Http.dll",
  8813. "ref/netstandard2.0/System.ServiceModel.Http.dll",
  8814. "ref/portable-net45+win8+wp8/_._",
  8815. "ref/win8/_._",
  8816. "ref/wp8/_._",
  8817. "ref/xamarinios10/_._",
  8818. "ref/xamarinmac20/_._",
  8819. "ref/xamarintvos10/_._",
  8820. "ref/xamarinwatchos10/_._",
  8821. "system.servicemodel.http.4.4.4.nupkg.sha512",
  8822. "system.servicemodel.http.nuspec",
  8823. "version.txt"
  8824. ]
  8825. },
  8826. "System.ServiceModel.NetTcp/4.4.4": {
  8827. "sha512": "TZUwkBUHK+HgPVpypcnCEzenn+Hly3mQ+QDqDtHKyqVBP2Yt+DAMp3NwuW35mTSMRqna5p9hd0U0vVq5azovOQ==",
  8828. "type": "package",
  8829. "path": "system.servicemodel.nettcp/4.4.4",
  8830. "files": [
  8831. ".nupkg.metadata",
  8832. ".signature.p7s",
  8833. "LICENSE.TXT",
  8834. "THIRD-PARTY-NOTICES.TXT",
  8835. "lib/MonoAndroid10/_._",
  8836. "lib/MonoTouch10/_._",
  8837. "lib/net45/_._",
  8838. "lib/net46/System.ServiceModel.NetTcp.dll",
  8839. "lib/net461/System.ServiceModel.NetTcp.dll",
  8840. "lib/netcore50/System.ServiceModel.NetTcp.dll",
  8841. "lib/netstandard1.3/System.ServiceModel.NetTcp.dll",
  8842. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll",
  8843. "lib/portable-net45+win8/_._",
  8844. "lib/win8/_._",
  8845. "lib/xamarinios10/_._",
  8846. "lib/xamarinmac20/_._",
  8847. "lib/xamarintvos10/_._",
  8848. "lib/xamarinwatchos10/_._",
  8849. "ref/MonoAndroid10/_._",
  8850. "ref/MonoTouch10/_._",
  8851. "ref/net45/_._",
  8852. "ref/net46/System.ServiceModel.NetTcp.dll",
  8853. "ref/net461/System.ServiceModel.NetTcp.dll",
  8854. "ref/netcore50/System.ServiceModel.NetTcp.dll",
  8855. "ref/netstandard1.1/System.ServiceModel.NetTcp.dll",
  8856. "ref/netstandard1.3/System.ServiceModel.NetTcp.dll",
  8857. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll",
  8858. "ref/portable-net45+win8/_._",
  8859. "ref/win8/_._",
  8860. "ref/xamarinios10/_._",
  8861. "ref/xamarinmac20/_._",
  8862. "ref/xamarintvos10/_._",
  8863. "ref/xamarinwatchos10/_._",
  8864. "system.servicemodel.nettcp.4.4.4.nupkg.sha512",
  8865. "system.servicemodel.nettcp.nuspec",
  8866. "version.txt"
  8867. ]
  8868. },
  8869. "System.ServiceModel.Primitives/4.4.4": {
  8870. "sha512": "Jv882Qt+tSJ2KnLGGMSGPwBvOxfXRncXW0YV/beBKRQ2c6bDbXVXwqaS2U9h+/cK1uL7C4zc66lnC7qvSBqPHw==",
  8871. "type": "package",
  8872. "path": "system.servicemodel.primitives/4.4.4",
  8873. "files": [
  8874. ".nupkg.metadata",
  8875. ".signature.p7s",
  8876. "LICENSE.TXT",
  8877. "THIRD-PARTY-NOTICES.TXT",
  8878. "lib/MonoAndroid10/_._",
  8879. "lib/MonoTouch10/_._",
  8880. "lib/net45/_._",
  8881. "lib/net46/System.ServiceModel.Primitives.dll",
  8882. "lib/net461/System.ServiceModel.Primitives.dll",
  8883. "lib/netcore50/System.ServiceModel.Primitives.dll",
  8884. "lib/netstandard1.3/System.ServiceModel.Primitives.dll",
  8885. "lib/netstandard2.0/System.ServiceModel.Primitives.dll",
  8886. "lib/netstandard2.0/System.ServiceModel.dll",
  8887. "lib/portable-net45+win8+wp8/_._",
  8888. "lib/win8/_._",
  8889. "lib/wp8/_._",
  8890. "lib/xamarinios10/_._",
  8891. "lib/xamarinmac20/_._",
  8892. "lib/xamarintvos10/_._",
  8893. "lib/xamarinwatchos10/_._",
  8894. "ref/MonoAndroid10/_._",
  8895. "ref/MonoTouch10/_._",
  8896. "ref/net45/_._",
  8897. "ref/net46/System.ServiceModel.Primitives.dll",
  8898. "ref/net461/System.ServiceModel.Primitives.dll",
  8899. "ref/netcore50/System.ServiceModel.Primitives.dll",
  8900. "ref/netstandard1.0/System.ServiceModel.Primitives.dll",
  8901. "ref/netstandard1.1/System.ServiceModel.Primitives.dll",
  8902. "ref/netstandard1.3/System.ServiceModel.Primitives.dll",
  8903. "ref/netstandard2.0/System.ServiceModel.Primitives.dll",
  8904. "ref/netstandard2.0/System.ServiceModel.dll",
  8905. "ref/portable-net45+win8+wp8/_._",
  8906. "ref/win8/_._",
  8907. "ref/wp8/_._",
  8908. "ref/xamarinios10/_._",
  8909. "ref/xamarinmac20/_._",
  8910. "ref/xamarintvos10/_._",
  8911. "ref/xamarinwatchos10/_._",
  8912. "system.servicemodel.primitives.4.4.4.nupkg.sha512",
  8913. "system.servicemodel.primitives.nuspec",
  8914. "version.txt"
  8915. ]
  8916. },
  8917. "System.ServiceModel.Security/4.4.4": {
  8918. "sha512": "8mJj3lUNbBkntouQ3Eg3IF04GxiDrDK2X79+kcfq8V+W7NoYBREgWczaD60ZmW4KKRKnL0q3OnUNJlkzJJfe5w==",
  8919. "type": "package",
  8920. "path": "system.servicemodel.security/4.4.4",
  8921. "files": [
  8922. ".nupkg.metadata",
  8923. ".signature.p7s",
  8924. "LICENSE.TXT",
  8925. "THIRD-PARTY-NOTICES.TXT",
  8926. "lib/MonoAndroid10/_._",
  8927. "lib/MonoTouch10/_._",
  8928. "lib/net45/_._",
  8929. "lib/netcore50/System.ServiceModel.Security.dll",
  8930. "lib/netstandard1.3/System.ServiceModel.Security.dll",
  8931. "lib/netstandard2.0/System.ServiceModel.Security.dll",
  8932. "lib/portable-net45+win8+wp8/_._",
  8933. "lib/win8/_._",
  8934. "lib/wp8/_._",
  8935. "lib/xamarinios10/_._",
  8936. "lib/xamarinmac20/_._",
  8937. "lib/xamarintvos10/_._",
  8938. "lib/xamarinwatchos10/_._",
  8939. "ref/MonoAndroid10/_._",
  8940. "ref/MonoTouch10/_._",
  8941. "ref/net45/_._",
  8942. "ref/netcore50/System.ServiceModel.Security.dll",
  8943. "ref/netstandard1.0/System.ServiceModel.Security.dll",
  8944. "ref/netstandard1.1/System.ServiceModel.Security.dll",
  8945. "ref/netstandard2.0/System.ServiceModel.Security.dll",
  8946. "ref/portable-net45+win8+wp8/_._",
  8947. "ref/win8/_._",
  8948. "ref/wp8/_._",
  8949. "ref/xamarinios10/_._",
  8950. "ref/xamarinmac20/_._",
  8951. "ref/xamarintvos10/_._",
  8952. "ref/xamarinwatchos10/_._",
  8953. "system.servicemodel.security.4.4.4.nupkg.sha512",
  8954. "system.servicemodel.security.nuspec",
  8955. "version.txt"
  8956. ]
  8957. },
  8958. "System.Text.Encoding/4.3.0": {
  8959. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8960. "type": "package",
  8961. "path": "system.text.encoding/4.3.0",
  8962. "files": [
  8963. ".nupkg.metadata",
  8964. ".signature.p7s",
  8965. "ThirdPartyNotices.txt",
  8966. "dotnet_library_license.txt",
  8967. "lib/MonoAndroid10/_._",
  8968. "lib/MonoTouch10/_._",
  8969. "lib/net45/_._",
  8970. "lib/portable-net45+win8+wp8+wpa81/_._",
  8971. "lib/win8/_._",
  8972. "lib/wp80/_._",
  8973. "lib/wpa81/_._",
  8974. "lib/xamarinios10/_._",
  8975. "lib/xamarinmac20/_._",
  8976. "lib/xamarintvos10/_._",
  8977. "lib/xamarinwatchos10/_._",
  8978. "ref/MonoAndroid10/_._",
  8979. "ref/MonoTouch10/_._",
  8980. "ref/net45/_._",
  8981. "ref/netcore50/System.Text.Encoding.dll",
  8982. "ref/netcore50/System.Text.Encoding.xml",
  8983. "ref/netcore50/de/System.Text.Encoding.xml",
  8984. "ref/netcore50/es/System.Text.Encoding.xml",
  8985. "ref/netcore50/fr/System.Text.Encoding.xml",
  8986. "ref/netcore50/it/System.Text.Encoding.xml",
  8987. "ref/netcore50/ja/System.Text.Encoding.xml",
  8988. "ref/netcore50/ko/System.Text.Encoding.xml",
  8989. "ref/netcore50/ru/System.Text.Encoding.xml",
  8990. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8991. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8992. "ref/netstandard1.0/System.Text.Encoding.dll",
  8993. "ref/netstandard1.0/System.Text.Encoding.xml",
  8994. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8995. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8996. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8997. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8998. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8999. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9000. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9001. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9002. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9003. "ref/netstandard1.3/System.Text.Encoding.dll",
  9004. "ref/netstandard1.3/System.Text.Encoding.xml",
  9005. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9006. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9007. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9008. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9009. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9010. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9011. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9012. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9013. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9014. "ref/portable-net45+win8+wp8+wpa81/_._",
  9015. "ref/win8/_._",
  9016. "ref/wp80/_._",
  9017. "ref/wpa81/_._",
  9018. "ref/xamarinios10/_._",
  9019. "ref/xamarinmac20/_._",
  9020. "ref/xamarintvos10/_._",
  9021. "ref/xamarinwatchos10/_._",
  9022. "system.text.encoding.4.3.0.nupkg.sha512",
  9023. "system.text.encoding.nuspec"
  9024. ]
  9025. },
  9026. "System.Text.Encoding.CodePages/4.7.1": {
  9027. "sha512": "i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
  9028. "type": "package",
  9029. "path": "system.text.encoding.codepages/4.7.1",
  9030. "files": [
  9031. ".nupkg.metadata",
  9032. ".signature.p7s",
  9033. "Icon.png",
  9034. "LICENSE.TXT",
  9035. "THIRD-PARTY-NOTICES.TXT",
  9036. "lib/MonoAndroid10/_._",
  9037. "lib/MonoTouch10/_._",
  9038. "lib/net46/System.Text.Encoding.CodePages.dll",
  9039. "lib/net461/System.Text.Encoding.CodePages.dll",
  9040. "lib/net461/System.Text.Encoding.CodePages.xml",
  9041. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9042. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9043. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9044. "lib/xamarinios10/_._",
  9045. "lib/xamarinmac20/_._",
  9046. "lib/xamarintvos10/_._",
  9047. "lib/xamarinwatchos10/_._",
  9048. "ref/MonoAndroid10/_._",
  9049. "ref/MonoTouch10/_._",
  9050. "ref/xamarinios10/_._",
  9051. "ref/xamarinmac20/_._",
  9052. "ref/xamarintvos10/_._",
  9053. "ref/xamarinwatchos10/_._",
  9054. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9055. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9056. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9057. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9058. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9059. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9060. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9061. "system.text.encoding.codepages.4.7.1.nupkg.sha512",
  9062. "system.text.encoding.codepages.nuspec",
  9063. "useSharedDesignerContext.txt",
  9064. "version.txt"
  9065. ]
  9066. },
  9067. "System.Text.Encoding.Extensions/4.3.0": {
  9068. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9069. "type": "package",
  9070. "path": "system.text.encoding.extensions/4.3.0",
  9071. "files": [
  9072. ".nupkg.metadata",
  9073. ".signature.p7s",
  9074. "ThirdPartyNotices.txt",
  9075. "dotnet_library_license.txt",
  9076. "lib/MonoAndroid10/_._",
  9077. "lib/MonoTouch10/_._",
  9078. "lib/net45/_._",
  9079. "lib/portable-net45+win8+wp8+wpa81/_._",
  9080. "lib/win8/_._",
  9081. "lib/wp80/_._",
  9082. "lib/wpa81/_._",
  9083. "lib/xamarinios10/_._",
  9084. "lib/xamarinmac20/_._",
  9085. "lib/xamarintvos10/_._",
  9086. "lib/xamarinwatchos10/_._",
  9087. "ref/MonoAndroid10/_._",
  9088. "ref/MonoTouch10/_._",
  9089. "ref/net45/_._",
  9090. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9091. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9092. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9093. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9094. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9095. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9096. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9097. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9098. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9099. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9100. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9101. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9102. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9103. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9104. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9105. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9106. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9107. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9108. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9109. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9110. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9111. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9112. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9113. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9114. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9115. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9116. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9117. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9118. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9119. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9120. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9121. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9122. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9123. "ref/portable-net45+win8+wp8+wpa81/_._",
  9124. "ref/win8/_._",
  9125. "ref/wp80/_._",
  9126. "ref/wpa81/_._",
  9127. "ref/xamarinios10/_._",
  9128. "ref/xamarinmac20/_._",
  9129. "ref/xamarintvos10/_._",
  9130. "ref/xamarinwatchos10/_._",
  9131. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9132. "system.text.encoding.extensions.nuspec"
  9133. ]
  9134. },
  9135. "System.Text.Encodings.Web/4.5.0": {
  9136. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  9137. "type": "package",
  9138. "path": "system.text.encodings.web/4.5.0",
  9139. "files": [
  9140. ".nupkg.metadata",
  9141. ".signature.p7s",
  9142. "LICENSE.TXT",
  9143. "THIRD-PARTY-NOTICES.TXT",
  9144. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9145. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  9146. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9147. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9148. "system.text.encodings.web.4.5.0.nupkg.sha512",
  9149. "system.text.encodings.web.nuspec",
  9150. "useSharedDesignerContext.txt",
  9151. "version.txt"
  9152. ]
  9153. },
  9154. "System.Text.RegularExpressions/4.3.0": {
  9155. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9156. "type": "package",
  9157. "path": "system.text.regularexpressions/4.3.0",
  9158. "files": [
  9159. ".nupkg.metadata",
  9160. ".signature.p7s",
  9161. "ThirdPartyNotices.txt",
  9162. "dotnet_library_license.txt",
  9163. "lib/MonoAndroid10/_._",
  9164. "lib/MonoTouch10/_._",
  9165. "lib/net45/_._",
  9166. "lib/net463/System.Text.RegularExpressions.dll",
  9167. "lib/netcore50/System.Text.RegularExpressions.dll",
  9168. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9169. "lib/portable-net45+win8+wp8+wpa81/_._",
  9170. "lib/win8/_._",
  9171. "lib/wp80/_._",
  9172. "lib/wpa81/_._",
  9173. "lib/xamarinios10/_._",
  9174. "lib/xamarinmac20/_._",
  9175. "lib/xamarintvos10/_._",
  9176. "lib/xamarinwatchos10/_._",
  9177. "ref/MonoAndroid10/_._",
  9178. "ref/MonoTouch10/_._",
  9179. "ref/net45/_._",
  9180. "ref/net463/System.Text.RegularExpressions.dll",
  9181. "ref/netcore50/System.Text.RegularExpressions.dll",
  9182. "ref/netcore50/System.Text.RegularExpressions.xml",
  9183. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9184. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9185. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9186. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9187. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9188. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9189. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9190. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9191. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9192. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9193. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9194. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9195. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9196. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9197. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9198. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9199. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9200. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9201. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9202. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9203. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9204. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9205. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9206. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9207. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9208. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9209. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9210. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9211. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9212. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9213. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9214. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9215. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9216. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9217. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9218. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9219. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9220. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9221. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9222. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9223. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9224. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9225. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9226. "ref/portable-net45+win8+wp8+wpa81/_._",
  9227. "ref/win8/_._",
  9228. "ref/wp80/_._",
  9229. "ref/wpa81/_._",
  9230. "ref/xamarinios10/_._",
  9231. "ref/xamarinmac20/_._",
  9232. "ref/xamarintvos10/_._",
  9233. "ref/xamarinwatchos10/_._",
  9234. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9235. "system.text.regularexpressions.nuspec"
  9236. ]
  9237. },
  9238. "System.Threading/4.3.0": {
  9239. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9240. "type": "package",
  9241. "path": "system.threading/4.3.0",
  9242. "files": [
  9243. ".nupkg.metadata",
  9244. ".signature.p7s",
  9245. "ThirdPartyNotices.txt",
  9246. "dotnet_library_license.txt",
  9247. "lib/MonoAndroid10/_._",
  9248. "lib/MonoTouch10/_._",
  9249. "lib/net45/_._",
  9250. "lib/netcore50/System.Threading.dll",
  9251. "lib/netstandard1.3/System.Threading.dll",
  9252. "lib/portable-net45+win8+wp8+wpa81/_._",
  9253. "lib/win8/_._",
  9254. "lib/wp80/_._",
  9255. "lib/wpa81/_._",
  9256. "lib/xamarinios10/_._",
  9257. "lib/xamarinmac20/_._",
  9258. "lib/xamarintvos10/_._",
  9259. "lib/xamarinwatchos10/_._",
  9260. "ref/MonoAndroid10/_._",
  9261. "ref/MonoTouch10/_._",
  9262. "ref/net45/_._",
  9263. "ref/netcore50/System.Threading.dll",
  9264. "ref/netcore50/System.Threading.xml",
  9265. "ref/netcore50/de/System.Threading.xml",
  9266. "ref/netcore50/es/System.Threading.xml",
  9267. "ref/netcore50/fr/System.Threading.xml",
  9268. "ref/netcore50/it/System.Threading.xml",
  9269. "ref/netcore50/ja/System.Threading.xml",
  9270. "ref/netcore50/ko/System.Threading.xml",
  9271. "ref/netcore50/ru/System.Threading.xml",
  9272. "ref/netcore50/zh-hans/System.Threading.xml",
  9273. "ref/netcore50/zh-hant/System.Threading.xml",
  9274. "ref/netstandard1.0/System.Threading.dll",
  9275. "ref/netstandard1.0/System.Threading.xml",
  9276. "ref/netstandard1.0/de/System.Threading.xml",
  9277. "ref/netstandard1.0/es/System.Threading.xml",
  9278. "ref/netstandard1.0/fr/System.Threading.xml",
  9279. "ref/netstandard1.0/it/System.Threading.xml",
  9280. "ref/netstandard1.0/ja/System.Threading.xml",
  9281. "ref/netstandard1.0/ko/System.Threading.xml",
  9282. "ref/netstandard1.0/ru/System.Threading.xml",
  9283. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9284. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9285. "ref/netstandard1.3/System.Threading.dll",
  9286. "ref/netstandard1.3/System.Threading.xml",
  9287. "ref/netstandard1.3/de/System.Threading.xml",
  9288. "ref/netstandard1.3/es/System.Threading.xml",
  9289. "ref/netstandard1.3/fr/System.Threading.xml",
  9290. "ref/netstandard1.3/it/System.Threading.xml",
  9291. "ref/netstandard1.3/ja/System.Threading.xml",
  9292. "ref/netstandard1.3/ko/System.Threading.xml",
  9293. "ref/netstandard1.3/ru/System.Threading.xml",
  9294. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9295. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9296. "ref/portable-net45+win8+wp8+wpa81/_._",
  9297. "ref/win8/_._",
  9298. "ref/wp80/_._",
  9299. "ref/wpa81/_._",
  9300. "ref/xamarinios10/_._",
  9301. "ref/xamarinmac20/_._",
  9302. "ref/xamarintvos10/_._",
  9303. "ref/xamarinwatchos10/_._",
  9304. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9305. "system.threading.4.3.0.nupkg.sha512",
  9306. "system.threading.nuspec"
  9307. ]
  9308. },
  9309. "System.Threading.Tasks/4.3.0": {
  9310. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9311. "type": "package",
  9312. "path": "system.threading.tasks/4.3.0",
  9313. "files": [
  9314. ".nupkg.metadata",
  9315. ".signature.p7s",
  9316. "ThirdPartyNotices.txt",
  9317. "dotnet_library_license.txt",
  9318. "lib/MonoAndroid10/_._",
  9319. "lib/MonoTouch10/_._",
  9320. "lib/net45/_._",
  9321. "lib/portable-net45+win8+wp8+wpa81/_._",
  9322. "lib/win8/_._",
  9323. "lib/wp80/_._",
  9324. "lib/wpa81/_._",
  9325. "lib/xamarinios10/_._",
  9326. "lib/xamarinmac20/_._",
  9327. "lib/xamarintvos10/_._",
  9328. "lib/xamarinwatchos10/_._",
  9329. "ref/MonoAndroid10/_._",
  9330. "ref/MonoTouch10/_._",
  9331. "ref/net45/_._",
  9332. "ref/netcore50/System.Threading.Tasks.dll",
  9333. "ref/netcore50/System.Threading.Tasks.xml",
  9334. "ref/netcore50/de/System.Threading.Tasks.xml",
  9335. "ref/netcore50/es/System.Threading.Tasks.xml",
  9336. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9337. "ref/netcore50/it/System.Threading.Tasks.xml",
  9338. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9339. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9340. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9341. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9342. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9343. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9344. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9345. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9346. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9347. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9348. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9349. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9350. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9351. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9352. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9353. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9354. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9355. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9356. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9357. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9358. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9359. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9360. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9361. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9362. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9363. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9364. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9365. "ref/portable-net45+win8+wp8+wpa81/_._",
  9366. "ref/win8/_._",
  9367. "ref/wp80/_._",
  9368. "ref/wpa81/_._",
  9369. "ref/xamarinios10/_._",
  9370. "ref/xamarinmac20/_._",
  9371. "ref/xamarintvos10/_._",
  9372. "ref/xamarinwatchos10/_._",
  9373. "system.threading.tasks.4.3.0.nupkg.sha512",
  9374. "system.threading.tasks.nuspec"
  9375. ]
  9376. },
  9377. "System.Threading.Tasks.Extensions/4.3.0": {
  9378. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  9379. "type": "package",
  9380. "path": "system.threading.tasks.extensions/4.3.0",
  9381. "files": [
  9382. ".nupkg.metadata",
  9383. ".signature.p7s",
  9384. "ThirdPartyNotices.txt",
  9385. "dotnet_library_license.txt",
  9386. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9387. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9388. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9389. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9390. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  9391. "system.threading.tasks.extensions.nuspec"
  9392. ]
  9393. },
  9394. "System.Threading.Timer/4.3.0": {
  9395. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9396. "type": "package",
  9397. "path": "system.threading.timer/4.3.0",
  9398. "files": [
  9399. ".nupkg.metadata",
  9400. ".signature.p7s",
  9401. "ThirdPartyNotices.txt",
  9402. "dotnet_library_license.txt",
  9403. "lib/MonoAndroid10/_._",
  9404. "lib/MonoTouch10/_._",
  9405. "lib/net451/_._",
  9406. "lib/portable-net451+win81+wpa81/_._",
  9407. "lib/win81/_._",
  9408. "lib/wpa81/_._",
  9409. "lib/xamarinios10/_._",
  9410. "lib/xamarinmac20/_._",
  9411. "lib/xamarintvos10/_._",
  9412. "lib/xamarinwatchos10/_._",
  9413. "ref/MonoAndroid10/_._",
  9414. "ref/MonoTouch10/_._",
  9415. "ref/net451/_._",
  9416. "ref/netcore50/System.Threading.Timer.dll",
  9417. "ref/netcore50/System.Threading.Timer.xml",
  9418. "ref/netcore50/de/System.Threading.Timer.xml",
  9419. "ref/netcore50/es/System.Threading.Timer.xml",
  9420. "ref/netcore50/fr/System.Threading.Timer.xml",
  9421. "ref/netcore50/it/System.Threading.Timer.xml",
  9422. "ref/netcore50/ja/System.Threading.Timer.xml",
  9423. "ref/netcore50/ko/System.Threading.Timer.xml",
  9424. "ref/netcore50/ru/System.Threading.Timer.xml",
  9425. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9426. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9427. "ref/netstandard1.2/System.Threading.Timer.dll",
  9428. "ref/netstandard1.2/System.Threading.Timer.xml",
  9429. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9430. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9431. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9432. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9433. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9434. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9435. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9436. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9437. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9438. "ref/portable-net451+win81+wpa81/_._",
  9439. "ref/win81/_._",
  9440. "ref/wpa81/_._",
  9441. "ref/xamarinios10/_._",
  9442. "ref/xamarinmac20/_._",
  9443. "ref/xamarintvos10/_._",
  9444. "ref/xamarinwatchos10/_._",
  9445. "system.threading.timer.4.3.0.nupkg.sha512",
  9446. "system.threading.timer.nuspec"
  9447. ]
  9448. },
  9449. "System.Windows.Extensions/4.7.0": {
  9450. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9451. "type": "package",
  9452. "path": "system.windows.extensions/4.7.0",
  9453. "files": [
  9454. ".nupkg.metadata",
  9455. ".signature.p7s",
  9456. "LICENSE.TXT",
  9457. "THIRD-PARTY-NOTICES.TXT",
  9458. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9459. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9460. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9461. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9462. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9463. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9464. "system.windows.extensions.4.7.0.nupkg.sha512",
  9465. "system.windows.extensions.nuspec",
  9466. "useSharedDesignerContext.txt",
  9467. "version.txt"
  9468. ]
  9469. },
  9470. "System.Xml.ReaderWriter/4.3.1": {
  9471. "sha512": "fVU1Xp9TEOHv1neQDtcJ4hNfYJ1pjfXzKY3VFeiRZK6HTV4Af2Ihyvq1FkPLrL1hzZhXv7NTmowQnL5DgTzIKA==",
  9472. "type": "package",
  9473. "path": "system.xml.readerwriter/4.3.1",
  9474. "files": [
  9475. ".nupkg.metadata",
  9476. ".signature.p7s",
  9477. "ThirdPartyNotices.txt",
  9478. "dotnet_library_license.txt",
  9479. "lib/MonoAndroid10/_._",
  9480. "lib/MonoTouch10/_._",
  9481. "lib/net45/_._",
  9482. "lib/net46/System.Xml.ReaderWriter.dll",
  9483. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9484. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9485. "lib/portable-net45+win8+wp8+wpa81/_._",
  9486. "lib/win8/_._",
  9487. "lib/wp80/_._",
  9488. "lib/wpa81/_._",
  9489. "lib/xamarinios10/_._",
  9490. "lib/xamarinmac20/_._",
  9491. "lib/xamarintvos10/_._",
  9492. "lib/xamarinwatchos10/_._",
  9493. "ref/MonoAndroid10/_._",
  9494. "ref/MonoTouch10/_._",
  9495. "ref/net45/_._",
  9496. "ref/net46/System.Xml.ReaderWriter.dll",
  9497. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9498. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9499. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9500. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9501. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9502. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9503. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9504. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9505. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9506. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9507. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9508. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9509. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9510. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9511. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9512. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9513. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9514. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9515. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9516. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9517. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9518. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9519. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9520. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9521. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9522. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9523. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9524. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9525. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9526. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9527. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9528. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9529. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9530. "ref/portable-net45+win8+wp8+wpa81/_._",
  9531. "ref/win8/_._",
  9532. "ref/wp80/_._",
  9533. "ref/wpa81/_._",
  9534. "ref/xamarinios10/_._",
  9535. "ref/xamarinmac20/_._",
  9536. "ref/xamarintvos10/_._",
  9537. "ref/xamarinwatchos10/_._",
  9538. "system.xml.readerwriter.4.3.1.nupkg.sha512",
  9539. "system.xml.readerwriter.nuspec"
  9540. ]
  9541. },
  9542. "System.Xml.XDocument/4.3.0": {
  9543. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9544. "type": "package",
  9545. "path": "system.xml.xdocument/4.3.0",
  9546. "files": [
  9547. ".nupkg.metadata",
  9548. ".signature.p7s",
  9549. "ThirdPartyNotices.txt",
  9550. "dotnet_library_license.txt",
  9551. "lib/MonoAndroid10/_._",
  9552. "lib/MonoTouch10/_._",
  9553. "lib/net45/_._",
  9554. "lib/netcore50/System.Xml.XDocument.dll",
  9555. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9556. "lib/portable-net45+win8+wp8+wpa81/_._",
  9557. "lib/win8/_._",
  9558. "lib/wp80/_._",
  9559. "lib/wpa81/_._",
  9560. "lib/xamarinios10/_._",
  9561. "lib/xamarinmac20/_._",
  9562. "lib/xamarintvos10/_._",
  9563. "lib/xamarinwatchos10/_._",
  9564. "ref/MonoAndroid10/_._",
  9565. "ref/MonoTouch10/_._",
  9566. "ref/net45/_._",
  9567. "ref/netcore50/System.Xml.XDocument.dll",
  9568. "ref/netcore50/System.Xml.XDocument.xml",
  9569. "ref/netcore50/de/System.Xml.XDocument.xml",
  9570. "ref/netcore50/es/System.Xml.XDocument.xml",
  9571. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9572. "ref/netcore50/it/System.Xml.XDocument.xml",
  9573. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9574. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9575. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9576. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9577. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9578. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9579. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9580. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9581. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9582. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9583. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9584. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9585. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9586. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9587. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9588. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9589. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9590. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9591. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9592. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9593. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9594. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9595. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9596. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9597. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9598. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9599. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9600. "ref/portable-net45+win8+wp8+wpa81/_._",
  9601. "ref/win8/_._",
  9602. "ref/wp80/_._",
  9603. "ref/wpa81/_._",
  9604. "ref/xamarinios10/_._",
  9605. "ref/xamarinmac20/_._",
  9606. "ref/xamarintvos10/_._",
  9607. "ref/xamarinwatchos10/_._",
  9608. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9609. "system.xml.xdocument.nuspec"
  9610. ]
  9611. },
  9612. "System.Xml.XmlDocument/4.3.0": {
  9613. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  9614. "type": "package",
  9615. "path": "system.xml.xmldocument/4.3.0",
  9616. "files": [
  9617. ".nupkg.metadata",
  9618. ".signature.p7s",
  9619. "ThirdPartyNotices.txt",
  9620. "dotnet_library_license.txt",
  9621. "lib/MonoAndroid10/_._",
  9622. "lib/MonoTouch10/_._",
  9623. "lib/net46/System.Xml.XmlDocument.dll",
  9624. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9625. "lib/xamarinios10/_._",
  9626. "lib/xamarinmac20/_._",
  9627. "lib/xamarintvos10/_._",
  9628. "lib/xamarinwatchos10/_._",
  9629. "ref/MonoAndroid10/_._",
  9630. "ref/MonoTouch10/_._",
  9631. "ref/net46/System.Xml.XmlDocument.dll",
  9632. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9633. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9634. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9635. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9636. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9637. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9638. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9639. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9640. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9641. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9642. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9643. "ref/xamarinios10/_._",
  9644. "ref/xamarinmac20/_._",
  9645. "ref/xamarintvos10/_._",
  9646. "ref/xamarinwatchos10/_._",
  9647. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  9648. "system.xml.xmldocument.nuspec"
  9649. ]
  9650. },
  9651. "WebAPIBase.NetCore.BusinessCore/1.0.0": {
  9652. "type": "project",
  9653. "path": "../WebAPIBase.NetCore.BusinessCore/WebAPIBase.NetCore.BusinessCore.csproj",
  9654. "msbuildProject": "../WebAPIBase.NetCore.BusinessCore/WebAPIBase.NetCore.BusinessCore.csproj"
  9655. },
  9656. "WebAPIBase.NetCore.Enties/1.0.0": {
  9657. "type": "project",
  9658. "path": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj",
  9659. "msbuildProject": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj"
  9660. },
  9661. "WebAPIBase.Utils/1.0.0": {
  9662. "type": "project",
  9663. "path": "../Utils/WebAPIBase.Utils.csproj",
  9664. "msbuildProject": "../Utils/WebAPIBase.Utils.csproj"
  9665. }
  9666. },
  9667. "projectFileDependencyGroups": {
  9668. ".NETCoreApp,Version=v3.1": [
  9669. "MSTest.TestAdapter >= 2.1.0",
  9670. "MSTest.TestFramework >= 2.1.0",
  9671. "Microsoft.NET.Test.Sdk >= 16.5.0",
  9672. "WebAPIBase.NetCore.BusinessCore >= 1.0.0",
  9673. "coverlet.collector >= 1.2.0"
  9674. ]
  9675. },
  9676. "packageFolders": {
  9677. "C:\\Users\\1\\.nuget\\packages\\": {},
  9678. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9679. },
  9680. "project": {
  9681. "version": "1.0.0",
  9682. "restore": {
  9683. "projectUniqueName": "D:\\路涛科技\\源代码\\dccloud 工程云\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\WebAPIBase.NetCore.BusinessCoreTests.csproj",
  9684. "projectName": "WebAPIBase.NetCore.BusinessCoreTests",
  9685. "projectPath": "D:\\路涛科技\\源代码\\dccloud 工程云\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\WebAPIBase.NetCore.BusinessCoreTests.csproj",
  9686. "packagesPath": "C:\\Users\\1\\.nuget\\packages\\",
  9687. "outputPath": "D:\\路涛科技\\源代码\\dccloud 工程云\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\obj\\",
  9688. "projectStyle": "PackageReference",
  9689. "fallbackFolders": [
  9690. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9691. ],
  9692. "configFilePaths": [
  9693. "C:\\Users\\1\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9694. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9695. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9696. ],
  9697. "originalTargetFrameworks": [
  9698. "netcoreapp3.1"
  9699. ],
  9700. "sources": {
  9701. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9702. "https://api.nuget.org/v3/index.json": {}
  9703. },
  9704. "frameworks": {
  9705. "netcoreapp3.1": {
  9706. "targetAlias": "netcoreapp3.1",
  9707. "projectReferences": {
  9708. "D:\\路涛科技\\源代码\\dccloud 工程云\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj": {
  9709. "projectPath": "D:\\路涛科技\\源代码\\dccloud 工程云\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj"
  9710. }
  9711. }
  9712. }
  9713. },
  9714. "warningProperties": {
  9715. "warnAsError": [
  9716. "NU1605"
  9717. ]
  9718. }
  9719. },
  9720. "frameworks": {
  9721. "netcoreapp3.1": {
  9722. "targetAlias": "netcoreapp3.1",
  9723. "dependencies": {
  9724. "MSTest.TestAdapter": {
  9725. "target": "Package",
  9726. "version": "[2.1.0, )"
  9727. },
  9728. "MSTest.TestFramework": {
  9729. "target": "Package",
  9730. "version": "[2.1.0, )"
  9731. },
  9732. "Microsoft.NET.Test.Sdk": {
  9733. "target": "Package",
  9734. "version": "[16.5.0, )"
  9735. },
  9736. "coverlet.collector": {
  9737. "target": "Package",
  9738. "version": "[1.2.0, )"
  9739. }
  9740. },
  9741. "imports": [
  9742. "net461",
  9743. "net462",
  9744. "net47",
  9745. "net471",
  9746. "net472",
  9747. "net48"
  9748. ],
  9749. "assetTargetFallback": true,
  9750. "warn": true,
  9751. "frameworkReferences": {
  9752. "Microsoft.NETCore.App": {
  9753. "privateAssets": "all"
  9754. }
  9755. },
  9756. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
  9757. }
  9758. }
  9759. }
  9760. }